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

body {
    font-family: 'Sora', sans-serif;
    background: white;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* ==========================================
   ANIMATION EFFECTS
   ========================================== */

/* Elements start hidden and slide up on scroll */
.animate-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Header scroll effect */
.header {
    transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.header-scrolled {
    background: rgba(26, 40, 52, 0.95) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    top: 20px !important;
}

/* Button hover effects */
.cta-button,
.hero-cta,
.quem-somos-cta,
.cta-final-button,
.plano-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button::before,
.hero-cta::before,
.quem-somos-cta::before,
.cta-final-button::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.5s ease;
}

.cta-button:hover::before,
.hero-cta:hover::before,
.quem-somos-cta:hover::before,
.cta-final-button:hover::before {
    left: 100%;
}

/* Card hover effects */
.entrega-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s ease;
}

.entrega-card:hover {
    transform: scale(1.02);
}

.entrega-card.blue:hover {
    box-shadow: 0 15px 40px rgba(10, 62, 152, 0.35);
}

.entrega-card.white:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Stacking cards effect on scroll */
.entregas-list .entrega-card {
    position: sticky;
}

.entregas-list .entrega-card:nth-child(1) {
    top: 100px;
    z-index: 1;
}

.entregas-list .entrega-card:nth-child(2) {
    top: 115px;
    z-index: 2;
}

.entregas-list .entrega-card:nth-child(3) {
    top: 130px;
    z-index: 3;
}

.entregas-list .entrega-card:nth-child(4) {
    top: 145px;
    z-index: 4;
}

.entregas-list .entrega-card:nth-child(5) {
    top: 160px;
    z-index: 5;
}

/* Diferencial cards hover */
.diferencial-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s ease;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 62, 152, 0.2);
}

/* Depoimento cards hover */
.depoimento-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Plano cards hover */
.plano-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s ease;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.plano-card.premium:hover {
    box-shadow: 0 25px 60px rgba(10, 62, 152, 0.4);
}

/* Navigation links hover effect */
nav a {
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0A3E98;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Social icons hover */
.social-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image hover effects */
.entregas-image-frame,
.quem-somos-video-frame {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s ease;
}

.entregas-image-frame:hover,
.quem-somos-video-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(10, 62, 152, 0.35);
}

/* WhatsApp mockup hover */
.whatsapp-mockup {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s ease;
}

.whatsapp-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Pulse animation for CTAs */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0px 4px 20px rgba(10, 62, 152, 0.4);
    }
    50% {
        box-shadow: 0px 4px 35px rgba(10, 62, 152, 0.6);
    }
}

