/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333 !important;
    overflow-x: hidden;
    background-color: #ffffff !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333 !important;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666 !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #F7931E) !important;
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6) !important;
    background: linear-gradient(45deg, #E63946, #FF6B35) !important;
}

.btn-secondary {
    background: transparent !important;
    color: #FF6B35 !important;
    border: 2px solid #FF6B35;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #FF6B35, #F7931E) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333 !important;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.nav-brand .logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand .logo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.nav-brand h1 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-list a:hover {
    color: #FF6B35;
    transform: translateY(-2px);
    font-weight: 600;
}

.nav-list a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

.nav-list a.active {
    color: #FF6B35;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.05);
}

.nav-list a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-list a:not(.active):hover::before {
    box-shadow: inset 0 0 0 1px rgba(255, 107, 53, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 107, 53, 0.08);
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #333, #555);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 2px;
}

.header.scrolled .nav-brand h1 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header.scrolled .nav-list a {
    font-weight: 500;
}

.header.scrolled .nav-list a.active {
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-brand .logo {
        height: 40px;
        width: 40px;
    }
    
    .nav-brand h1 {
        font-size: 1.1rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-list a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.6s ease-out;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }
}

.nav-brand .logo {
    animation: logoGlow 3s ease-in-out infinite;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: url('../assetsimages/background_poly.png') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 25%, rgba(255, 210, 63, 0.1) 50%, rgba(255, 107, 53, 0.1) 75%, rgba(230, 57, 70, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 640px;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hero-text h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
    max-width: 45ch;
}

.highlight {
    background: linear-gradient(45deg, #FFD23F, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: none;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #FFD23F, #F7931E);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-text p {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    font-weight: 400;
    max-width: 65ch;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #F7931E) !important;
    color: white !important;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #f0f0f0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    font-weight: 500;
    line-height: 1.5;
}

.feature-icon {
    color: #FF6B35;
    font-weight: bold;
    font-size: 18px;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4), 0 0 0 3px rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 15px;
}

.slider-image.active {
    opacity: 1;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1rem;
    z-index: 10;
    border-radius: 0 0 15px 15px;
}

.slider-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: block;
    text-align: center;
}

.video-content {
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonial-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    max-width: 200px;
    position: relative;
}

.testimonial-avatar {
    width: 35px;
    height: 35px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.testimonial-count {
    font-weight: 700;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.2;
}

.testimonial-rating {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f8f8f8 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    overflow: hidden;
}

.testimonial-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    max-width: 200px;
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: 10;
}

.testimonial-avatar {
    width: 35px;
    height: 35px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.testimonial-count {
    font-weight: 700;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.2;
}

.testimonial-rating {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333 !important;
}

.about-features li i {
    color: #FF6B35 !important;
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.about-image {
    width: 100%;
    height: 400px;
    background-color: #ddd !important;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff !important;
    position: relative;
    overflow: hidden;
}

/* Elementos de fundo que remetem a ondas/cachos - MAIS VISÍVEIS */
.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.12) 50%, rgba(255, 210, 63, 0.08) 70%, transparent 85%);
    border-radius: 50% 40% 60% 30%;
    animation: waveFloat 8s ease-in-out infinite;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.12) 0%, rgba(255, 107, 53, 0.10) 50%, rgba(247, 147, 30, 0.08) 70%, transparent 85%);
    border-radius: 60% 30% 50% 40%;
    animation: waveFloat 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* Ondas adicionais - MAIS VISÍVEIS */
.services .wave-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.12), rgba(247, 147, 30, 0.08), rgba(255, 210, 63, 0.06));
    border-radius: 50% 40% 60% 30%;
    animation: curlFloat 12s ease-in-out infinite;
    z-index: 1;
    box-shadow: inset 0 0 50px rgba(255, 107, 53, 0.1);
}

.services .wave-1 {
    top: 15%;
    left: 8%;
    width: 280px;
    height: 200px;
    animation-delay: -2s;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.14) 0%, rgba(247, 147, 30, 0.10) 40%, transparent 70%);
}

.services .wave-2 {
    top: 55%;
    right: 12%;
    width: 320px;
    height: 220px;
    animation-delay: -4s;
    border-radius: 40% 60% 30% 50%;
    background: radial-gradient(ellipse, rgba(255, 210, 63, 0.12) 0%, rgba(255, 107, 53, 0.08) 40%, transparent 70%);
}

.services .wave-3 {
    top: 8%;
    right: 25%;
    width: 240px;
    height: 160px;
    animation-delay: -6s;
    border-radius: 30% 50% 40% 60%;
    background: radial-gradient(ellipse, rgba(247, 147, 30, 0.13) 0%, rgba(255, 210, 63, 0.09) 40%, transparent 70%);
}

/* Elemento adicional no centro para mais movimento */
.services .wave-4 {
    top: 35%;
    left: 45%;
    width: 200px;
    height: 140px;
    animation-delay: -8s;
    border-radius: 60% 40% 30% 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.10), rgba(247, 147, 30, 0.06));
}

