/* ==========================================================================
   TRANS BH SHOPPING - FOLHA DE ESTILOS CSS
   Paleta: Vermelho Coral Suave, Vermelho Intenso, Tons Neutros e Destaques
   ========================================================================== */

:root {
    /* Paleta de Cores em Vermelho Claro e Combinados */
    --primary-red: #E63946;         /* Vermelho principal dinâmico */
    --light-red: #FF6B6B;           /* Vermelho claro / Coral vibrante */
    --soft-red-bg: #FFF5F5;        /* Fundo avermelhado suave para seções */
    --border-red: #FAD2D2;          /* Borda suave para contraste */
    --dark-red: #C5221F;            /* Vermelho escuro para estados hover */
    
    /* Neutros */
    --dark-text: #1D2D44;          /* Azul chumbo super legível para texto */
    --muted-text: #5A6578;         /* Cinza suave para legendas e subtítulos */
    --white: #FFFFFF;               /* Branco puro */
    --off-white: #F9FAFC;           /* Fundo neutro suave */
    
    /* Apoio / WhatsApp */
    --whatsapp-green: #25D366;     /* Cor oficial do WhatsApp */
    --whatsapp-hover: #1DA851;      /* Hover do WhatsApp */
    
    /* Tipografia e Efeitos */
    --font-main: 'Poppins', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 25px rgba(230, 57, 70, 0.06);
    --shadow-hover: 0 15px 30px rgba(230, 57, 70, 0.15);
    --radius-card: 12px;
    --radius-btn: 30px;
}

/* Reset Global */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

/* ==========================================================================
   Topbar (Faixa de Anúncio Superior)
   ========================================================================== */
.topbar {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

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

.topbar i {
    color: var(--light-red);
    margin-right: 5px;
}

.topbar-phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.topbar-phone:hover {
    color: var(--light-red);
}

/* ==========================================================================
   Navegação / Header Sticky
   ========================================================================== */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary-red);
    margin-right: 4px;
}

.logo span {
    color: var(--primary-red);
}

.btn-header {
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-header:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Hero Section (Área Principal de Destaque)
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--soft-red-bg) 0%, #FFEBEB 100%);
    padding: 4.5rem 0 3.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-red);
}

.badge {
    background-color: var(--white);
    color: var(--primary-red);
    border: 1px solid var(--border-red);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
}

.hero h1 span {
    color: var(--primary-red);
    background: linear-gradient(120deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--muted-text);
    max-width: 750px;
    margin: 0 auto 2rem auto;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.1rem 2.4rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-main:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.hero-highlights i {
    color: var(--primary-red);
}

/* ==========================================================================
   Como Funciona (Passo a Passo)
   ========================================================================== */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--muted-text);
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    border: 1px solid #EFEFEF;
    border-top: 4px solid var(--light-red);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.step-number {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--border-red);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--soft-red-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}

.step-icon {
    font-size: 1.6rem;
    color: var(--primary-red);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

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

/* ==========================================================================
   Sessão Exclusiva: Nespresso e Lojas Especiais
   ========================================================================== */
.exclusive-stores {
    padding: 2rem 0 4rem 0;
    background-color: var(--white);
}

.exclusive-card {
    background: linear-gradient(135deg, #1D2D44 0%, #2B3D59 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.exclusive-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(230, 57, 70, 0.2);
    border-radius: 50%;
}

.exclusive-badge {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.exclusive-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.exclusive-card p {
    max-width: 700px;
    margin: 0 auto 1.8rem auto;
    font-size: 1rem;
    color: #D1D7E0;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

/* ==========================================================================
   Recursos / Vantagens
   ========================================================================== */
.features {
    padding: 4.5rem 0;
    background-color: var(--soft-red-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background-color: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-red);
}

.feature-icon-wrapper {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--muted-text);
}

/* ==========================================================================
   FAQ (Perguntas Frequentes)
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.8rem;
}

.faq-item {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-card);
    border-left: 4px solid var(--primary-red);
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-text);
}

.faq-item h3 i {
    color: var(--primary-red);
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--muted-text);
}

/* ==========================================================================
   Chamada para Ação (CTA)
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.btn-alt {
    background-color: var(--white);
    color: var(--primary-red);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-alt:hover {
    background-color: var(--off-white);
    color: var(--dark-red);
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
footer {
    background-color: var(--dark-text);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.9rem;
}

footer p {
    opacity: 0.85;
    margin-bottom: 0.4rem;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ==========================================================================
   Botão Flutuante do WhatsApp
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: var(--whatsapp-hover);
}

.tooltip-text {
    position: absolute;
    right: 70px;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
}

/* ==========================================================================
   Ajustes Responsivos
   ========================================================================== */
@media (max-width: 768px) {
    .topbar-container {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .exclusive-card h2 {
        font-size: 1.4rem;
    }
}
