/* =========================================
   RESET E BASE - CORRIGIDO
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* =========================================
   TYPOGRAPHY - CORRIGIDO
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

/* =========================================
   BUTTONS - CORRIGIDO
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

/* =========================================
   HEADER - CORRIGIDO PARA MOBILE
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Navigation */
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #d4af37;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* =========================================
   HERO SECTION - CORRIGIDA
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
    min-width: 140px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
    display: block;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-video-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   SECTION HEADER - CORRIGIDO
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   PROBLEMA SECTION - CORRIGIDA
   ========================================= */
.problema {
    padding: 6rem 0;
    background: #ffffff;
    color: #333;
}

.problema .section-title,
.problema .section-subtitle {
    color: #333;
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.problema-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.problema-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.problema-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problema-icon i {
    font-size: 2rem;
    color: #000;
}

.problema-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.problema-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* =========================================
   SOLUÇÃO SECTION - CORRIGIDA
   ========================================= */
.solucao {
    padding: 6rem 0;
    background: #111;
}

.solucao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solucao-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000;
}

.feature-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-content p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
}

.solucao-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* =========================================
   BENEFICIOS SECTION - CORRIGIDA
   ========================================= */
.beneficios {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.beneficio-icon i {
    font-size: 1.8rem;
    color: #000;
}

.beneficio-card h3 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

/* =========================================
   GALERIA CARROSSEL - CORRIGIDA TOTALMENTE
   ========================================= */
.galeria-resultados {
    padding: 6rem 0;
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    position: relative;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    will-change: transform;
    user-select: none;
    min-height: 450px;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 5px;
    display: flex;
    justify-content: center;
}

.slide-image-container {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    display: block;
    background: #1a1a1a;
}

.carousel-btn {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 20;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn.prev-btn {
    left: -20px;
}

.carousel-btn.next-btn {
    right: -20px;
}

.carousel-btn:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.7);
}

.cta-galeria {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.cta-galeria .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    min-width: 250px;
}

/* =========================================
   DEPOIMENTOS - CORRIGIDA
   ========================================= */
.depoimentos {
    padding: 6rem 0;
    background: #0a0a0a;
}

.depoimento-destaque {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.depoimento-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.depoimento-text blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    border-left: 4px solid #d4af37;
    padding-left: 1.5rem;
}

.depoimento-author {
    margin-top: 1.5rem;
}

.depoimento-author strong {
    color: #d4af37;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.depoimento-author span {
    color: #888;
    font-size: 0.9rem;
}

.antes-depois-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   FOOTER - CORRIGIDA
   ========================================= */
.footer {
    background: #000;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    max-width: 180px;
}

.footer-info p {
    color: #888;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #666;
    margin: 0;
    font-size: 0.85rem;
}

/* =========================================
   WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-text {
    color: white;
    font-weight: 600;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
}

/* =========================================
   RESPONSIVIDADE COMPLETA - CORRIGIDA
   ========================================= */

/* TABLET (481px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* HEADER MOBILE */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-cta {
        display: none;
    }
    
    /* HERO MOBILE */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin: 0 auto 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat {
        text-align: center;
        min-width: auto;
    }
    
    .hero-video-frame {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* PROBLEMA MOBILE */
    .problema-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* SOLUÇÃO MOBILE */
    .solucao-content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .feature {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    /* BENEFÍCIOS MOBILE */
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .beneficio-card {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }
    
    .beneficio-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .beneficio-icon i {
        font-size: 1.5rem;
    }
    
    /* CARROSSEL MOBILE */
    .carousel-container {
        padding: 0 5px;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    .carousel-slide {
        padding: 0 3px;
    }
    
    .slide-image-container {
        height: 400px;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* DEPOIMENTOS MOBILE */
    .depoimento-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .depoimento-text blockquote {
        padding-left: 0;
        border-left: none;
        font-size: 1.1rem;
    }
    
    .antes-depois-img {
        height: 250px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* FOOTER MOBILE */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* WHATSAPP MOBILE */
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        padding: 12px 15px;
    }
    
    .whatsapp-button i {
        font-size: 22px;
        margin: 0;
    }
}

/* MOBILE PEQUENO (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-image-container {
        height: 350px;
    }
    
    .cta-galeria .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 20px;
    }
}

/* TABLET GRANDE (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 50% !important;
        min-width: 50% !important;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

/* DESKTOP (acima de 1025px) */
@media (min-width: 1025px) {
    .carousel-slide {
        flex: 0 0 33.333% !important;
        min-width: 33.333% !important;
    }
    
    .slide-image-container {
        height: 500px;
    }
}

/* TELAS MUITO ALTAS */
@media (min-height: 700px) and (max-width: 768px) {
    .slide-image-container {
        height: 450px;
    }
    
    .hero {
        min-height: 100vh;
    }
}

/* AJUSTES ESPECÍFICOS PARA IMAGENS PEQUENAS */
.slide-image-container img {
    background: #1a1a1a;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}