/* Animações que remetem ao movimento dos cachos - MAIS DINÂMICAS */
@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 50% 40% 60% 30%;
        opacity: 1;
    }
    25% {
        transform: translateY(-25px) rotate(8deg) scale(1.08);
        border-radius: 40% 60% 30% 50%;
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(-5deg) scale(0.92);
        border-radius: 60% 30% 50% 40%;
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) rotate(12deg) scale(1.05);
        border-radius: 30% 50% 40% 60%;
        opacity: 0.9;
    }
}

@keyframes curlFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
        border-radius: 50% 40% 60% 30%;
        opacity: 1;
    }
    20% {
        transform: translateX(15px) translateY(-20px) rotate(5deg) scale(1.03);
        border-radius: 40% 60% 30% 50%;
        opacity: 0.8;
    }
    40% {
        transform: translateX(-8px) translateY(-35px) rotate(-3deg) scale(0.95);
        border-radius: 60% 30% 50% 40%;
        opacity: 1;
    }
    60% {
        transform: translateX(20px) translateY(-15px) rotate(8deg) scale(1.06);
        border-radius: 30% 50% 40% 60%;
        opacity: 0.9;
    }
    80% {
        transform: translateX(-12px) translateY(-25px) rotate(-2deg) scale(0.98);
        border-radius: 50% 40% 60% 30%;
        opacity: 0.85;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: white !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #FF6B35 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white !important;
}

.service-card:hover .service-icon {
    background-color: #E63946 !important;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333 !important;
}

