/* =============================================
   Override de cores - Tema Safia → Narbon
   Primary: #14B8A6 (Verde-água)
   ============================================= */

:root {
    --bs-primary: #14B8A6;
    --bs-primary-rgb: 20, 184, 166;
    --bs-primary-hover: #0D9488;
    --bs-info: #14B8A6;
    --bs-info-rgb: 20, 184, 166;
    --bs-info-hover: #0D9488;
    --bs-link-color: #14B8A6;
    --bs-link-hover-color: #0D9488;
}

/* Cinza → Verde piscina */
.text-600 {
    color: #5EEAD4 !important;
}
.text-700 {
    color: #2DD4BF !important;
}

/* Primary */
.bg-primary {
    background-color: #14B8A6 !important;
}
.text-primary {
    color: #14B8A6 !important;
}
.btn-primary {
    background-color: #14B8A6 !important;
    border-color: #14B8A6 !important;
    color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #0D9488 !important;
    border-color: #0D9488 !important;
}

/* Info (usado nos CTAs) */
.btn-info {
    background-color: #14B8A6 !important;
    border-color: #14B8A6 !important;
    color: #fff !important;
}
.btn-info:hover,
.btn-info:focus {
    background-color: #0D9488 !important;
    border-color: #0D9488 !important;
}

/* Outline light (CTA secundário) */
.btn-outline-light:hover {
    background-color: #14B8A6 !important;
    border-color: #14B8A6 !important;
    color: #fff !important;
}

/* Navbar */
.navbar-light .navbar-brand .text-primary {
    color: #14B8A6 !important;
}

/* Features cards */
.features-items:hover {
    border-color: #14B8A6 !important;
}

/* Footer links */
.footer-link:hover {
    color: #14B8A6 !important;
}

/* Links em geral */
a {
    color: #14B8A6;
}
a:hover {
    color: #0D9488;
}

/* Check icon nos pricing */
.fa-check-circle {
    color: #14B8A6 !important;
}

/* Swiper pagination */
.swiper-pagination-bullet-active {
    background-color: #14B8A6 !important;
}

/* Focus ring */
.btn:focus-visible,
.form-control:focus {
    border-color: #14B8A6 !important;
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
}

/* =============================================
   HERO FULLSCREEN
   ============================================= */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 0 !important;
}

/* Navbar sobre o hero */
.navbar-hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent;
    transition: background 0.3s ease;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(20, 184, 166, 0.65) 50%,
        rgba(15, 23, 42, 0.80) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #14B8A6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
}
