/* ===========================
   RESET E CONFIGURAÇÕES BASE
   =========================== */

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

:root {
    /* Cores */
    --primary: #ff2955;
    --secondary: #00d4ff;
    --dark: #000;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.7);
    --gray-dark: #666666;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #ff2955 0%, #ff4757 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #3742fa 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    /* Sombras */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Espaço para a navbar fixa */
}

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

/* ===============
   TIPOGRAFIA
   =============== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

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

/* ================
   BOTÕES GLOBAIS
   ================ */

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

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

.btn-form {
    background: var(--gradient-secondary);
    color: var(--white);
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px 30px;
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* ==========
   HEADER
   ========== */

.header {
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo .logo-bmb {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-right: 8px;
}

.logo .logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MEDIA QUERIES PARA HEADER E NAVEGAÇÃO */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 0 !important;
    }
    
    .logo-img {
        height: 50px !important;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 15px 30px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 41, 85, 0.2);
        color: var(--primary);
    }
    
    /* FORÇAR VISIBILIDADE DO HAMBURGER */
    .mobile-menu-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .btn-whatsapp {
        display: none !important; /* Esconder botão WhatsApp do header no mobile */
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* GARANTIR HAMBURGER MENOR AINDA */
    .mobile-menu-btn {
        display: flex !important;
        padding: 6px !important;
    }
    
    .mobile-menu-btn span {
        width: 22px !important;
        height: 2px !important;
    }
}

/* ==========
   HERO
   ========== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--dark) 0%,
        rgba(255, 41, 85, 0.1) 100%);
    overflow: hidden;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 41, 85, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 41, 85, 0.15) 0%, transparent 40%);
    animation: gradientMove 10s ease-in-out infinite alternate;
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 15s infinite;
    opacity: 0.3;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 50%; left: 15%; animation-delay: 4s; }
.particle:nth-child(4) { top: 70%; left: 85%; animation-delay: 6s; }
.particle:nth-child(5) { top: 80%; left: 30%; animation-delay: 8s; }
.particle:nth-child(6) { top: 15%; left: 70%; animation-delay: 10s; }
.particle:nth-child(7) { top: 60%; left: 60%; animation-delay: 12s; }
.particle:nth-child(8) { top: 75%; left: 20%; animation-delay: 14s; }
.particle:nth-child(9) { top: 25%; left: 85%; animation-delay: 16s; }
.particle:nth-child(10) { top: 85%; left: 75%; animation-delay: 18s; }

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-title span {
    display: inline-block;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 41, 85, 0.3);
}

.highlight::before {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: 6px;
    bottom: 4px;
    left: -2px;
    background: rgba(255, 41, 85, 0.2);
    transform: skewX(-10deg);
    z-index: -1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin: 2rem auto;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

/* Glow Effect */
.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,41,85,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow-1 { top: -150px; right: -150px; }
.glow-2 { bottom: -150px; left: -150px; }

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0.8rem;
    }

    .particle {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0.6rem;
    }
}

/* =============
   CLIENTES
   ============= */

.clientes {
    background: var(--dark);
    padding: 100px 0;
    border-top: 2px solid rgba(255, 41, 85, 0.2);
}

.clientes h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.carousel-container {
    overflow: hidden;
    padding: 90px 0 80px 0;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 41, 85, 0.05));
    margin: 0 20px;
}

.carousel {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    padding: 0 30px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.cliente-logo {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    background: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.cliente-logo:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 18px 50px rgba(255, 41, 85, 0.3);
}

.cliente-logo img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    filter: brightness(1.1);
    display: block;
}

/* ==========
   SOBRE
   ========== */

.about {
    padding: 80px 0;
    background: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--gray);
    margin: 0;
}

.chart-container {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    height: 350px !important;
    width: 100% !important;
    max-height: 350px !important;
    min-height: 350px !important;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chart-container h4 {
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

#growth-chart {
    max-width: 100% !important;
    max-height: 280px !important;
    width: 100% !important;
    height: 280px !important;
    margin: 0 auto;
}

/* =============
   PROCESSO
   ============= */

.process {
    padding: 80px 0;
    background: var(--dark);
}

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

.step {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--primary);
}

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

.step h3 {
    margin-bottom: 15px;
    color: var(--white);
}

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

/* =============
   RESULTADOS
   ============= */

.results {
    padding: 80px 0;
    background: var(--dark-light);
}

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

.result-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 41, 85, 0.05);
}

.result-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.result-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
}

/* =============
   CTA FINAL
   ============= */

.final-cta {
    padding: 80px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========
   FOOTER
   ========== */

.footer {
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, #000 100%);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff2955, transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,41,85,0.1) 0%, transparent 70%);
    z-index: -1;
}

.footer-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255,41,85,0.3));
}