.service-card p {
    color: #666 !important;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Curriculum Section */
.curriculum {
    padding: 80px 0;
    background-color: #fff !important;
}

.curriculum-list {
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.curriculum-item:hover {
    background-color: #f8f9fa !important;
}

.curriculum-number {
    background-color: #FF6B35 !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.curriculum-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333 !important;
}

/* Offer Banner Section */
.offer-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF4500 0%, #FF6B35 50%, #FF8A65 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.offer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.price-section {
    margin-bottom: 2rem;
}

.original-price {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: line-through;
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.current-price {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    color: white;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -1px;
}

.btn-offer {
    background: white !important;
    color: #FF4500 !important;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 1.5rem 3.5rem;
    border: 3px solid white;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa !important;
}

.btn-offer:hover::before {
    left: 100%;
}

.btn-offer:active {
    transform: translateY(-1px);
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f8f9fa !important;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #FF6B35 !important;
}

.stat-label {
    color: #666 !important;
    font-size: 0.9rem;
}

.team-images {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.team-image {
    width: 100%;
    height: 150px;
    background-color: #ddd !important;
    border-radius: 10px;
}

/* Before & After Section */
.before-after {
    padding: 80px 0;
    background-color: #fff !important;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.before-after-item {
    text-align: center;
}

.before-after-image {
    width: 100%;
    background-color: #e9ecef !important;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: fit-content;
}

.before-after-image img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px 10px 0 0;
}

.before-after-image:hover {
    transform: scale(1.05);
}

.image-label {
    position: relative;
    background: white;
    color: #333 !important;
    font-weight: 600;
    padding: 16px 12px;
    text-align: center;
    font-size: 0.9rem;
    text-shadow: none;
    border-radius: 0 0 10px 10px;
    border-top: 3px solid #ff6b35;
    margin: 0;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.before-after-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.testimonial-card h4 {
    margin-bottom: 0.5rem;
    color: #333 !important;
}

.testimonial-location {
    color: #666 !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: #555 !important;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #FF6B35;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.pricing-card.featured {
    border: 2px solid #FF6B35;
    transform: none;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.currency {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    vertical-align: middle;
    position: relative;
    top: -0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B35;
    margin: 0 0.2rem;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.8rem;
    line-height: 1.3;
    font-style: italic;
}

.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.features li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.6rem 0.8rem;
    color: #333;
    text-align: left;
    background: rgba(255, 107, 53, 0.02);
    margin-bottom: 0.4rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.features li:hover {
    background: rgba(255, 107, 53, 0.06);
    transform: translateX(3px);
}

.features li i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Guarantee Section Styles */
.guarantee-icon {
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.guarantee-icon i {
    font-size: 4rem;
    color: #FF6B35;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(255, 107, 53, 0.2));
}

.guarantee-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.target-audience {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F7931E 0%, #FFD23F 50%, #FF6B35 100%);
    z-index: 1;
}

.target-audience h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.target-audience p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.target-audience-icon {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.target-audience-icon i {
    font-size: 2.5rem;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.course-benefits {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(34, 139, 34, 0.05) 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(40, 167, 69, 0.1);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.course-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    z-index: 1;
}

.course-benefits h3 {
    color: #28a745;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-list li i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.benefits-icon {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.benefits-icon i {
    font-size: 2.5rem;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-right {
        gap: 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa !important;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white !important;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa !important;
}

.faq-question h3 {
    margin: 0;
    color: #333 !important;
    font-size: 1.1rem;
}

.faq-toggle {
    color: #FF6B35 !important;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666 !important;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333 !important;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #FF6B35 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white !important;
    font-size: 1rem;
}

/* Contact Form Styles */
.contact-form {
    background-color: white !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f8f9fa !important;
    color: #333 !important;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background-color: white !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666 !important;
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Results & Testimonials Unified Section */
.results-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa !important;
}

.results-testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Results Section (Left side) */
.results-section h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #FFF;
    margin-bottom: 2rem;
    text-align: center;
}

.results-section .before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.results-section .before-after-item {
    text-align: center;
}

.results-section .before-after-image {
    width: 100%;
    height: 150px;
    background-color: #e9ecef !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.results-section .before-after-image:hover {
    transform: scale(1.05);
}



.results-cta {
    text-align: center;
}

/* Testimonials Section (Right side) */
.testimonials-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-item {
    display: flex;
    gap: 1rem;
    background-color: white !important;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h4 {
    margin: 0 0 0.25rem 0;
    color: #333 !important;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-location {
    color: #666 !important;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: #555 !important;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Remove old sections styles */
.before-after,
.testimonials {
    display: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.footer-brand h3 {
    margin: 0;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section h3,
.footer-section h4 {
    color: #FFF;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: #FFF;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    border-radius: 1px;
}

.footer-section p {
    color: #FFF;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD23F;
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
    color: #F7931E;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
}

.footer-bottom p {
    color: #FFF;
    margin: 0;
    font-size: 0.9rem;
}

.developer-credit {
    margin-top: 0.5rem;
}

.developer-credit p {
    color: #a0aec0;
    font-size: 0.85rem;
    margin: 0;
}

.developer-link {
    color: #FF6B35 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link:hover {
    color: #FFD23F !important;
    text-decoration: none;
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        gap: 0.75rem;
    }
    
    .developer-credit p {
        font-size: 0.8rem;
    }
}

/* ... existing code ... */

/* Melhorias para a seção da instrutora */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: #FF6B35;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.highlight-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.6rem;
}

.instructor-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.02em;
}

.name-decoration {
    font-size: 1rem;
    color: #FF6B35;
    font-weight: 600;
}

@keyframes sparkle {
}

.story-content {
    margin: 2rem 0;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.expertise-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.expertise-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-number {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1em;
}

.mission-story {
    margin-bottom: 2rem;
}

.mission-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    border-left: 4px solid #E63946;
}

.mission-icon {
    background: linear-gradient(135deg, #E63946 0%, #FF6B35 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-section {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.quote-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.main-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 1.5rem 0;
    position: relative;
    padding: 0 2rem;
}

.instructor-photo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.photo-frame {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 4px solid white;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-frame:hover .instructor-photo {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1rem 1rem;
    color: white;
}

.photo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    justify-content: center;
}

.photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    top: 0;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.circle-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E63946 0%, #FF6B35 100%);
    top: 100px;
    right: 80px;
    animation: float 3s ease-in-out infinite 1s;
}

.circle-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F7931E 0%, #FFD23F 100%);
    top: 200px;
    right: 20px;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.instructor-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin: 0 auto;
}

.cta-subtitle {
    color: #666;
    font-style: italic;
    margin: 0;
}

.team .stat-icon {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsividade para seção da instrutora */
@media (max-width: 768px) {
    .highlight-gradient {
        font-size: 1.3rem;
    }
    
    .instructor-name {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .name-decoration {
        font-size: 0.9rem;
    }
    
    .photo-frame {
        width: 250px;
        height: 320px;
    }
    
    .expertise-box,
    .mission-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .main-quote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    color: white;
    text-decoration: none !important;
    border-radius: 50%;
    text-align: center;
    font-size: 45px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px #ff6b3579;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Kiwify Upsell Buttons - Visual Identity Consistente */
#kiwify-upsell-8GfyxR3 {
  text-align: center;
}

.kiwi-button-confirm {
  background: linear-gradient(45deg, #FF6B35, #F7931E) !important;
  color: #FFFFFF !important;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  letter-spacing: 0.2px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.kiwi-button-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.5);
  background: linear-gradient(45deg, #E63946, #FF6B35) !important;
}

.kiwi-button-cancel {
  margin-top: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
  color: #cccccc;
  opacity: 0.9;
}
.kiwi-button-cancel:hover {
  opacity: 1;
}

/* Ajustes de spacing com o layout existente */
.kiwify-upsell-container { 
  margin-top: 16px; 
}

/* Mobile tuning */
@media (max-width: 480px) {
  .kiwi-button-confirm {
    width: 100%;
    max-width: 360px;
    font-size: 17px;
    padding: 12px 20px;
  }
}

/* Garantir ordem de empilhamento segura para o vídeo */
.video-placeholder, #courseVideo { z-index: 1; }

/* Mobile override: posicionar o badge acima do vídeo e fora da caixa */
@media (max-width: 768px) {
  .hero-image { display: flex; }
  .testimonial-badge {
    position: static !important;
    order: -1;
    margin-bottom: 12px;
    right: auto; bottom: auto;
    align-self: center;
    z-index: 2;
  }
}

/* Mobile spacing extra para evitar cobertura pelo WhatsApp */
@media (max-width: 480px) {
  .kiwify-upsell-container { margin-bottom: 120px; }
}