/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-petroleum: #1B4B5A;
    --primary-olive: #6B8E23;
    --primary-ice: #F0F4F8;
    --bg-dark: #0A0A0A;
    --bg-dark-secondary: #1A1A1A;
    --text-white: #FFFFFF;
    --text-ice: #F0F4F8;
    --text-gray: #CCCCCC;
    --red-error: #E74C3C;
    --border-olive: #6B8E23;
    --petroleum-light: #2A6B7F;
    --olive-light: #8BAF3D;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(27, 75, 90, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-petroleum) 0%, var(--primary-olive) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-ice);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-specialties {
    font-size: 1.2rem;
    color: var(--primary-olive);
    margin-bottom: 40px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-olive) 0%, var(--olive-light) 100%);
    color: var(--text-white);
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 142, 35, 0.5);
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-ice);
    border: 2px solid var(--primary-olive);
    box-shadow: none;
    margin-left: 10px;
}

.cta-button.secondary:hover {
    background: rgba(107, 142, 35, 0.1);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-ice);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* VSL Section */
.vsl {
    background-color: var(--bg-dark);
    padding: 80px 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 75, 90, 0.4);
    border: 3px solid var(--primary-petroleum);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 17px;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-dark-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--primary-petroleum);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 75, 90, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-petroleum);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Method Section */
.method {
    background-color: var(--bg-dark);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-petroleum);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: -10px 0 30px rgba(27, 75, 90, 0.3);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-petroleum) 0%, var(--petroleum-light) 100%);
    color: var(--text-ice);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-petroleum);
}

.step p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Target Audience Section */
.target-audience {
    background-color: var(--bg-dark-secondary);
}

.target-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Transformation Section */
.transformation {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.transformation-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.transformation-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* Offer Section */
.offer {
    background-color: var(--bg-dark-secondary);
}

.offer-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border: 2px solid var(--primary-petroleum);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(27, 75, 90, 0.3);
}

.offer-box ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.offer-box li::before {
    content: '✓';
    color: var(--primary-olive);
    margin-right: 8px;
}

/* Professor Section */
.professor {
    background-color: var(--bg-dark-secondary);
}

.professor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.professor-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.professor-bio h3 {
    font-size: 2.5rem;
    color: var(--primary-petroleum);
    margin-bottom: 10px;
}

.professor-role {
    font-size: 1.3rem;
    color: var(--primary-olive);
    margin-bottom: 30px;
    font-weight: 600;
}

.professor-bio p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.achievements {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-petroleum);
}

.achievements h4 {
    color: var(--primary-petroleum);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.achievements ul {
    list-style: none;
    padding-left: 0;
}

.achievements li {
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-olive);
    font-weight: bold;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-olive);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, var(--primary-petroleum) 0%, var(--petroleum-light) 100%);
    text-align: center;
    padding: 100px 20px;
}

.cta-final h2 {
    font-size: 2.8rem;
    color: var(--text-ice);
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.3rem;
    color: var(--text-ice);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-final .cta-button {
    background: var(--text-ice);
    color: var(--primary-petroleum);
}

.cta-final .cta-button:hover {
    background: var(--text-white);
    color: var(--primary-petroleum);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
}

.footer-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

.whatsapp-float:active {
    transform: scale(0.95);
}

.lead-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lead-modal.is-active {
    display: flex;
}

.lead-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.lead-modal__content {
    position: relative;
    background: #111;
    border: 1px solid var(--primary-olive);
    border-radius: 16px;
    padding: 30px;
    max-width: 480px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.lead-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-ice);
    font-size: 1.5rem;
    cursor: pointer;
}

.lead-modal__subtitle {
    color: var(--text-gray);
    margin: 10px 0 20px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form label {
    font-weight: 600;
    color: var(--text-ice);
}

.lead-form input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #0c0c0c;
    color: var(--text-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary-olive);
    box-shadow: 0 0 0 2px rgba(107, 142, 35, 0.2);
}