.footer-social {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff2955, #ff4757);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 50%;
}

.footer-social a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 41, 85, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

/* Cores específicas para cada rede social no hover */
.footer-social a:nth-child(1):hover::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.footer-social a:nth-child(2):hover::before {
    background: #25D366;
}

.footer-social a:nth-child(3):hover::before {
    background: linear-gradient(135deg, #ff2955, #ff4757);
}

.footer-copy {
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    padding-top: 2rem;
    width: 100%;
}

.footer-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff2955, transparent);
}

.footer-copy p {
    transition: all 0.3s ease;
}

.footer-copy p:hover {
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-logo img {
        height: 35px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-social {
        gap: 1.5rem;
    }

    .footer-social a {
        font-size: 1.5rem;
    }
}

/* ==================
   WHATSAPP FLOAT
   ================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ========================================
   POPUP DE RETENÇÃO
   ======================================== */


.btn-popup-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-popup-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.btn-popup-whatsapp i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-popup-close {
    background: transparent;
    color: #999999;
    border: 1px solid rgba(153, 153, 153, 0.3);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-popup-close:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsividade do Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 20px 20px 15px;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .popup-header h2 {
        font-size: 1.8rem;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-body h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .urgency-box {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .urgency-box h4 {
        font-size: 1.1rem;
    }
    
    .value-proposition {
        flex-direction: column;
        gap: 10px;
    }
    
    .new-price {
        font-size: 1.3rem;
    }
    
    .popup-actions {
        padding: 0 20px 20px;
    }
    
    .btn-popup-whatsapp {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .growth-item {
        padding: 20px;
        gap: 15px;
    }
    
    .growth-icon {
        font-size: 36px;
        min-width: 45px;
    }
    
    .growth-stats {
        gap: 15px;
    }
    
    .stat-popup {
        padding: 15px;
        min-width: 100px;
    }
    
    .stat-popup .number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .popup-content {
        border-radius: 15px;
    }
    
    .popup-header h2 {
        font-size: 1.6rem;
    }
    
    .popup-subtitle {
        font-size: 1rem;
    }
    
    .growth-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    
    .growth-icon {
        font-size: 32px;
    }
    
    .growth-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-popup .number {
        font-size: 1.4rem;
    }
    
    .btn-popup-whatsapp {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
}

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

/* =============================================
   CORREÇÕES ESPECÍFICAS PARA DISPOSITIVOS iOS
   ============================================= */

/* Safe Areas para iPhone com notch */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Específico para iPhone 14 (390px x 844px) */
@media only screen 
    and (device-width: 390px) 
    and (device-height: 844px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .hero-content {
        padding-top: 120px !important;
        min-height: calc(100vh - 120px) !important;
    }
    
    .hero-left h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-stats {
        margin: 25px 0 !important;
    }
    
    .stat {
        min-width: 90px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .hero-form {
        padding: 25px !important;
        margin-top: 30px !important;
    }
}

/* Específico para iPhone 14 Pro (393px x 852px) */
@media only screen 
    and (device-width: 393px) 
    and (device-height: 852px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .hero-content {
        padding-top: 125px !important;
        min-height: calc(100vh - 125px) !important;
    }
    
    .hero-left h1 {
        font-size: 2.3rem !important;
    }
}

/* Específico para iPhone 14 Plus (428px x 926px) */
@media only screen 
    and (device-width: 428px) 
    and (device-height: 926px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .hero-content {
        padding-top: 110px !important;
    }
    
    .hero-left h1 {
        font-size: 2.5rem !important;
    }
}

/* Correções específicas para WebKit/Safari */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    /* Fontes mais nítidas */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Inputs com melhor aparência */
    input,
    textarea,
    button {
        -webkit-appearance: none;
        border-radius: 10px;
    }
    
    /* Scroll suave para iOS */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Correções específicas para WebKit/Safari */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    /* Fontes mais nítidas */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Inputs com melhor aparência */
    input,
    textarea,
    button {
        -webkit-appearance: none;
        border-radius: 10px;
    }
    
    /* Scroll suave para iOS */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* MEDIA QUERIES COMPLEMENTARES PARA OUTRAS SEÇÕES */
@media (max-width: 768px) {
    /* About Section */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    .about-left .section-title {
        text-align: center !important;
    }
    
    .about-features {
        gap: 25px !important;
    }
    
    .feature {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .chart-container {
        height: 300px !important;
        padding: 25px 15px !important;
    }
    
    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .step {
        padding: 25px 20px !important;
    }
    
    /* Results Section */
    .results-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .result-card {
        padding: 30px 15px !important;
    }
    
    .result-number {
        font-size: 3rem !important;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .footer-info {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    /* Seções com melhor espaçamento */
    .about,
    .process,
    .results,
    .final-cta,
    .clientes {
        padding: 50px 0 !important;
    }
    
    /* About */
    .about-features {
        gap: 20px !important;
    }
    
    .feature {
        gap: 10px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 15px !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .feature-icon i {
        font-size: 1.2rem !important;
    }
    
    /* Process */
    .step {
        padding: 20px 15px !important;
    }
    
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Results */
    .results-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .result-card {
        padding: 25px 15px !important;
    }
    
    .result-number {
        font-size: 2.5rem !important;
    }
    
    /* CTA Final */
    .cta-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
    
    /* Clientes */
    .clientes h2 {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }
    
    .carousel-container {
        padding: 60px 0 50px 0 !important;
        margin: 0 10px !important;
    }
    
    .cliente-logo {
        width: 150px !important;
        height: 100px !important;
        padding: 15px !important;
    }
} 

/* Marketing Challenge Section */
.marketing-challenge {
    background: linear-gradient(180deg, var(--dark) 0%, #1a0a12 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.marketing-challenge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 50%,
        transparent 100%
    );
    opacity: 0.3;
}

.challenge-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.challenge-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray);
    line-height: 1.6;
}

.challenge-question {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.3s;
}

.challenge-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.challenge-card {
    background: rgba(255, 41, 85, 0.02);
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.challenge-card:nth-child(1) { animation: fadeInUp 0.8s ease-out forwards 0.4s; }
.challenge-card:nth-child(2) { animation: fadeInUp 0.8s ease-out forwards 0.6s; }
.challenge-card:nth-child(3) { animation: fadeInUp 0.8s ease-out forwards 0.8s; }

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%, 
        rgba(255, 41, 85, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 41, 85, 0.1);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 41, 85, 0.1) 0%, rgba(255, 41, 85, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.card-icon i {
    font-size: 32px;
    color: var(--primary);
    animation: iconPulse 2s infinite;
}

.challenge-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.challenge-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .challenge-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .marketing-challenge {
        padding: 60px 0;
    }

    .challenge-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .challenge-card {
        padding: 30px 20px;
    }

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

    .card-icon i {
        font-size: 24px;
    }
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.99) 100%);
    position: relative;
    overflow: hidden;
}

.problems-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 41, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 41, 85, 0.3);
}

.header-icon i {
    color: #ff2955;
    font-size: 24px;
    animation: pulse 2s infinite;
}

.problems-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
}

.problems-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.main-text .highlight {
    color: #ff2955;
    font-weight: bold;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    background: rgba(255, 41, 85, 0.03);
    border: 1px solid rgba(255, 41, 85, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

.problem-item:nth-child(1) { animation-delay: 0.4s; }
.problem-item:nth-child(2) { animation-delay: 0.6s; }
.problem-item:nth-child(3) { animation-delay: 0.8s; }
.problem-item:nth-child(4) { animation-delay: 1s; }

.problem-item:hover {
    background: rgba(255, 41, 85, 0.08);
    border-color: rgba(255, 41, 85, 0.2);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.problem-icon {
    font-size: 24px;
    color: #ff2955;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Method Section */
.method-section {
    padding: 100px 0;
    background-color: black;
    position: relative;
}

.method-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease forwards;
}

.method-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.method-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.method-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    flex: 1;
    background: rgba(255, 41, 85, 0.03);
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.method-card:nth-child(1) { animation: fadeInUp 0.6s ease forwards 0.2s; }
.method-card:nth-child(2) { animation: fadeInUp 0.6s ease forwards 0.4s; }
.method-card:nth-child(3) { animation: fadeInUp 0.6s ease forwards 0.6s; }

.method-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 41, 85, 0.08);
    border-color: rgba(255, 41, 85, 0.2);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 41, 85, 0.1);
    border: 1px solid rgba(255, 41, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.method-icon i {
    color: #ff2955;
    font-size: 32px;
}

.method-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.method-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .method-cards {
        flex-direction: column;
    }

    .method-card {
        margin-bottom: 20px;
    }
}

/* Diferentials Section */
.diferentials-section {
    padding: 100px 0;
    background-color: black;
    position: relative;
}

.diferentials-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease forwards;
}

.diferentials-header h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    position: relative;
    display: inline-block;
}

.diferentials-header h2::before,
.diferentials-header h2::after {
    content: '"';
    color: #ff2955;
    font-size: 3rem;
    position: absolute;
    opacity: 0.7;
}

.diferentials-header h2::before {
    left: -20px;
    top: -10px;
}

.diferentials-header h2::after {
    right: -20px;
    bottom: -10px;
}

.diferentials-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diferential-item {
    background: rgba(255, 41, 85, 0.03);
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
    transition: all 0.3s ease;
}

.diferential-item:nth-child(1) { animation-delay: 0.2s; }
.diferential-item:nth-child(2) { animation-delay: 0.4s; }
.diferential-item:nth-child(3) { animation-delay: 0.6s; }

.diferential-item:hover {
    transform: translateX(10px);
    background: rgba(255, 41, 85, 0.08);
    border-color: rgba(255, 41, 85, 0.2);
}

.diferential-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 41, 85, 0.1);
    border: 1px solid rgba(255, 41, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferential-icon i {
    color: #ff2955;
    font-size: 24px;
}

.diferential-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .diferentials-header h2 {
        font-size: 2rem;
    }

    .diferential-item {
        padding: 20px;
    }

    .diferential-item p {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: black;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 41, 85, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease forwards;
}

.phone-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 41, 85, 0.1);
    border: 2px solid rgba(255, 41, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transform: rotate(-15deg);
}

.phone-icon i {
    color: #ff2955;
    font-size: 32px;
    animation: shake 2s ease infinite;
}

.contact-header h2 {
    color: white;
    font-size: 3rem;
    margin: 0 0 20px;
    font-weight: 700;
}

.contact-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-icon {
    color: #ff2955;
    font-size: 1.2rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 41, 85, 0.03);
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 41, 85, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff2955;
    background: rgba(255, 41, 85, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: #ff2955;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 41, 85, 0.3);
}

.submit-btn:hover::before {
    transform: translateX(100%);
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@keyframes shake {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-form-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background-color: black;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 41, 85, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.brands-header {
    text-align: center;
    margin-bottom: 60px;
}

.brands-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-line .line {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #ff2955, transparent);
}

.header-line i {
    color: #ff2955;
    font-size: 1.2rem;
}

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

.brand-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.brand-card {
    background: rgba(255, 41, 85, 0.03);
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 41, 85, 0.08);
    border-color: rgba(255, 41, 85, 0.2);
}

.brand-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 41, 85, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-overlay {
    opacity: 1;
}

.brand-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-name {
    transform: translateY(0);
}

.brands-testimonial {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
    padding: 40px;
    background: rgba(255, 41, 85, 0.03);
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 20px;
    position: relative;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 41, 85, 0.1);
    border: 2px solid rgba(255, 41, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-icon i {
    color: #ff2955;
    font-size: 24px;
}

.testimonial-text {
    color: white;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 20px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    color: #ff2955;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .brands-header h2 {
        font-size: 2rem;
    }

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

    .brand-card {
        height: 120px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

/* Brands Slider */
.brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: black;
}

.brands-track {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.brands-row {
    display: flex;
    animation: slideLeft 30s linear infinite;
    gap: 60px;
}

.brands-row.reverse {
    animation: slideRight 30s linear infinite;
}

.brand-slide {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    padding: 20px;
    background: black;
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 41, 85, 0.3);
    box-shadow: 0 5px 15px rgba(255, 41, 85, 0.1);
}

.brand-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.brand-slide:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Gradientes nas bordas para fade suave */
.brands-slider::before,
.brands-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.brands-slider::before {
    left: 0;
    background: linear-gradient(90deg, black, transparent);
}

.brands-slider::after {
    right: 0;
    background: linear-gradient(-90deg, black, transparent);
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Pause na animação no hover */
.brands-row:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .brands-slider {
        padding: 30px 0;
    }

    .brand-slide {
        width: 140px;
        height: 80px;
        padding: 15px;
    }

    .brands-track {
        gap: 40px;
    }

    .brands-row {
        gap: 40px;
    }
}

.brand-slide {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    padding: 25px;
    background: black;
    border: 1px solid rgba(255, 41, 85, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 41, 85, 0.3);
    box-shadow: 0 5px 15px rgba(255, 41, 85, 0.1);
}

.brand-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.brand-slide:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Ajuste nos espaçamentos */
.brands-track {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 20px 0;
}

.brands-row {
    display: flex;
    animation: slideLeft 30s linear infinite;
    gap: 80px;
}

@media (max-width: 768px) {
    .brand-slide {
        width: 180px;
        height: 100px;
        padding: 20px;
    }

    .brands-track {
        gap: 60px;
    }

    .brands-row {
        gap: 60px;
    }
}

/* Footer */
footer {
    background-color: #000;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-social a {
    color: #ff2955;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: scale(1.1);
}

.footer-copy {
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Navbar */
nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 41, 85, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 41, 85, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.nav-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-cta {
    background: linear-gradient(45deg, var(--primary), #ff4d75);
    color: var(--light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 41, 85, 0.3);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 55px;
    }

    .nav-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Contact Form */
.contact {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(0,0,0,0.98) 100%);
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    left: 0.8rem;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    background: var(--dark);
    border-radius: 4px;
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, var(--primary), #ff4d75);
    border: none;
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 41, 85, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .form-group input {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}