
:root {
    --gold: #1d4ed8;
    --gold-dark: #0c2140;
    --bg-main: #FFFFFF;
    --text-main: #08102B;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(12, 33, 64, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hero Styling */

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), url('../images/bckg01.webp');
    background-size: cover;
    background-position: center;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
}

.badge-circular {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: rgba(29, 78, 216, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: rotate-slow 25s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-logo {
    position: absolute;
    z-index: 21;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    border: 1px solid rgba(29, 78, 216, 0.3);
    overflow: hidden;
}

.tabs-container {
    background: rgba(8, 16, 43, 0.03);
    border: 1px solid rgba(8, 16, 43, 0.05);
    padding: 5px;
    border-radius: 9999px;
    display: inline-flex;
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 10;
}

.tab-nav-btn {
    flex: 1;
    padding: 14px 12px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: #3B4B72;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.tab-nav-btn:nth-of-type(1) {
    background: linear-gradient(135deg, #25D366 0%, #187618 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.tab-nav-btn:nth-of-type(1):hover {
    background: linear-gradient(135deg, #187618 0%, #0d4a0d 100%);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
    transform: scale(1.01);
}

.tab-nav-btn:last-child:hover {
    color: var(--text-main);
    background: rgba(8, 16, 43, 0.05);
}

.btn-premium-outer {
    display: inline-flex;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(24, 118, 24, 0.4);
    padding: 5px;
    border-radius: 9999px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-premium-inner {
    background: linear-gradient(135deg, #25D366 0%, #187618 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    transition: all 0.4s ease;
}

.btn-premium-outer:hover .btn-premium-inner {
    background: linear-gradient(135deg, #187618 0%, #0d4a0d 100%);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
    transform: scale(1.02);
}

.service-card {
    background: #F0F4FF;
    border: 1px solid rgba(8, 16, 43, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(8, 16, 43,0.05);
    transform: translateY(-8px);
}

.faq-item {
    background: #F0F4FF;
    border: 1px solid rgba(8, 16, 43, 0.05);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 0 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(29, 78, 216, 0.3);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(8, 16, 43,0.02);
}

.faq-item.active {
    border-color: var(--gold);
    background: #ffffff;
}

.faq-question {
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    color: #3B4B72;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(8, 16, 43, 0.05);
    box-shadow: 0 4px 20px rgba(8, 16, 43,0.03);
    padding: 24px;
    border-radius: 20px;
    height: 100%;
}

.star-rating {
    color: var(--gold);
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

/* Footer & Premium Utilities */
.footer-link-glow {
    position: relative;
    transition: all 0.3s ease;
}

.footer-link-glow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--gold);
}

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


.gold-glow-hover:hover {
    box-shadow: 0 0 20px rgba(29, 78, 216, 0.4);
    border-color: var(--gold);
}

/* Hero title: cinza no mobile + filtro mais forte */
@media (max-width: 767px) {
    #hero-title {
        color: var(--text-main) !important;
        text-shadow: none;
    }

    .hero-bg::after {
        display: block !important;
        background: rgba(255, 255, 255, 0.8) !important;
    }
}