.lead-form__feedback {
    min-height: 20px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.lead-form__feedback.is-error {
    color: var(--red-error);
}

.lead-form__feedback.is-success {
    color: var(--primary-olive);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .method-steps {
        grid-template-columns: 1fr;
    }

    .professor-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-final h2 {
        font-size: 1.8rem;
    }

    .cta-final p {
        font-size: 1rem;
    }

    .video-wrapper {
        border: 2px solid var(--primary-petroleum);
    }

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

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

@media (max-width: 480px) {
    .logo {
        max-width: 300px;
    }

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

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-button.secondary {
        margin-left: 0;
    }
}

/* Thank You Page */
.thankyou-hero {
    padding: 120px 20px;
}

.thankyou-note {
    margin-top: 20px;
    color: var(--text-gray);
}

.session-id {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Transformation Grid */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.transformation-card {
    padding: 30px;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
    /* Fallback */
}

/* Card Visuals */
.transformation-card.negative {
    background: linear-gradient(180deg, rgba(30, 0, 0, 0.6) 0%, rgba(20, 0, 0, 0.2) 100%);
    border-left: 4px solid var(--red-error);
}

.transformation-card.positive {
    background: linear-gradient(180deg, rgba(0, 30, 0, 0.6) 0%, rgba(0, 20, 0, 0.2) 100%);
    border-left: 4px solid var(--primary-olive);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.transformation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-ice);
    font-family: 'Inter', sans-serif;
    /* Keep title consistent or change if requested */
}

.transformation-card ul {
    list-style: none !important;
    /* Force remove default bullets */
    padding: 0;
    margin: 0;
}

.transformation-card li {
    margin-bottom: 16px;
    padding-left: 35px;
    /* Space for icon */
    position: relative;
    color: var(--text-gray);
    line-height: 1.5;

    /* Requested Typography */
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.transformation-card li::before {
    position: absolute;
    left: 0;
    top: 4px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    /* Icons can stay default font or symbols */
}

.transformation-card.negative li::before {
    content: '✖';
    color: var(--red-error);
    font-size: 1.2rem;
}

.transformation-card.positive li::before {
    content: '✓';
    color: var(--primary-olive);
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .transformation {
        padding: 60px 0;
    }

    .transformation-image-wrapper {
        margin-top: 30px;
        padding: 0 10px;
    }

    .transformation-image {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    /* Stack on tablets and smaller */
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transformation-card {
        padding: 25px;
    }

    .transformation-card li {
        font-size: 18px;
        /* Slightly smaller on mobile to fit 20px request but behave nicely? User asked for 20px. Keep 20px? Text wrapping might be heavy. I'll stick to 20px as requested or responsive. User said "Roboto tamanho 20px". I will keep 20px. */
        font-size: 20px;
    }
}

/* ========================================
   PAYMENT OPTIONS SECTION
   ======================================== */
.payment-options {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 100px 20px;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.payment-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-petroleum), var(--primary-olive));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(27, 75, 90, 0.25);
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-card--stripe {
    border-color: rgba(107, 142, 35, 0.3);
}

.payment-card--stripe:hover {
    border-color: var(--primary-olive);
}

.payment-card--cakto {
    border-color: rgba(27, 75, 90, 0.3);
}

.payment-card--cakto:hover {
    border-color: var(--primary-petroleum);
}

.payment-card__icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.payment-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-ice);
    margin-bottom: 12px;
}

.payment-card__description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-card__badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--boleto {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.2), rgba(107, 142, 35, 0.1));
    color: var(--primary-olive);
    border: 1px solid rgba(107, 142, 35, 0.4);
}

.badge--cartao {
    background: linear-gradient(135deg, rgba(27, 75, 90, 0.2), rgba(27, 75, 90, 0.1));
    color: var(--petroleum-light);
    border: 1px solid rgba(27, 75, 90, 0.4);
}

.badge--pix {
    background: linear-gradient(135deg, rgba(0, 189, 142, 0.2), rgba(0, 189, 142, 0.1));
    color: #00BD8E;
    border: 1px solid rgba(0, 189, 142, 0.4);
}

.badge--parcelado {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.payment-card__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.payment-card__benefits li {
    color: var(--text-gray);
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-card .cta-button {
    width: 100%;
    animation: none;
    margin-top: 10px;
}

.payment-card--stripe .cta-button {
    background: linear-gradient(135deg, var(--primary-olive) 0%, var(--olive-light) 100%);
}

.payment-card--cakto .cta-button {
    background: linear-gradient(135deg, var(--primary-petroleum) 0%, var(--petroleum-light) 100%);
}

.payment-options__note {
    text-align: center;
    color: var(--text-gray);
    margin-top: 40px;
    font-size: 0.95rem;
}

/* Payment Cards Responsive */
@media (max-width: 768px) {
    .payment-options {
        padding: 60px 20px;
    }

    .payment-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .payment-card {
        padding: 30px 25px;
    }

    .payment-card__icon {
        font-size: 3rem;
    }

    .payment-card__title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .payment-options {
        padding: 40px 15px;
    }

    .payment-card {
        padding: 25px 20px;
    }

    .payment-card__icon {
        font-size: 2.5rem;
    }

    .payment-card__title {
        font-size: 1.3rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}
/* Thank You Page Styling */
.thankyou-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thankyou-image {
    flex: 0 0 450px;
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.thankyou-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 0.5;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    mix-blend-mode: luminosity; 
}

.thankyou-hero .hero-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.thankyou-hero .hero-title {
    text-align: left;
    margin-bottom: 20px;
}

.thankyou-hero .hero-subtitle {
    text-align: left;
    margin-bottom: 30px;
    max-width: 600px;
}

.thankyou-hero .cta-group {
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
}

.thankyou-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 10px;
    max-width: 500px;
    text-align: left;
    line-height: 1.5;
}

/* Responsividade da Página de Obrigado */
@media (max-width: 960px) {
    .thankyou-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .thankyou-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .thankyou-hero .hero-content {
        align-items: center;
        text-align: center;
    }

    .thankyou-hero .hero-title,
    .thankyou-hero .hero-subtitle,
    .thankyou-hero .thankyou-note {
        text-align: center;
    }

    .thankyou-hero .cta-group {
        justify-content: center;
    }
}

/* Updated Thank You Hero Background */
.thankyou-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('images/obrigado-bg.jpg') center/cover no-repeat !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-hero .hero-content {
    align-items: center !important;
    text-align: center !important;
}

.thankyou-hero .hero-title,
.thankyou-hero .hero-subtitle,
.thankyou-hero .thankyou-note {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-hero .cta-group {
    justify-content: center !important;
}


/* Increase fonts for Thank You Page */
.thankyou-hero .hero-title {
    font-size: 3.5rem !important;
}

.thankyou-hero .hero-subtitle {
    font-size: 1.8rem !important;
    max-width: 800px !important; /* Allow more width for larger text */
}

.thankyou-note {
    font-size: 1.1rem !important;
    max-width: 700px !important;
}

@media (max-width: 768px) {
    .thankyou-hero .hero-title {
        font-size: 2.2rem !important;
    }
    .thankyou-hero .hero-subtitle {
        font-size: 1.4rem !important;
    }
    .thankyou-note {
        font-size: 1rem !important;
    }
}

