* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #38394F;
    --secondary-color: #2d2e3a;
    --accent-color: #8b9dc3;
    --gold: #d4af37;
    --text-color: #1a202c;
    --light-text: #718096;
    --light-bg: #f8f9fb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.9;
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    padding: 2rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-logo {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Efeito especial para Marsha (IA) */
.nav-ai {
    position: relative;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.nav-ai::after {
    background: linear-gradient(90deg, #667eea, #764ba2) !important;
}

.nav-ai:hover {
    animation: shimmer 1.5s linear infinite;
}

.nav-ai::before {
    content: '✨';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-ai:hover::before {
    opacity: 1;
    left: -25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: #38394F;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}





.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--white);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.8rem;
    background: var(--white);
    padding: 0 10px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 80px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatSlow 20s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -20px);
    }
    50% {
        transform: translate(-10px, -15px);
    }
    75% {
        transform: translate(20px, 10px);
    }
}

.about::after {
    content: '';
    position: absolute;
    bottom: 150px;
    right: 100px;
    width: 85px;
    height: 85px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50px;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
    animation: floatSlow 18s ease-in-out infinite;
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 60px;
    width: 95px;
    height: 95px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatSlow 22s ease-in-out infinite reverse;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    line-height: 2.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p:nth-child(1) {
    animation-delay: 0.1s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.3s;
}

.about-text .highlight {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.about-text .highlight::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -30px;
    top: -10px;
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.about-text .highlight::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    right: -30px;
    bottom: -20px;
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

/* Upcoming Launches Section */
.upcoming-launches {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.upcoming-launches::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
    animation: floatSlow 25s ease-in-out infinite;
}

.upcoming-launches::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.launches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.launch-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem 1.8rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.launch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.8s;
}

.launch-card:hover::before {
    left: 100%;
}

.launch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.launch-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), #c99d2e);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 0 0 15px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.badge-date {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.launch-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.launch-card:hover .launch-icon {
    transform: scale(1.1);
    color: var(--gold);
}

.launch-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.launch-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
}

