/**
 * CUSTOM.CSS - VENVARITAOFICIAL.COM.BR
 * Versão 5.1 - FAQ Padronizado
 * Data: 19/10/2025
 */

/* ========================================
   GLOBAL - CONFIGURAÇÕES GERAIS
   ======================================== */

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 0;
}

/* Offset para âncoras com menu fixo */
#hero, 
#sobre, 
#tarja-preta, 
#formula, 
#cards-compra, 
#midia, 
#compra-segura, 
#garantia, 
#faq, 
#contact {
    scroll-margin-top: 90px;
}

/* ========================================
   MENU FIXO - HEADER
   ======================================== */

.main-header,
#header-sticky,
.sticky-menu {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    padding: 12px 0 !important;
    border-bottom: none !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 0;
    margin: 0;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
}

.navbar-nav.mx-auto {
    display: flex;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
    margin: 0;
}

.nav-link {
    padding: 8px 15px !important;
    font-size: 15px;
    font-weight: 500;
    color: #2C3E50 !important;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-decoration: none !important;
}

.nav-link:hover {
    color: #F1891A !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: #F1891A !important;
    font-weight: 700;
}

.navbar-toggler {
    border: none !important;
    background: transparent !important;
    padding: 5px;
    outline: none !important;
    box-shadow: none !important;
    position: absolute;
    right: 0;
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #2C3E50;
    margin: 5px 0;
    border-radius: 2px;
}

/* ========================================
   HERO - SEÇÃO PRINCIPAL
   ======================================== */

.header-area {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #2C3E50 100%);
    position: relative;
    overflow: hidden;
    margin-top: -90px;
    padding-top: 110px;
}

.header-area::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 137, 26, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.header-area::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 137, 26, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
}

.header-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header-content p {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ========================================
   TRUST BADGES - 4 CARDS
   ======================================== */

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(241, 137, 26, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(241, 137, 26, 0.4);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.trust-number {
    font-size: 32px;
    font-weight: 800;
    color: #F1891A;
    margin-bottom: 5px;
    line-height: 1;
}

.trust-label {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* ========================================
   SOBRE - SEÇÃO INSTITUCIONAL
   ======================================== */

.about-institutional {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.about-institutional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #7DCDE8 50%, transparent 100%);
}

.about-text-content {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text-content strong {
    color: #F1891A;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE4B3 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #F1891A;
    margin: 30px 0;
}

.highlight-box h4 {
    color: #F1891A;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.highlight-box p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* ========================================
   TARJA PRETA - SEÇÃO DESTAQUE
   ======================================== */

.tarja-preta-section {
    background: linear-gradient(135deg, #F1891A 0%, #FF6B35 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tarja-preta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -250px;
    right: -100px;
}

.tarja-preta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
}

.tarja-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tarja-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border: 3px solid #fff;
    animation: tarjaPulse 2s ease-in-out infinite;
}

@keyframes tarjaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tarja-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tarja-description {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tarja-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tarja-feature-item {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.tarja-feature-item i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.tarja-feature-item h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.tarja-feature-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 14px;
}

/* ========================================
   COMPOSTOS - FÓRMULA
   ======================================== */

#formula {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

#formula::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(233, 236, 239, 0) 0%, 
        rgba(240, 242, 245, 0.6) 30%,
        rgba(248, 250, 252, 0.9) 60%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   CARDS DE COMPRA
   ======================================== */

.pricing-area {
    background: #FFFFFF;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.pricing-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(233, 236, 239, 0.8) 0%,
        rgba(240, 242, 245, 0.4) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.pricing-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(248, 250, 252, 0.3) 25%,
        rgba(44, 62, 80, 0.15) 60%,
        rgba(44, 62, 80, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.pricing-wrap {
    position: relative;
    z-index: 2;
}

/* ========================================
   MÍDIA - DEPOIMENTOS
   ======================================== */

.doctor-area {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    position: relative;
    padding-top: 100px;
}

.doctor-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(44, 62, 80, 0.3) 40%,
        rgba(44, 62, 80, 0.7) 70%,
        rgba(44, 62, 80, 1) 100%
    );
    z-index: 1;
}

.doctor-area > .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   COMPRA SEGURA
   ======================================== */

.compra-segura-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 100px 0;
    position: relative;
}

.compra-segura-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #7DCDE8 50%, transparent 100%);
}

/* ========================================
   GARANTIA
   ======================================== */

.services-area.garantia-bg {
    position: relative;
}

.services-area.garantia-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #F1891A 50%, transparent 100%);
}

/* ========================================
   FAQ - PADRONIZADO IGUAL ATACADO
   ======================================== */

.faq-area {
    background: #f8f9fa !important;
    position: relative;
}

.faq-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #7DCDE8 50%, transparent 100%);
}

/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 991px) {
    body {
        padding-top: 0;
    }

    .header-area {
        margin-top: -70px;
        padding-top: 150px;
    }

    .navbar {
        justify-content: space-between !important;
    }

    .navbar-brand {
        position: static !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 9998;
    }

    .navbar-collapse.show {
        max-height: 100vh;
        overflow-y: auto;
    }

    .navbar-nav.mx-auto {
        flex-direction: column;
        margin-top: 20px !important;
        gap: 0 !important;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px !important;
        font-size: 16px !important;
    }

    .navbar-toggler {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-card {
        padding: 25px 15px;
        min-height: 160px;
    }

    .trust-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .trust-number {
        font-size: 28px;
    }

    .trust-label {
        font-size: 12px;
    }

    .header-content h2 {
        font-size: 36px !important;
    }

    .header-content p {
        font-size: 18px !important;
    }

    .tarja-badge {
        font-size: 20px;
        padding: 12px 25px;
    }

    .tarja-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid {
        gap: 15px;
    }

    .trust-card {
        padding: 20px 10px;
        min-height: 150px;
    }
}