/* =========================================
   Base & Reset
   ========================================= */
:root {
    --primary-yellow: #FFC107;
    --primary-yellow-hover: #e0a800;
    --dark-blue: #0F2B3C;
    --navy-blue: #0A182F;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;

    /* Brand Colors */
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1EBE5C;
    --telegram-color: #0088cc;
    --telegram-hover: #0077B5;
    --instagram-color: #E1306C;
    --instagram-hover: #C13584;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    padding-top: 70px;
    /* For fixed header */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =========================================
   Typography & Utilities
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-yellow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 12px;
}

.btn-instagram-header {
    background-color: #0A182F;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(10, 24, 47, 0.15);
}

.btn-instagram-header i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.15rem;
}

.btn-instagram-header:hover {
    background-color: #122543;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 24, 47, 0.25);
    color: #FFFFFF;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.logo-header {
    scale: 1.5;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1F2937;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #D97706;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-blue);
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-nav-cta {
    display: none;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: 40px 0 50px;
    background: #FFFFFF;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Background Curve behind mascot */
.hero-bg-curve {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
}

.hero-bg-curve-back {
    z-index: 1;
}

.hero-bg-curve-front {
    z-index: 6;
}

.curve-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-content {
    flex: 1;
    max-width: 530px;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background-color: #0A182F;
    color: #FFB703;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(10, 24, 47, 0.12);
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    color: #0A182F;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.02rem;
    color: #4B5563;
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 460px;
}

/* Hero Modern CTA Buttons */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-buttons-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

.btn-modern .btn-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.btn-modern .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-modern .btn-text .primary {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.btn-modern .btn-text .secondary {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    margin-top: 2px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(180deg, #28d06c 0%, #16a34a 100%);
    box-shadow: 0 8px 22px -3px rgba(37, 211, 102, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(180deg, #2ee076 0%, #159343 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -2px rgba(37, 211, 102, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Telegram Button */
.btn-telegram {
    background: linear-gradient(180deg, #0299f4 0%, #0077b5 100%);
    box-shadow: 0 8px 22px -3px rgba(2, 153, 244, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-telegram:hover {
    background: linear-gradient(180deg, #1aa6fc 0%, #006da7 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -2px rgba(2, 153, 244, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Hero Instagram Pill */
.hero-instagram-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    padding: 10px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    color: #1E293B;
    transition: all 0.25s ease;
    width: fit-content;
    max-width: 320px;
}

.instagram-icon-box {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-pill-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: #1E293B;
}

.instagram-pill-text strong {
    font-weight: 700;
}

.instagram-pill-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    color: #94A3B8;
    transition: transform 0.2s ease;
}

.hero-instagram-pill:hover {
    border-color: #CBD5E1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.hero-instagram-pill:hover .instagram-pill-arrow {
    transform: translateX(4px);
    color: #475569;
}

/* =========================================
   Hero Image & Anchored Scene
   ========================================= */
.hero-image-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
    z-index: 2;
}

.hero-scene {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Halftone dot pattern in background */
.scene-halftone {
    position: absolute;
    top: 5%;
    right: 8%;
    width: 260px;
    height: 260px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.28) 2px, transparent 2.5px);
    background-size: 14px 14px;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

/* Sparkles */
.scene-sparkle {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.sparkle-1 {
    top: 10%;
    left: 28%;
    animation: sparkleGlow 3s infinite ease-in-out;
}

.sparkle-2 {
    top: 18%;
    right: 18%;
    animation: sparkleGlow 3s infinite ease-in-out 1.5s;
}

.sparkle-3 {
    bottom: 38%;
    right: 6%;
    animation: sparkleGlow 2.5s infinite ease-in-out 0.8s;
}

@keyframes sparkleGlow {

    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
        filter: drop-shadow(0 0 6px rgba(255, 183, 3, 0.8));
    }
}

/* Yellow Discount Tag Top Right */
.scene-discount-tag {
    position: absolute;
    top: 12%;
    right: 6%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(14deg);
    animation: tagSway 4s ease-in-out infinite;
}

.tag-string {
    width: 2px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: -2px;
}

.tag-body {
    background: #FFB703;
    width: 48px;
    height: 60px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0% 100%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    position: relative;
}

.tag-body::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #0A182F;
    border-radius: 50%;
}

.tag-percent {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes tagSway {

    0%,
    100% {
        transform: rotate(14deg);
    }

    50% {
        transform: rotate(6deg) translateY(-4px);
    }
}

/* Dark "Oferta Especial" Badge */
.scene-special-badge {
    position: absolute;
    top: 36%;
    right: 2%;
    z-index: 8;
    background: #0A182F;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    animation: badgeFloat 4s ease-in-out infinite 0.6s;
}

.scene-special-badge i {
    color: #FFB703;
    font-size: 0.85rem;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Scene Cart (Left side behind actor) */
.scene-cart {
    position: absolute;
    bottom: 12%;
    left: -15px;
    z-index: 3;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
    animation: cartFloat 5s ease-in-out infinite;
}

@keyframes cartFloat {

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

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

/* Scene Gifts & Bags (Right side behind actor) */
.scene-gifts {
    position: absolute;
    bottom: 10%;
    right: -10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.gift-bag {
    margin-bottom: -15px;
    margin-right: 15px;
}

/* Main Mascot Actor Image */
.mascot-img {
    position: relative;
    bottom: 10px;
    z-index: 5;
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

/* =========================================
   "Como funciona?" Section
   ========================================= */
.como-funciona {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header {
    margin-bottom: 50px;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.step-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.step-card:first-child .step-image img {
    transform: scale(1.25);
    transform-origin: bottom center;
}

.step-badge {
    width: 40px;
    height: 40px;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    min-height: 60px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-arrow {
    color: #ddd;
    font-size: 2rem;
    flex-shrink: 0;
}

/* =========================================
   "Ofertas do seu jeito" Section
   ========================================= */
.ofertas-jeito {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--bg-white);
}

.text-white {
    color: var(--bg-white) !important;
}

.section-subtitle {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-top: 15px;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-img-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-img-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.category-card h4 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.category-card p {
    color: #e2e8f0;
    font-size: 0.95rem;
}

/* =========================================
   Benefícios Section
   ========================================= */
.beneficios {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid #eee;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    color: var(--dark-blue);
    background-color: var(--primary-yellow);
}

.benefit-text h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   CTA Final Section
   ========================================= */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.cta-final h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.cta-final p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.font-weight-bold {
    font-weight: 700;
}

.cta-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-buttons-wrapper .btn {
    width: 100%;
    max-width: 320px;
    justify-content: flex-start;
}

.cta-buttons-wrapper .btn i {
    font-size: 1.8rem;
}

.cta-final-btn-insta {
    justify-content: center !important;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--dark-blue);
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--bg-white) !important;
    margin-bottom: 15px;
}

.footer-logo::after {
    color: var(--primary-yellow) !important;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #a0aec0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #a0aec0;
}

/* =========================================
   RESPONSIVE DESIGN SYSTEM
   ========================================= */

/* --- Tablet / Medium Screen Adjustments (<= 992px) --- */
@media (max-width: 992px) {
    body {
        padding-top: 66px;
    }

    .header {
        padding: 12px 0;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Menu Drawer */
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid #F1F5F9;
        padding: 24px 20px;
        transition: all 0.3s ease;
    }

    .navbar.active {
        display: block;
        animation: slideDownMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

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

    .navbar.active .nav-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-link {
        font-size: 1.05rem;
        font-weight: 600;
        display: block;
        padding: 8px;
    }

    .mobile-nav-cta {
        display: flex;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid #E2E8F0;
    }

    .mobile-nav-cta .btn-instagram-header {
        width: 100%;
        max-width: 280px;
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Como funciona Tablet */
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .step-card h3 {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}

/* --- Mobile Specific: Hide Actor 2 & Streamline Layout (<= 768px) --- */
@media (max-width: 768px) {

    /* REMOVE ACTOR 2 BLOCK AND BACKGROUND CURVES */
    .hero-image-area,
    .hero-bg-curve,
    .hero-bg-curve-back,
    .hero-bg-curve-front {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 50px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 16px;
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .hero-title {
        font-size: 2.15rem;
        line-height: 1.2;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 26px;
        max-width: 90%;
    }

    .hero-ctas {
        width: 100%;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons-row {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .btn-modern {
        flex: 1;
        max-width: 320px;
        min-width: 220px;
    }

    .hero-instagram-pill {
        margin: 4px auto 0;
        width: 100%;
        max-width: 320px;
    }

    /* Como funciona Mobile */
    .como-funciona {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

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

    .step-card {
        padding: 15px 10px;
    }

    .step-image {
        height: 180px;
        margin-bottom: 15px;
    }

    .step-badge {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 0.88rem;
    }

    /* Compact 2x2 Grid for "Ofertas do seu jeito" */
    .ofertas-jeito {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 10px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 30px;
    }

    .category-card {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .card-img-wrapper {
        height: 75px;
        margin-bottom: 12px;
    }

    .category-card h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .category-card p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    /* Compact 2x2 Grid for "Benefícios" */
    .beneficios {
        padding: 50px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .benefit-item {
        background: #FFFFFF;
        padding: 18px 12px;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .benefit-text h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .benefit-text p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    /* CTA Final */
    .cta-final {
        padding: 60px 0;
    }

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

    .cta-final p {
        font-size: 0.98rem;
        margin-bottom: 30px;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons-wrapper .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* --- Extra Small Screens (<= 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.3px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .hero-buttons-row {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 11px 16px;
    }

    .btn-modern .btn-icon-circle {
        font-size: 1.7rem;
    }

    .btn-modern .btn-text .primary {
        font-size: 0.9rem;
    }

    .btn-modern .btn-text .secondary {
        font-size: 0.68rem;
    }

    .hero-instagram-pill {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        padding: 9px 14px;
    }

    .instagram-pill-text {
        font-size: 0.8rem;
    }

    .como-funciona,
    .ofertas-jeito,
    .beneficios,
    .cta-final {
        padding: 45px 0;
    }

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

    .step-image {
        height: 150px;
    }

    .category-grid {
        gap: 10px;
    }

    .category-card {
        padding: 14px 8px;
    }

    .card-img-wrapper {
        height: 55px;
        margin-bottom: 8px;
    }

    .category-card h4 {
        font-size: 0.85rem;
    }

    .category-card p {
        font-size: 0.72rem;
    }

    .benefits-grid {
        gap: 10px;
    }

    .benefit-item {
        padding: 14px 8px;
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .benefit-text h4 {
        font-size: 0.88rem;
    }

    .benefit-text p {
        font-size: 0.72rem;
    }

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

    .cta-buttons-wrapper .btn {
        max-width: 100%;
    }
}