.detail-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.launch-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.price-installments {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.btn-launch-interest {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.btn-launch-interest::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-launch-interest:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(56, 57, 79, 0.3);
}

.btn-launch-interest:hover::before {
    width: 300px;
    height: 300px;
}

/* Launch Content Sections - Refined Design */
.launch-content-section {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex-grow: 1;
}

.launch-content-section:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.content-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.content-icon {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.content-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Instructors Grid - Elegant Cards */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.instructor-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.instructor-card:hover::before {
    left: 100%;
}

.instructor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.instructor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.instructor-role {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.instructor-credential {
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
}

/* Launch Pricing Section */
.launch-pricing {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(56, 57, 79, 0.08), rgba(56, 57, 79, 0.03));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(56, 57, 79, 0.15);
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pricing-option {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pix-option {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.card-option {
    background: linear-gradient(135deg, rgba(139, 157, 195, 0.15), rgba(139, 157, 195, 0.08));
    border: 2px solid rgba(139, 157, 195, 0.3);
}

.pricing-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.pricing-option:hover::before {
    left: 100%;
}

.pricing-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.pricing-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.pix-option .pricing-value {
    color: var(--gold);
}

.card-option .pricing-value {
    color: var(--accent-color);
}

.pricing-discount {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
}

.pricing-installment {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}



.launch-info-text {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
    text-align: center;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.info-section strong {
    color: var(--gold);
    font-weight: 600;
}

/* Modal de Interesse nos Lançamentos */
.launch-modal-content {
    max-width: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

/* Modal de Checkout dos Lançamentos */
.launch-checkout-content {
    max-width: 650px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.close-checkout-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.close-checkout-modal:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Campo de motivação com altura fixa */
.form-group textarea {
    width: 100%;
    height: 120px;
    resize: none;
    overflow-y: auto;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Seção de pagamento simplificada */
.payment-main-label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.payment-simple-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-simple-option {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    display: block;
}

.payment-simple-option:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.payment-simple-option input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-simple-option input[type="radio"]:checked + .payment-simple-content {
    color: var(--primary-color);
}

.payment-simple-option input[type="radio"]:checked + .payment-simple-content .payment-simple-header strong {
    color: var(--gold);
}

.payment-simple-content {
    display: inline-block;
    width: calc(100% - 2rem);
    vertical-align: top;
}

.payment-simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-simple-header strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.payment-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.payment-simple-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.payment-simple-details p strong {
    color: var(--primary-color);
}

.payment-note {
    color: var(--light-text) !important;
    font-style: italic;
    font-size: 0.9rem !important;
}

.btn-complete-registration {
    background: linear-gradient(135deg, var(--gold), #c99d2e);
    color: var(--white);
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.btn-complete-registration:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c99d2e, var(--gold));
}

.registration-icon {
    font-size: 1.2rem;
}

.launch-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.launch-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.launch-modal-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.launch-modal-body {
    padding: 2.5rem 2rem;
    background: var(--white);
}

.interest-form .form-group {
    margin-bottom: 1.5rem;
}

.interest-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form input[type="tel"],
.interest-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Lato', sans-serif;
    resize: vertical;
}

.interest-form input:focus,
.interest-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.interest-form textarea {
    min-height: 80px;
}

.btn-submit-interest {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #c99d2e);
    color: var(--white);
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.btn-submit-interest:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c99d2e, var(--gold));
}

.interest-icon {
    font-size: 1.2rem;
}

.interest-note {
    font-size: 0.85rem;
    color: var(--light-text);
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

.close-launch-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.close-launch-modal:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #38394F;
    color: var(--white);
    position: relative;
    overflow: hidden;
}



.services .section-header h2 {
    color: var(--white);
}

.services .divider {
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.95;
    font-style: italic;
}

.section-subtitle-marsha {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.service-card.active {
    background: var(--white);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
    z-index: 10;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--gold);
}

.service-card.active .service-icon {
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: auto;
    font-weight: 600;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    white-space: nowrap;
    min-height: 28px;
}

.service-badge svg {
    width: 12px;
    height: 12px;
}

.service-badge.hybrid {
    background: linear-gradient(135deg, rgba(139, 157, 195, 0.15), rgba(139, 157, 195, 0.08));
    border-color: rgba(139, 157, 195, 0.3);
    color: #8b9dc3;
    font-size: 0.65rem;
    padding: 0.45rem 0.8rem;
}

/* Modal de Serviços */
#serviceModal {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#serviceModal .modal-content {
    animation: modalSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(80px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.service-modal-content {
    max-width: 550px;
    padding: 0;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.modal-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.modal-circle-1 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: -50px;
    right: -50px;
    animation: floatSlow 18s ease-in-out infinite;
}

.modal-circle-2 {
    width: 180px;
    height: 180px;
    background: var(--accent-color);
    bottom: -60px;
    left: -60px;
    animation: floatSlow 22s ease-in-out infinite reverse;
}

.service-modal-body {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-modal-body::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatSlow 20s ease-in-out infinite;
}

.service-modal-body::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    animation: floatSlow 24s ease-in-out infinite reverse;
}

.service-modal-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    animation: iconPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes iconPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.service-modal-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.service-modal-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    animation: fadeInUp 0.5s ease 0.4s both;
    position: relative;
    z-index: 1;
}

.service-modal-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
    animation: expandWidth 0.6s ease 0.5s both;
    position: relative;
    z-index: 1;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.service-modal-body p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.6s both;
    position: relative;
    z-index: 1;
}

.service-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.7s both;
    position: relative;
    z-index: 1;
}

.service-modal-badge svg {
    width: 14px;
    height: 14px;
}

.service-modal-badge.hybrid {
    background: linear-gradient(135deg, rgba(139, 157, 195, 0.12), rgba(139, 157, 195, 0.06));
    border-color: rgba(139, 157, 195, 0.25);
    color: #8b9dc3;
}

.btn-modal-action {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    animation: fadeInUp 0.5s ease 0.8s both;
    position: relative;
    z-index: 1;
}

.btn-modal-action:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.close-service-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.close-service-modal:hover {
    color: var(--white);
    background: var(--gold);
    transform: rotate(90deg);
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 95px;
    height: 95px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
    animation: floatSlow 24s ease-in-out infinite;
}

.team::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 12%;
    width: 110px;
    height: 110px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    animation: floatSlow 19s ease-in-out infinite reverse;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    animation: floatSlow 21s ease-in-out infinite;
}

.founders-section::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: 80px;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    animation: floatSlow 17s ease-in-out infinite reverse;
}

.founders-section {
    margin-bottom: 5rem;
    position: relative;
}

.founders-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.founders-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.team-image {
    border-radius: 0 100px 0 100px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.3), transparent 50%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.team-image:hover::after {
    opacity: 0.5;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-image:hover img {
    transform: scale(1.08);
}

.team-text p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    line-height: 2;
    color: var(--text-color);
    text-align: left;
}

.team-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.team-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.team-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.team-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 2;
    color: var(--text-color);
}

.team-highlight {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 2rem;
    padding: 0 2rem;
}

/* AI Agent Section */
.ai-agent {
    padding: 5rem 0;
    background: #38394F;
    color: var(--white);
}

.ai-agent .section-header h2 {
    color: var(--white);
}

.ai-agent .divider {
    background: var(--white);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.ai-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.ai-text > p {
    font-size: 1.25rem;
    line-height: 2.1;
    margin-bottom: 2rem;
}

.marsha-intro {
    margin-bottom: 3rem;
}

.marsha-intro p {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.marsha-intro strong {
    font-weight: 600;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.marsha-cta {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.marsha-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-marsha-notify {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-marsha-notify::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-marsha-notify:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: var(--white);
}

.btn-marsha-notify:hover::before {
    width: 300px;
    height: 300px;
}

.marsha-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.75;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.ai-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.8;
}

.ai-pricing {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.btn-ai {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-ai::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-ai:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: var(--white);
}

.btn-ai:hover::before {
    width: 300px;
    height: 300px;
}

.ai-note {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
    text-align: center;
}

.ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 420px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea, #764ba2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease 0.5s both;
    position: relative;
}

.ai-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.ai-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 1.5rem;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ai-avatar svg {
    width: 28px;
    height: 28px;
}

.ai-card-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.status-online {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 600;
}

.ai-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 280px;
}

.chat-bubble {
    padding: 1rem;
    border-radius: 15px;
    max-width: 85%;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

.chat-anim-1 {
    animation: messageAppear1 0.5s ease 0.5s forwards, messageDisappear1 0.5s ease 15s forwards, messageLoop1 16s ease 16s infinite;
}

.chat-anim-2 {
    animation: messageAppear2 0.5s ease 5s forwards, messageDisappear2 0.5s ease 15s forwards, messageLoop2 16s ease 16s infinite;
}

.chat-anim-3 {
    animation: messageAppear3 0.5s ease 9s forwards, messageDisappear3 0.5s ease 15s forwards, messageLoop3 16s ease 16s infinite;
}

@keyframes messageAppear1 {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes messageAppear2 {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes messageAppear3 {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes messageDisappear1 {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

@keyframes messageDisappear2 {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

@keyframes messageDisappear3 {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

@keyframes messageLoop1 {
    0%, 3% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    6%, 90% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    95%, 100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

@keyframes messageLoop2 {
    0%, 30% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    33%, 90% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    95%, 100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

@keyframes messageLoop3 {
    0%, 55% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    58%, 90% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    95%, 100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 15px;
    border-bottom-left-radius: 5px;
    width: fit-content;
    align-self: flex-start;
    opacity: 0;
}

.typing-anim-1 {
    animation: typingShow1 0.3s ease 3s forwards, typingHide1 0.3s ease 4.5s forwards, typingLoop1 16s ease 16s infinite;
}

.typing-anim-2 {
    animation: typingShow2 0.3s ease 7s forwards, typingHide2 0.3s ease 8.5s forwards, typingLoop2 16s ease 16s infinite;
}

@keyframes typingShow1 {
    to {
        opacity: 1;
    }
}

@keyframes typingHide1 {
    to {
        opacity: 0;
    }
}

@keyframes typingShow2 {
    to {
        opacity: 1;
    }
}

@keyframes typingHide2 {
    to {
        opacity: 0;
    }
}

@keyframes typingLoop1 {
    0%, 18% {
        opacity: 0;
    }
    20%, 28% {
        opacity: 1;
    }
    30%, 100% {
        opacity: 0;
    }
}

@keyframes typingLoop2 {
    0%, 43% {
        opacity: 0;
    }
    45%, 53% {
        opacity: 1;
    }
    55%, 100% {
        opacity: 0;
    }
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-bubble.bot {
    background: var(--light-bg);
    color: var(--text-color);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-bubble.user {
    background: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chat-bubble p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 120px;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
    animation: floatSlow 22s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 12%;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    animation: floatSlow 26s ease-in-out infinite reverse;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 8%;
    width: 75px;
    height: 75px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
    animation: floatSlow 23s ease-in-out infinite;
}

.contact-content::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 105px;
    height: 105px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.contact-item .icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Modal de Checkout */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    margin: 2rem auto;
    padding: 0;
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal,
.close-modal-marsha {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.close-modal:hover,
.close-modal-marsha:hover {
    color: #e53e3e;
}

.checkout-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.checkout-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.checkout-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.checkout-body {
    padding: 2rem;
}

.product-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.product-price {
    text-align: right;
}

.product-price .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.product-price .period {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Pricing Highlight */
.pricing-highlight {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price-option {
    flex: 1;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.pix-price {
    color: var(--gold);
}

.card-price {
    color: var(--primary-color);
}

.price-detail {
    display: block;
    font-size: 0.8rem;
    color: var(--light-text);
    font-style: italic;
}

.checkout-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: var(--light-bg);
}

.payment-option input[type="radio"] {
    margin-right: 0.5rem;
}

.payment-option input[type="radio"]:checked + span {
    font-weight: 700;
    color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: #25d366;
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.checkout-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
}

.btn-mercadopago {
    background: #009ee3;
}

.btn-mercadopago:hover {
    background: #0084c2;
}

.payment-methods {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.payment-methods p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.methods-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.methods-icons span {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
}

/* Modal de Confirmação */
.confirmation-content {
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.confirmation-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.next-steps {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    flex: 1;
    line-height: 1.8;
    padding-top: 0.3rem;
}

.contact-support {
    margin: 2rem 0;
}

.contact-support p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.btn-whatsapp-support {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp-support:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-close-confirmation {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-close-confirmation:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    background: #c99d2e;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(212, 175, 55, 0.7);
    }
}

/* Botão Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Footer */
footer {
    background: #38394F;
    color: var(--white);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-text {
    text-align: left;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-links span {
    margin: 0 0.8rem;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .launches-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .launch-info-text {
        padding: 2rem 1.5rem;
    }

    .team-content,
    .ai-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-content {
        direction: ltr;
    }

    .team-image {
        order: -1;
    }

    .ai-visual {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .launch-card {
        padding: 1.8rem 1.3rem;
        min-height: 550px;
    }

    .launch-card h3 {
        font-size: 1.4rem;
        min-height: 3.6rem;
    }

    .launch-description {
        font-size: 1rem;
        min-height: 3.2rem;
    }

    .launch-content-section {
        padding: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .launch-badge {
        right: 10px;
        padding: 0.6rem 1rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .badge-date {
        font-size: 0.8rem;
    }

    .launch-pricing {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .pricing-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .pricing-option {
        padding: 0.8rem;
    }

    .pricing-value {
        font-size: 1.2rem;
    }

    .content-header h4 {
        font-size: 1.2rem;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .instructor-card {
        padding: 1rem;
        text-align: center;
    }

    .instructor-name {
        font-size: 1rem;
    }

    .instructor-role {
        font-size: 0.9rem;
    }

    .instructor-credential {
        font-size: 0.8rem;
    }

    .content-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .content-header h4 {
        font-size: 1.1rem;
    }

    .content-icon {
        width: 20px;
        height: 20px;
    }



    .price-value {
        font-size: 2rem;
    }

    .launch-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .launch-modal-header {
        padding: 2rem 1.5rem;
    }

    .launch-modal-body {
        padding: 2rem 1.5rem;
    }

    .launch-checkout-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .payment-simple-option {
        padding: 1.2rem;
    }
    
    .payment-simple-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .payment-simple-option input[type="radio"] {
        margin-right: 0.8rem;
    }

    .payment-simple-content {
        width: calc(100% - 1.5rem);
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-logo img {
        max-width: 250px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        min-height: auto;
    }

    .about-text p {
        font-size: 1.2rem;
    }

    .team-info {
        padding: 2rem 1.5rem;
    }

    .team-info h3 {
        font-size: 1.6rem;
    }

    .team-info p {
        font-size: 1.1rem;
    }

    .ai-content {
        grid-template-columns: 1fr;
    }

    .ai-text h3 {
        font-size: 1.8rem;
    }

    .ai-text > p,
    .marsha-intro p {
        font-size: 1.1rem;
    }

    .marsha-cta h3 {
        font-size: 1.3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .service-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .service-modal-body {
        padding: 2rem 1.5rem;
    }

    .service-modal-body h2 {
        font-size: 1.6rem;
    }

    .service-modal-body p {
        font-size: 1rem;
    }

    .product-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .product-price {
        text-align: center;
    }

    .pricing-highlight {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .price-value {
        font-size: 1.4rem;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 200px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .btn-primary,
    .btn-marsha-notify {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .launch-content-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .instructor-card {
        padding: 0.8rem;
    }

    .instructor-name {
        font-size: 0.95rem;
    }

    .instructor-role {
        font-size: 0.85rem;
    }

    .instructor-credential {
        font-size: 0.75rem;
    }

    .content-header h4 {
        font-size: 1rem;
    }
}