.hero-cta {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Logo hover */
.logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Badge entrance animation */
.macbook-container .badge {
    opacity: 0;
    animation-fill-mode: forwards;
}

.macbook-container .badge-roi {
    animation: badge-entrance 0.8s ease-out 0.5s forwards, float-1 3s ease-in-out 1.3s infinite;
}

.macbook-container .badge-alcance {
    animation: badge-entrance 0.8s ease-out 0.7s forwards, float-2 3.5s ease-in-out 1.5s infinite;
}

.macbook-container .badge-vendas {
    animation: badge-entrance 0.8s ease-out 0.9s forwards, float-3 4s ease-in-out 1.7s infinite;
}

@keyframes badge-entrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Smooth text selection */
::selection {
    background: rgba(10, 62, 152, 0.3);
    color: inherit;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #0A3E98;
    outline-offset: 3px;
}

/* ==========================================
   END ANIMATION EFFECTS
   ========================================== */

.container {
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    position: relative;
    background: white;
    overflow-x: hidden;
    margin: 0 auto;
}

/* Header/Navigation */
.header {
    width: min(1280px, 90%);
    height: 70px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    background: rgba(26, 40, 52, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
}

.logo {
    width: 141px;
    height: 41px;
    position: relative;
    left: auto;
    top: auto;
    z-index: 15;
}

.menu-icon {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 20;
}



nav {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-family: 'Sora';
    font-weight: 400;
    text-transform: uppercase;
    line-height: 19.5px;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:first-child {
    color: white;
    font-weight: 600;
}

nav a:hover {
    color: white;
}

.cta-button {
    width: auto;
    max-width: 271px;
    padding: 12px 24px;
    position: relative;
    right: auto;
    top: auto;
    background: #0A3E98;
    box-shadow: 0px 4px 20px rgba(10, 62, 152, 0.4);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 25px rgba(10, 62, 152, 0.5);
}

.cta-button span {
    width: auto;
    color: white;
    font-size: 12px;
    font-family: 'Sora';
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

/* Hero Section */
.hero-bg-1 {
    width: 100%;
    height: 100vh;
    min-height: 850px;
    max-height: 950px;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-2 {
    width: 100%;
    height: 100vh;
    min-height: 850px;
    max-height: 950px;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-image {
    width: 100%;
    max-width: 1700px;
    height: 850px;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(199deg, rgba(14, 12, 15, 0) 0%, #0E0C0F 100%);
}

.hero-glow-1 {
    width: 1156.21px;
    height: 544.32px;
    position: absolute;
    left: 919.39px;
    top: 316px;
    opacity: 0.6;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(21.5, 99.82, 235.38, 0.4) 0%, rgba(10, 62, 152, 0.4) 60%);
    box-shadow: 326.61px 326.61px 326.61px;
    border-radius: 9999px;
    filter: blur(163.31px);
}

.hero-glow-2 {
    width: 1156.21px;
    height: 544.32px;
    position: absolute;
    left: -266.6px;
    top: -203.84px;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(21.5, 99.82, 235.38, 0.4) 0%, rgba(10, 62, 152, 0.4) 60%);
    box-shadow: 326.61px 326.61px 326.61px;
    border-radius: 9999px;
    filter: blur(163.31px);
}

.hero-content {
    width: min(629px, 90%);
    position: absolute;
    left: max(100px, 5%);
    top: 220px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 10;
}



.hero-title {
    width: 100%;
    color: white;
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Sora';
    font-weight: 600;
    line-height: 1.2;
}

.hero-title .highlight {
    color: white;
    background: rgba(10, 62, 152, 0.4);
    padding: 2px 12px;
    border-radius: 6px;
    border: 1px solid rgba(91, 155, 213, 0.6);
    display: inline;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 2vw, 18px);
    font-family: 'Sora';
    font-weight: 300;
    line-height: 1.6;
    max-width: 90%;
    padding-top: 24px;
}

.hero-cta {
    padding: 18px 40px;
    background: #0A3E98;
    box-shadow: 0px 4px 20px rgba(10, 62, 152, 0.4);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-family: 'Sora';
    font-weight: 600;
    display: inline-flex;
    align-self: flex-start;
    transition: all 0.3s;
    text-transform: uppercase;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 25px rgba(10, 62, 152, 0.5);
}

/* Stats badges */
/* Stats badges */
.badge {
    padding: 12px 20px;
    position: absolute;
    background: rgba(26, 40, 52, 0.85);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.badge span {
    color: #F9F9F9;
    font-size: 14px;
    font-family: 'Sora';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-arrow {
    flex-shrink: 0;
}

/* Badge positions relative to macbook container */
.badge-roi {
    left: -60px;
    top: 80px;
}

.badge-alcance {
    right: -30px;
    top: 55%;
}

.badge-vendas {
    left: 10%;
    bottom: -20px;
}

/* Floating animations */
@keyframes float-1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

/* Legacy badge positions (keeping for compatibility) */
.badge-1 {
    right: 150px;
    top: 450px;
    left: auto;
}

.badge-2 {
    right: 550px;
    top: 600px;
    left: auto;
}

.badge-3 {
    right: 620px;
    top: 280px;
    left: auto;
    border: 1px rgba(230, 230, 230, 0.1) solid;
    background: transparent;
}



/* MacBook mockup */
.macbook-container {
    height: auto;
    position: absolute;
    right: 0;
    top: 170px;
    z-index: 5;
    display: none;
}

.macbook-container img {
    width: 80%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Badges appear in front of macbook */
.macbook-container .badge {
    z-index: 2;
}

@media (min-width: 1024px) {
    .macbook-container {
        display: block;
        width: 600px;
    }
    
    .badge-roi {
        left: -40px;
        top: 60px;
    }
    
    .badge-alcance {
        right: 80px;
        top: 50%;
    }
    
    .badge-vendas {
        left: 15%;
        bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .macbook-container {
        width: 700px;
    }
    
    .badge-roi {
        left: -50px;
        top: 70px;
    }
    
    .badge-alcance {
        right: 90px;
        top: 55%;
    }
    
    .badge-vendas {
        left: 12%;
        bottom: 20px;
    }
}

@media (min-width: 1400px) {
    .macbook-container {
        width: 700px;
    }
    
    .badge-roi {
        left: -60px;
        top: 80px;
    }
    
    .badge-alcance {
        right: 100px;
        top: 55%;
    }
    
    .badge-vendas {
        left: 10%;
        bottom: 10px;
    }
}

/* Quem Somos section */
.quem-somos-section {
    width: 100%;
    max-width: 1536px;
    min-height: 600px;
    height: auto;
    position: relative;
    margin: max(100vh, 850px) auto 0;
    padding: 80px 5%;
    background: #F5F5F5;
    box-shadow: 0px 0px 25px rgba(26, 40, 52, 0.10);
    border-radius: 54px;
}

.quem-somos-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.quem-somos-left {
    flex: 1;
    max-width: 500px;
}

.quem-somos-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-badge {
    padding: 8px 20px;
    background: rgba(10, 62, 152, 0.5);
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-family: 'Nunito';
    font-weight: 700;
    color: white;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.section-badge-quem-somos {
    margin-bottom: 30px;
}

.quem-somos-title {
    font-size: clamp(28px, 4vw, 40px);
    font-family: 'Raleway';
    font-weight: 600;
    line-height: 1.3;
    color: #4D565D;
    margin-bottom: 25px;
}

.quem-somos-title .highlight {
    color: #0A3E98;
    font-weight: 700;
}

.quem-somos-text {
    font-size: 16px;
    font-family: 'Sora';
    font-weight: 300;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 35px;
}

.quem-somos-cta {
    padding: 18px 40px;
    background: #0A3E98;
    box-shadow: 0px 4px 20px rgba(10, 62, 152, 0.4);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-family: 'Sora';
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.quem-somos-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 25px rgba(10, 62, 152, 0.5);
}

.quem-somos-video-frame {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #0A3E98 0%, #0A1929 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(10, 62, 152, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.quem-somos-video-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(10, 62, 152, 0.5), rgba(59, 130, 246, 0.3));
    border-radius: 26px;
    z-index: -1;
}

.quem-somos-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
}

/* Video Unmute Button */
.video-unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(10, 62, 152, 0.95);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-unmute-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    animation: pulse-unmute 2s ease-in-out infinite;
}

.video-unmute-btn:hover {
    background: #0A3E98;
    transform: translateX(-50%) scale(1.05);
}

.video-unmute-btn svg {
    flex-shrink: 0;
}

@keyframes pulse-unmute {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(10, 62, 152, 0.6);
    }
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a3a6e 0%, #0A1929 100%);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(10, 62, 152, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 40px;
}

.play-button:hover {
    background: #0A3E98;
    transform: scale(1.1);
}

.video-text {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    font-family: 'Sora';
    font-weight: 600;
    line-height: 1.3;
}

.video-text .arrow {
    color: #0A3E98;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 18px;
}



/* Nossas Entregas section */
.entregas-section {
    position: relative;
    width: 100%;
    max-width: 1536px;
    margin: 80px auto 0;
    padding: 80px 5%;
    background: #F5F5F5;
    border-radius: 54px;
}

.entregas-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.entregas-left {
    flex: 1;
    max-width: 550px;
}

.entregas-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.entregas-title {
    font-size: clamp(28px, 4vw, 40px);
    font-family: 'Raleway';
    font-weight: 600;
    line-height: 1.2;
    color: #4D565D;
    margin: 30px 0 40px;
}

.entregas-title .highlight {
    color: #0A3E98;
}

.entregas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.entrega-card {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    border-radius: 12px;
    gap: 16px;
    transition: all 0.3s ease;
}

.entrega-card.blue {
    background: #0A3E98;
    box-shadow: 0 8px 30px rgba(10, 62, 152, 0.4);
}

.entrega-card.white {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.entrega-check-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(10, 62, 152, 0.15);
}

.entrega-check-icon.light {
    background: rgba(10, 62, 152, 0.1);
    box-shadow: none;
}

.entrega-text-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.entrega-card.blue .entrega-title-text {
    color: white;
    font-size: 18px;
    font-family: 'Nunito';
    font-weight: 700;
    line-height: 1.3;
}

.entrega-card.white .entrega-title-text {
    color: #1a1a1a;
    font-size: 18px;
    font-family: 'Nunito';
    font-weight: 700;
    line-height: 1.3;
}

.entrega-card.blue .entrega-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-family: 'Nunito';
    font-weight: 400;
    line-height: 1.5;
}

.entrega-card.white .entrega-description {
    color: #6B7280;
    font-size: 14px;
    font-family: 'Nunito';
    font-weight: 400;
    line-height: 1.5;
}

.entregas-image-frame {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 62, 152, 0.2);
}

.entregas-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



/* Nosso Diferencial section */
.diferencial-section {
    width: 100%;
    position: relative;
    margin-top: 80px;
    background: #0A1929;
    padding: 80px 5%;
    overflow: hidden;
}

.diferencial-glow-1 {
    width: 1200px;
    height: 1200px;
    position: absolute;
    left: -400px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    background: radial-gradient(circle, #0A3E98 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.diferencial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-left {
    flex: 1;
}

.diferencial-right {
    flex: 1;
    max-width: 500px;
}

.diferencial-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    margin-bottom: 30px;
}

.diferencial-title {
    font-size: clamp(28px, 4vw, 42px);
    font-family: 'Raleway';
    font-weight: 500;
    line-height: 1.2;
    color: white;
}

.diferencial-title .highlight {
    color: #5B9BD5;
    font-weight: 600;
}

.diferencial-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.diferencial-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.diferencial-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: rgba(10, 62, 152, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-text {
    color: #4D565D;
    font-size: 14px;
    font-family: 'Sora';
    font-weight: 400;
    line-height: 1.3;
}



/* Depoimentos section */
/* Depoimentos Section */
.depoimentos-section {
    width: 100%;
    position: relative;
    background: #D6E4F0;
    padding: 80px 5% 60px;
    overflow: hidden;
}

.depoimentos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 60px;
    gap: 40px;
}

.depoimentos-header-left {
    flex: 1;
}

.depoimentos-header-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 10px;
}

.depoimentos-title {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #414141;
    margin-top: 20px;
}

.depoimentos-title .highlight {
    color: #0A3E98;
}

.depoimentos-subtitle {
    color: rgba(65, 65, 65, 0.8);
    font-size: clamp(14px, 1.5vw, 16px);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: right;
    max-width: 400px;
}

.depoimentos-cards {
    display: flex;
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.depoimentos-track {
    display: flex;
    gap: 30px;
    animation: depoimentos-scroll 12s linear infinite;
}

@keyframes depoimentos-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.depoimentos-cards:hover .depoimentos-track {
    animation-play-state: paused;
}

.depoimento-card {
    width: 420px;
    min-width: 420px;
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.depoimento-avatar {
    width: 56px;
    height: 56px;
    background: #1A2834;
    border-radius: 50%;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.avatar-fallback {
    color: white;
    font-size: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-align: center;
}

.depoimento-avatar img + .avatar-fallback {
    position: absolute;
}

.depoimento-text {
    color: #333;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 24px;
}

.depoimento-author {
    color: #1A2834;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.depoimento-company {
    color: #666;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.pagination-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #1A2834;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.dot.inactive {
    opacity: 0.25;
}

/* Parceiros section */
/* Parceiros Section */
.parceiros-section {
    width: 100%;
    position: relative;
    margin-top: 0;
    background: #1B2A3A;
    padding: 80px 0;
    overflow: hidden;
}

.parceiros-header {
    padding: 0 5%;
    margin-bottom: 60px;
}

.parceiros-title {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-top: 20px;
}

.parceiros-title .highlight {
    color: #5B9BD5;
}

.parceiros-carousel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.parceiros-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.parceiros-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

/* Animação esquerda → direita */
.row-ltr .parceiros-track {
    animation: scroll-ltr 25s linear infinite;
}

/* Animação direita → esquerda */
.row-rtl .parceiros-track {
    animation: scroll-rtl 25s linear infinite;
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.parceiro-logo {
    width: 140px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.parceiro-logo[src*="18.svg"] {
    filter: none;
}

.parceiro-logo:hover {
    opacity: 1;
}

/* Planos section */
/* Planos Section */
.planos-section {
    position: relative;
    width: 100%;
    padding: 80px 5%;
    background: #F8F9FA;
}

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

.planos-title {
    font-size: clamp(28px, 4vw, 42px);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1A2834;
    margin-top: 20px;
}

.planos-title .highlight {
    color: #0A3E98;
}

.planos-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.planos-header-extra {
    margin-top: 56px;
    margin-bottom: 40px;
    text-align: left;
}

.planos-header-extra .section-badge {
    margin: 0 auto;
}

.planos-cards-extra {
    margin-top: 0;
}

.plano-card {
    width: 100%;
    max-width: 340px;
    background: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    overflow: hidden;
}

.plano-card.premium {
    background: linear-gradient(180deg, #1B2A3A 0%, #0F1A24 100%);
    border: none;
    position: relative;
}

.plano-card.premium .plano-name,
.plano-card.premium .plano-price-value,
.plano-card.premium .plano-price-period,
.plano-card.premium .feature-text {
    color: white;
}

.plano-best-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22C55E;
    color: white;
    font-size: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    line-height: 1.2;
}

.plano-card-header {
    padding: 32px 28px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.plano-icon {
    width: 52px;
    height: 52px;
    background: #0A3E98;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plano-icon.white {
    background: white;
}

.plano-icon svg {
    width: 24px;
    height: 24px;
}

.plano-name {
    text-align: center;
    color: #1A2834;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.plano-essencial-badge {
    background: #0A3E98;
    color: white;
    font-size: 11px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 8px 16px;
    margin: 16px 28px 0;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.plano-price {
    padding: 20px 28px;
    text-align: center;
}

.plano-price-currency {
    color: #1A2834;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    vertical-align: top;
}

.plano-card.premium .plano-price-currency {
    color: white;
}

.plano-price-value {
    color: #1A2834;
    font-size: 42px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1;
}

.plano-price-value.large {
    font-size: 36px;
}

.plano-price-period {
    color: #6B7280;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

.plano-features {
    padding: 0 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.plano-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #0A3E98;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check.white {
    border-color: white;
}

.feature-check svg {
    width: 12px;
    height: 12px;
}

.feature-text {
    flex: 1;
    color: #4B5563;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.plano-cta-container {
    padding: 0 28px 28px;
    margin-top: auto;
}

.plano-cta {
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    border: 1px solid #D1D5DB;
    background: transparent;
    cursor: pointer;
    color: #1A2834;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.plano-cta:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
}

.plano-cta.white {
    background: white;
    border: none;
    color: #1A2834;
}

.plano-cta.white:hover {
    background: #F3F4F6;
}

/* CTA Final section */
/* CTA Final Section */
.cta-final-section {
    width: 100%;
    position: relative;
    padding: 80px 5%;
    background: #F8F9FA;
    overflow: hidden;
}

.cta-final-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.cta-final-left {
    flex: 1;
    max-width: 550px;
}

.cta-final-title {
    font-size: clamp(28px, 4vw, 42px);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1A2834;
    margin-top: 20px;
    margin-bottom: 24px;
}

.cta-final-title .highlight {
    color: #0A3E98;
}

.cta-final-description {
    color: #4B5563;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-final-button {
    padding: 18px 36px;
    background: #0A3E98;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 13px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px rgba(10, 62, 152, 0.3);
}

.cta-final-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 25px rgba(10, 62, 152, 0.4);
}

.cta-final-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    max-width: 500px;
}

.whatsapp-carousel {
    width: 100%;
    overflow: hidden;
}

.whatsapp-track {
    display: flex;
    gap: 30px;
    animation: whatsapp-scroll 15s linear infinite;
}

@keyframes whatsapp-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.whatsapp-carousel:hover .whatsapp-track {
    animation-play-state: paused;
}

.whatsapp-mockup {
    width: 280px;
    min-width: 280px;
    height: 400px;
    background: linear-gradient(180deg, #E8E8E8 0%, #F5F5F5 100%);
    border-radius: 30px;
    padding: 20px 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.whatsapp-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.chat-bubble {
    max-width: 90%;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    position: relative;
}

.chat-bubble.received {
    background: white;
    color: #1A2834;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.sent {
    background: #DCF8C6;
    color: #1A2834;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble p {
    margin: 0 0 4px 0;
}

.chat-bubble p:last-of-type {
    margin-bottom: 0;
}

.chat-time {
    font-size: 10px;
    color: #8696A0;
    display: block;
    text-align: right;
    margin-top: 4px;
}

.blur-text {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    user-select: none;
}



/* Footer */
.footer {
    width: 100%;
    position: relative;
    margin-top: 0;
    background: #1B2A3A;
    padding: 60px 5% 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-container {
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.footer-info-value {
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon i {
    font-size: 20px;
    color: #1B2A3A;
}

.footer-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 50px auto 30px;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}



/* ==========================================
   RESPONSIVE DESIGN - Consolidated Media Queries
   ========================================== */

/* Extra Large screens (1400px+) */
@media (max-width: 1400px) {
    .badge {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .badge-1, .badge-2, .badge-3 {
        display: none;
    }
}

/* Large screens / Small desktop (1024px - 1400px) */
@media (max-width: 1200px) {
    .header {
        width: 95%;
        padding: 15px 20px;
    }
    
    nav {
        gap: 20px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .cta-button {
        padding: 10px 18px;
    }
    
    .cta-button span {
        font-size: 11px;
    }
    
    .hero-content {
        left: 5%;
        width: min(550px, 50%);
    }
    
    .hero-title {
        font-size: clamp(28px, 4vw, 44px);
    }
}

/* Tablet / Medium screens (768px - 1024px) */
@media (max-width: 1024px) {
    /* Header */
    .header {
        width: 95%;
        height: auto;
        min-height: 60px;
        padding: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
        display: none;
    }
    
    .logo {
        order: 1;
    }
    
    .cta-button {
        order: 2;
        display: none;
    }
    
    .menu-icon {
        display: block;
        order: 2;
    }
    
    /* Hero */
    .hero-content {
        left: 5%;
        right: 5%;
        width: 90%;
        top: 180px;
    }
    
    .hero-title {
        font-size: clamp(28px, 5vw, 40px);
    }
    
    .hero-bg-1 {
        min-height: 700px;
    }
    
    /* Sections */
    .quem-somos-content,
    .entregas-content,
    .diferencial-content,
    .cta-final-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quem-somos-left,
    .entregas-left,
    .diferencial-right,
    .cta-final-left {
        max-width: 100%;
    }
    
    .diferencial-content {
        flex-direction: column-reverse;
    }
    
    .diferencial-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .quem-somos-video-frame {
        max-width: 350px;
    }
    
    .entregas-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Planos */
    .planos-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .plano-card {
        width: 100%;
        max-width: 450px;
        margin-bottom: 20px;
    }
    
    /* CTA Final */
    .cta-final-description {
        max-width: 100%;
    }
    
    .cta-final-right {
        justify-content: center;
    }
    
    .mockup-1, .mockup-2 {
        transform: none;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    /* Header */
    .header {
        width: 92%;
        min-height: 60px;
        top: 20px;
        padding: 12px 20px;
    }
    
    .logo {
        width: 100px;
        height: auto;
    }
    
    nav {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }
    
    /* Hero */
    .hero-content {
        width: 90%;
        left: 5%;
        top: 140px;
    }
    
    .hero-title {
        font-size: clamp(24px, 7vw, 36px);
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 16px);
        max-width: 100%;
    }
    
    .hero-cta {
        padding: 16px 32px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-bg-1 {
        min-height: 650px;
        max-height: 750px;
    }
    
    .hero-glow-1, .hero-glow-2 {
        width: 600px;
        height: 300px;
    }
    
    .badge {
        display: none;
    }
    
    /* Sections */
    .quem-somos-section,
    .entregas-section {
        padding: 60px 20px;
        border-radius: 30px;
        margin-top: 600px;
    }
    
    .quem-somos-section {
        margin-top: max(90vh, 650px);
    }
    
    .quem-somos-video-frame {
        max-width: 280px;
    }
    
    .entregas-image-frame {
        max-width: 320px;
    }
    
    .entrega-card {
        padding: 20px;
        position: relative;
        top: auto !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .entregas-list {
        gap: 16px;
    }
    
    .entregas-left {
        padding-bottom: 0;
    }
    
    .entregas-right {
        position: relative;
        top: auto;
    }
    
    .entrega-title-text {
        font-size: 16px !important;
    }
    
    .entrega-description {
        font-size: 13px !important;
    }
    
    /* Diferencial */
    .diferencial-section {
        padding: 60px 20px;
    }
    
    .diferencial-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .diferencial-title {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    /* Depoimentos */
    .depoimentos-section {
        padding: 60px 20px;
    }
    
    .depoimentos-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .depoimentos-header-right {
        justify-content: center;
    }
    
    .depoimentos-subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .depoimentos-cards {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .depoimentos-cards::-webkit-scrollbar {
        display: none;
    }
    
    .depoimentos-track {
        animation: none;
    }
    
    .depoimento-card {
        width: 300px;
        min-width: 300px;
        scroll-snap-align: start;
    }
    
    /* Parceiros */
    .parceiros-section {
        padding: 60px 0;
    }
    
    .parceiros-track {
        gap: 40px;
    }
    
    .parceiro-logo {
        width: 100px;
    }
    
    /* Planos */
    .planos-section {
        padding: 60px 20px;
    }
    
    .planos-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .plano-card {
        max-width: 100%;
    }
    
    /* CTA Final */
    .cta-final-section {
        padding: 60px 20px;
    }
    
    .cta-final-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .cta-final-description {
        font-size: 15px;
    }
    
    .cta-final-button {
        width: 100%;
        text-align: center;
    }
    
    .whatsapp-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .whatsapp-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .whatsapp-track {
        animation: none;
    }
    
    .whatsapp-mockup {
        width: 260px;
        min-width: 260px;
        height: 360px;
        scroll-snap-align: start;
    }
    
    /* Footer */
    .footer {
        padding: 50px 20px 30px;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .footer-logo-container {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    /* Header */
    .header {
        width: 94%;
        top: 15px;
        padding: 10px 15px;
    }
    
    .logo {
        width: 90px;
    }
    
    /* Hero */
    .hero-content {
        top: 120px;
        gap: 25px;
    }
    
    .hero-title {
        font-size: clamp(22px, 8vw, 30px);
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero-cta {
        padding: 18px 28px;
        font-size: 12px;
    }
    
    .hero-bg-1 {
        min-height: 600px;
        max-height: 700px;
    }
    
    /* Section Badges */
    .section-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    /* Quem Somos */
    .quem-somos-section {
        margin-top: max(85vh, 600px);
        padding: 50px 16px;
        border-radius: 24px;
    }
    
    .quem-somos-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .quem-somos-text {
        font-size: 14px;
    }
    
    .quem-somos-cta {
        padding: 16px 28px;
        font-size: 12px;
        width: 100%;
    }
    
    .quem-somos-video-frame {
        max-width: 260px;
    }
    
    /* Entregas */
    .entregas-section {
        margin-top: 60px;
        padding: 50px 16px;
        border-radius: 24px;
    }
    
    .entregas-title {
        font-size: clamp(22px, 6vw, 28px);
        margin: 20px 0 30px;
    }
    
    .entrega-card {
        padding: 16px;
        gap: 12px;
    }
    
    /* Stacking cards mobile adjustment */
    .entregas-list .entrega-card:nth-child(1) { top: 70px; }
    .entregas-list .entrega-card:nth-child(2) { top: 80px; }
    .entregas-list .entrega-card:nth-child(3) { top: 90px; }
    .entregas-list .entrega-card:nth-child(4) { top: 100px; }
    .entregas-list .entrega-card:nth-child(5) { top: 110px; }
    
    .entrega-check-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
    
    .entregas-image-frame {
        max-width: 280px;
    }
    
    /* Diferencial */
    .diferencial-section {
        padding: 50px 16px;
        margin-top: 60px;
    }
    
    .diferencial-cards-grid {
        max-width: 100%;
    }
    
    .diferencial-card {
        padding: 24px 18px;
    }
    
    .diferencial-icon {
        font-size: 26px;
        width: 44px;
        height: 44px;
    }
    
    .diferencial-text {
        font-size: 13px;
    }
    
    .diferencial-title {
        font-size: clamp(20px, 6vw, 26px);
    }
    
    /* Depoimentos */
    .depoimentos-section {
        padding: 50px 16px;
        margin-top: 60px;
    }
    
    .depoimentos-title {
        font-size: clamp(26px, 7vw, 34px);
    }
    
    .depoimento-card {
        padding: 30px 24px;
        width: 280px;
        min-width: 280px;
    }
    
    .depoimento-text {
        font-size: 14px;
    }
    
    /* Parceiros */
    .parceiros-section {
        padding: 50px 0;
    }
    
    .parceiros-header {
        padding: 0 16px;
    }
    
    .parceiros-title {
        font-size: clamp(26px, 7vw, 34px);
    }
    
    .parceiros-track {
        gap: 30px;
    }
    
    .parceiro-logo {
        width: 80px;
    }
    
    /* Planos */
    .planos-section {
        padding: 50px 16px;
        margin-top: 60px;
    }
    
    .planos-header {
        margin-bottom: 40px;
    }
    
    .planos-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .plano-card-header {
        padding: 24px 20px 0;
    }
    
    .plano-icon {
        width: 46px;
        height: 46px;
    }
    
    .plano-name {
        font-size: 16px;
    }
    
    .plano-price {
        padding: 16px 20px;
    }
    
    .plano-price-value {
        font-size: 36px;
    }
    
    .plano-price-value.large {
        font-size: 28px;
    }
    
    .plano-features {
        padding: 0 20px 20px;
        gap: 12px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .plano-cta-container {
        padding: 0 20px 24px;
    }
    
    /* CTA Final */
    .cta-final-section {
        padding: 50px 16px;
        margin-top: 60px;
    }
    
    .cta-final-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .cta-final-description {
        font-size: 14px;
    }
    
    .cta-final-button {
        padding: 16px 28px;
        font-size: 12px;
    }
    
    .cta-final-right {
        max-width: 100%;
    }
    
    .whatsapp-mockup {
        width: 240px;
        min-width: 240px;
        height: 320px;
    }
    
    .chat-bubble {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 16px 25px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-logo-container {
        margin-bottom: 35px;
    }
    
    .footer-info-label {
        font-size: 13px;
    }
    
    .footer-info-value {
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-divider {
        margin: 35px auto 20px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

/* Extra Small screens (less than 360px) */
@media (max-width: 360px) {
    .header {
        padding: 8px 12px;
    }
    
    .logo {
        width: 80px;
    }
    
    .hero-content {
        top: 110px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .quem-somos-section,
    .entregas-section {
        padding: 40px 12px;
    }
    
    .entrega-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .diferencial-card {
        padding: 20px 14px;
    }
    
    .depoimento-card {
        padding: 24px 18px;
        width: 260px;
        min-width: 260px;
    }
    
    .plano-card {
        border-radius: 12px;
    }
    
    .whatsapp-mockup {
        width: 220px;
        min-width: 220px;
        height: 280px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-bg-1 {
        min-height: 500px;
        max-height: 550px;
    }
    
    .hero-content {
        top: 100px;
    }
    
    .quem-somos-section {
        margin-top: max(80vh, 500px);
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg-1 {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .row-ltr .parceiros-track,
    .row-rtl .parceiros-track {
        animation: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-glow-1,
    .hero-glow-2,
    .macbook-container,
    .parceiros-section,
    .cta-final-right {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Garantir que elementos grandes não causem scroll horizontal */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}