/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 16px 22px 16px 16px;
    border-radius: 40px;
    box-shadow: 0 4px 24px rgba(37,211,102,0.18);
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    box-shadow: 0 8px 32px rgba(37,211,102,0.28);
    transform: translateY(-2px) scale(1.04);
}
.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.whatsapp-text {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    letter-spacing: 0.2px;
    margin-left: 2px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        width: 60px; /* Transforma em um círculo */
        height: 60px;
        padding: 0;
        justify-content: center; /* Centraliza o ícone */
        border-radius: 50%; /* Fica redondo */
    }

    /* Esconde o texto no mobile para não poluir a tela */
    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
        margin: 0;
    }
}
/* =========================================
   HEADER FIXO NO TOPO
   ========================================= */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #18181Bcc;
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 68px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 38px;
    width: auto;
    border-radius: 8px;
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.logo-text {
    color: var(--accent);
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 32px;
}
.header-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: var(--accent);
}

.header-login-btn {
    background: var(--accent);
    color: #18181B;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(245,158,11,0.10);
    border: none;
    margin-left: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.header-login-btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

body {
    padding-top: 68px; /* Espaço para o header fixo */
}
/* =========================================
   VARIÁVEIS DE TEMA (Padrão Barber SaaS)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #121212;
    --bg-sec: #18181B;
    --bg-card: #27272A;
    --text-light: #F9FAFB;
    --text-muted: #A1A1AA;
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --radius: 12px;
}

/* =========================================
   RESETS E BASE
   ========================================= */
/* =========================================
   RESETS E BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden; /* 👈 ISSO MATA O SCROLL HORIZONTAL */
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 68px; /* Espaço para o header fixo */
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-section { padding: 80px 20px; }
.lp-section:nth-child(even) { background-color: var(--bg-sec); }
.lp-container { max-width: 1100px; margin: 0 auto; }

h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}
h2 strong, h1 strong { color: var(--accent); }

/* Utilitários */
.relative { position: relative; }
.z-10 { z-index: 10; }

/* =========================================
   BOTÕES (CTAs)
   ========================================= */
.lp-cta {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
    margin-top: 20px;
}
.lp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    background: var(--accent-hover);
}

/* =========================================
   1. HERO SECTION (Split Layout & Efeitos)
   ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
    background-color: var(--bg-main);
    text-align: left;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    animation: pulseGlow 6s infinite alternate;
}
.glow-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: rgba(245, 158, 11, 0.3); }
.glow-2 { bottom: -150px; right: -50px; width: 500px; height: 500px; background: rgba(255, 255, 255, 0.05); }

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-topo {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: none;
}
.hero h1 strong { display: block; }
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 90%;
    margin-bottom: 35px;
}
.hero-buttons { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.sub-cta { font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }

.hero-image-wrapper { position: relative; display: flex; justify-content: center; }
.floating-mockup {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
    animation: float 5s ease-in-out infinite;
    border-radius: 32px;
    background: #18181B;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   2 e 3. CARDS DE DORES E BENEFÍCIOS
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.icon-box {
    background: rgba(255,255,255,0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* =========================================
   4. DEPOIMENTOS (SOCIAL PROOF) ALINHADO
   ========================================= */
.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #1a1a1c 100%);
    padding: 35px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stars { letter-spacing: 2px; margin-bottom: 15px; font-size: 1.1rem; }
.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1; /* Empurra o bloco da foto para baixo */
}

/* O Bloco da Foto e Nome */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: auto;
}

.avatar-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

/* Corrige o div interno do client-info e anula o <br> do HTML */
.client-info > div {
    display: flex;
    flex-direction: column;
}

.client-info strong {
    color: #FFF;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.barbershop-link {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2px;
}
.barbershop-link:hover { color: #FFF; text-decoration: underline; }

/* =========================================
   5. PRICING (Tabela de Preços)
   ========================================= */
.lp-pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-plan {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}
.lp-plan h3 { font-size: 1.8rem; color: var(--text-light); margin-bottom: 5px; }
.lp-plan p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }
.lp-plan ul { list-style: none; margin-bottom: 30px; text-align: left; }
.lp-plan ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}
.lp-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.lp-plan.destaque {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
}
.lp-plan.destaque::before {
    content: 'MAIS ESCOLHIDO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.lp-plan .lp-cta { width: 100%; font-size: 1rem; padding: 15px; }

/* =========================================
   6. FAQ (Dúvidas)
   ========================================= */
details {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}
summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    outline: none;
    list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p {
    margin-top: 15px;
    color: var(--text-muted);
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================
   7. FOOTER
   ========================================= */
.lp-footer {
    text-align: center;
    padding: 40px 20px;
    background: #0a0a0a;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.lp-footer a { color: var(--accent); text-decoration: none; margin: 0 10px; }
.lp-footer a:hover { text-decoration: underline; }

/* =========================================
   RESPONSIVIDADE (Celulares)
   ========================================= */
@media (max-width: 992px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero p { max-width: 100%; margin: 0 auto 30px; }
    .hero-buttons { align-items: center; margin: 0 auto; }
    .badge-topo { margin: 0 auto 25px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .lp-section { padding: 50px 20px; }
    .lp-plan.destaque { transform: scale(1); }
}

/* =========================================
   RESPONSIVIDADE PREMIUM (Mobile Focado)
   ========================================= */
@media (max-width: 768px) {
    /* 1. Ajuste do Header (Tudo na mesma linha) - VERSÃO BLINDADA */
    .header-container {
        flex-direction: row; 
        justify-content: space-between;
        height: 60px;
        padding: 0 15px; 
        width: 100%;
    }
    
    .header-nav { display: none; }

    .logo-link { gap: 8px; } 
    .logo-img { height: 26px; } 
    
    .logo-text { 
        font-size: 0.95rem; 
        white-space: nowrap; 
    }

    .header-login-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin-left: 0;
        white-space: nowrap;
        flex-shrink: 0; 
    }

    body { padding-top: 60px; } 

    /* 2. Ajuste do Hero (Topo) */
    .hero {
        padding: 60px 15px 40px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .badge-topo {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .floating-mockup {
        max-width: 90vw; 
        border-radius: 24px;
    }

    /* 3. Ajuste de Espaçamentos Gerais */
    .lp-section {
        padding: 50px 15px;
    }
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* 4. Ajuste dos Cards e Tabelas */
    .features-grid, .lp-testimonials, .lp-pricing-table {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .feature-card, .testimonial-card, .lp-plan {
        padding: 25px 20px;
    }
    
    /* Ajusta o Botão de Comprar nos planos */
    .lp-plan .lp-cta {
        padding: 12px;
        font-size: 1rem;
    }

    /* Botãozão principal */
    .lp-cta {
        width: 100%; 
        text-align: center;
        padding: 16px 10px;
        font-size: 1rem;
    }
}