:root {
    --primary-color: #E65100;
    /* Laranja queimado - Apetite */
    --secondary-color: #43A047;
    /* Verde - Frescor */
    --accent-color: #FFB74D;
    /* Amarelo/Laranja claro */
    --bg-color: #FFF3E0;
    /* Creme suave */
    --text-color: #3E2723;
    /* Marrom café */
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
header {
    background-color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.05);
    background-color: #2E7D32;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cart {
    display: none;
    position: relative;
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: transform 0.2s;
}

.header-cart:active {
    transform: scale(0.95);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    border: 1px solid white;
}

.back-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    min-height: 80vh;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5D4037;
}

.hero-benefits {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-tag {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #BF360C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.6);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: #FFF3E0;
    transform: translateY(-3px);
}

.buttons-wrapper {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-video-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    /* Mantém o formato circular */
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
    position: relative;
    background-color: #000;
    /* Fundo preto enquanto carrega */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo preencha o círculo sem distorcer */
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(45deg, #FFB74D, #E65100);
    color: white;
    padding: 2rem 5%;
    margin: 2rem 5%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
}

.promo-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

.promo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    color: #fff;
    margin-bottom: 0.5rem;
}

.promo-text p:last-child {
    margin-bottom: 0;
}

/* Promoção no Checkout */
.checkout-promo {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    animation: pulse-border 2s infinite;
}

.checkout-promo .promo-header {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-promo p {
    font-size: 0.9rem;
    color: #5D4037;
    margin-bottom: 0.5rem;
}

.checkout-promo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-promo li {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-promo li:last-child {
    margin-bottom: 0;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-border {
    0% {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.4);
    }

    70% {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 6px rgba(255, 183, 77, 0);
    }

    100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0);
    }
}

/* Promo Section - New Layout */
.promo-section {
    padding: 2rem 5%;
    margin-bottom: 2rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.promo-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.promo-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-5px);
}

/* Card Styles */
.money-card {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    /* Verde Dinheiro */
}

.free-card {
    background: linear-gradient(135deg, #E65100 0%, #FF6D00 100%);
    /* Laranja Marca */
}

.points-card {
    background: linear-gradient(135deg, #7B1FA2 0%, #9C27B0 100%);
    /* Roxo Fidelidade */
}

.promo-card-icon {
    font-size: 3.5rem;
    margin-right: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    animation: bounce 2s infinite;
}

.promo-card-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-card-text p {
    font-size: 1rem;
    line-height: 1.3;
    opacity: 0.95;
}

/* Efeito de brilho nos cards */
.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Features */
.features {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    background-color: var(--white);
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Montar Marmita Page */
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.step-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    font-size: 18px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    position: relative;
}

.option-card:hover {
    border-color: var(--accent-color);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-card.selected {
    border-color: var(--secondary-color);
    background-color: #E8F5E9;
}

.option-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.option-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.option-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.option-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.total-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 5%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.bottom-spacer {
    height: 120px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 1rem;
}

.modal-header h2 {
    color: var(--primary-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.summary-item strong {
    color: var(--text-color);
}

.summary-item span {
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cancel {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #ddd;
    background: transparent;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #f5f5f5;
    color: #333;
}

.btn-confirm {
    flex: 1;
    padding: 0.8rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-confirm:hover {
    background: #2E7D32;
    transform: scale(1.02);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Checkout / Pagamento Styles */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.card-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.input-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #555;
}

.input-group input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: var(--secondary-color);
}

.row {
    display: flex;
    gap: 1rem;
}

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

.payment-card {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.payment-card:hover {
    border-color: var(--accent-color);
}

.payment-card input {
    display: none;
}

.payment-card:has(input:checked) {
    border-color: var(--secondary-color);
    background-color: #E8F5E9;
}

.payment-card .icon {
    font-size: 1.5rem;
    margin: 0;
}

.sticky-summary {
    position: sticky;
    top: 100px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px dashed #eee;
    font-weight: bold;
    font-size: 1.2rem;
}

.final-price {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.full-width {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Landing Page Sections */
.section-title-center {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Menu Preview */
.menu-preview {
    padding: 4rem 5%;
    background-color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.menu-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.menu-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.menu-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-small:hover {
    background-color: #2E7D32;
}

/* How it Works */
.how-it-works {
    padding: 4rem 5%;
    background-color: #FFF8E1;
    /* Amarelo bem clarinho */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-item {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Features Grid Fix */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 5%;
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card span {
    font-weight: bold;
    color: var(--primary-color);
}

/* Final CTA */
.final-cta {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #E65100 0%, #FF6D00 100%);
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.large:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Reseller Banner */
.reseller-banner {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    padding: 3rem 5%;
    margin: 2rem 5%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.reseller-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.reseller-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.reseller-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    border: 2px solid white;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
    background-color: #128C7E;
}

@media (min-width: 768px) {
    .reseller-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 0 2rem;
    }

    .reseller-text p {
        margin: 0;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.8rem 5%;
    }

    .header-cart {
        display: block;
    }

    .back-link {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-video-container {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1/1;
        margin-bottom: 2rem;
    }

    .hero-benefits {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        width: 100%;
    }

    .hero-benefits::-webkit-scrollbar {
        display: none;
    }

    .benefit-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .promo-banner {
        margin: 0 5% 2rem 5%;
    }

    .total-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    .total-bar>div:first-child {
        display: flex;
        flex-direction: column;
    }

    .total-bar span {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .buttons-wrapper {
        width: auto;
        flex-direction: row;
    }

    .buttons-wrapper .cta-button.secondary {
        display: none !important;
    }

    .cta-button {
        width: auto;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .bottom-spacer {
        height: 150px;
    }

    /* Mobile Modal Adjustments */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .summary-item {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.2rem;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 0.5rem;
    }

    .summary-item strong {
        color: var(--primary-color);
    }

    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-cancel,
    .btn-confirm {
        width: 100%;
        padding: 1rem;
    }

    /* Checkout Mobile */
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .summary-section {
        order: -1;
        /* Resumo aparece primeiro no mobile */
    }

    .sticky-summary {
        position: static;
    }

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

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

    .option-card h3 {
        font-size: 18px;
    }
}