/* =========================================
   OCELOTUR - Premium Landing Page Styles
   ========================================= */

/* === Reset e Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f8f9fa;
}

html {
    overflow-x: hidden;
}

/* === Scrollbar Personalizada === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0077b6, #00b4d8);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00b4d8, #90e0ef);
}

/* === Navbar Premium === */
.navbar {
    background: linear-gradient(90deg, #90e0ef 0%, #00b4d8 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: linear-gradient(90deg, #90e0ef 0%, #00b4d8 100%);
    padding: 10px 0;
}

/* Navbar clara: garante contraste adequado */
.navbar.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 30, 60, 0.92) !important;
}

.navbar.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 30, 60, 1) !important;
}

.navbar.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 30, 60, 1) !important;
}

.navbar-brand img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.navbar-brand img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #001e3c, #0077b6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #001e3c !important;
    transform: translateY(-2px);
}

/* === Hero Header Premium === */
.header-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Textura sutil (premium) sem poluir */
.header-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 12% 72%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06) 0px,
            rgba(255, 255, 255, 0.06) 1px,
            rgba(255, 255, 255, 0.00) 1px,
            rgba(255, 255, 255, 0.00) 10px
        );
    z-index: 1;
    pointer-events: none;
}

/* Fade inferior para transição suave pro conteúdo */
.header-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.header-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('../img/fortal.webp') center center/cover no-repeat;
    filter: blur(7px) brightness(0.92) saturate(1.12) contrast(1.04);
    z-index: 0;
    animation: bgFloat 20s ease-in-out infinite;
    transform-origin: center;
}

@keyframes bgFloat {
    0%, 100% {
        transform: scale(1.1) translateY(0) rotate(0deg);
    }
    25% {
        transform: scale(1.15) translateY(-15px) rotate(0.5deg);
    }
    50% {
        transform: scale(1.12) translateY(-10px) rotate(-0.5deg);
    }
    75% {
        transform: scale(1.18) translateY(-20px) rotate(0.3deg);
    }
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 52%),
        radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0) 56%),
        linear-gradient(135deg, rgba(144, 224, 239, 0.82) 0%, rgba(0, 180, 216, 0.90) 100%);
    z-index: 2;
}

/* Deixa o hero mais chamativo sem escurecer */
.header-hero .container {
    padding: 42px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.22) 100%);
    border: 1px solid rgba(0, 119, 182, 0.18);
    backdrop-filter: blur(10px);
    box-shadow:
        0 28px 90px rgba(0, 30, 60, 0.18),
        0 10px 30px rgba(0, 119, 182, 0.10);
}

.header-hero .container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(0, 180, 216, 0.30) 55%, rgba(0, 119, 182, 0.30) 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.header-hero .container {
    position: relative;
    z-index: 2;
}

.header-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    /* Fallback anti-layout-shift: o JS ajusta um min-height preciso em px */
    min-height: 2.3em;
    color: #001e3c;
    letter-spacing: -0.02em;
    text-shadow: 0 14px 40px rgba(0, 30, 60, 0.18);
    animation: fadeInDown 1s ease-out;
    background: none;
}

@supports (-webkit-background-clip: text) {
    .header-hero h1 {
        background: linear-gradient(135deg, #001e3c 0%, #005f99 45%, #0077b6 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.header-hero .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(0, 30, 60, 0.88);
    text-shadow: 0 8px 22px rgba(0, 30, 60, 0.15);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 800px;
    margin: 0 auto;
}

.header-hero .lead strong {
    color: rgba(0, 30, 60, 1);
}

.btn-hero {
    background: linear-gradient(135deg, #001e3c, #0077b6);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 14px 44px rgba(0, 30, 60, 0.20);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 56px rgba(0, 30, 60, 0.26);
    background: linear-gradient(135deg, #003566, #00b4d8);
}

/* === CTA animado (mantém cor do Bootstrap, mas com efeito premium) === */
.btn-cta-animated {
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-cta-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-animated:hover::before {
    left: 100%;
}

.btn-cta-animated:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* === Animações de Entrada === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* === Seções === */
section {
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title h2 {
    font-weight: 700;
    color: #001e3c;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #90e0ef);
    border-radius: 2px;
    animation: gradientMove 3s ease infinite;
    background-size: 200% 100%;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* === Cards Premium === */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #90e0ef);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 119, 182, 0.25);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.card-title {
    color: #0077b6;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
}

.card .list-unstyled li {
    padding: 5px 0;
    transition: transform 0.3s ease;
}

.card:hover .list-unstyled li {
    transform: translateX(5px);
}

/* === Botões === */
.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn-success:hover::before {
    width: 300px;
    height: 300px;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20c05e, #0f7a6e);
}

/* === Seção Sobre === */
#sobre {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.about-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
    transform: translateZ(0);
}

.about-media img {
    width: 100%;
    display: block;
    border-radius: 22px;
    transition: transform 0.7s ease;
}

.about-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(144, 224, 239, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(0, 30, 60, 0.10), rgba(0, 180, 216, 0.08));
    pointer-events: none;
}

.about-media:hover img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 30, 60, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.about-badge-title {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
}

.about-badge-sub {
    opacity: 0.9;
    font-size: 0.9rem;
}

.about-card {
    box-shadow: 0 25px 80px rgba(0, 30, 60, 0.18);
}

.about-pill {
    border: 1px solid rgba(0, 119, 182, 0.15);
    color: #001e3c;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 119, 182, 0.15);
}

.about-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.25);
    flex: 0 0 auto;
}

.about-feature-title {
    font-weight: 700;
    color: #001e3c;
    line-height: 1.2;
}

.about-feature-text {
    font-size: 0.92rem;
    color: #4b5563;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-stat {
    border-radius: 16px;
    padding: 14px 12px;
    text-align: center;
    background: rgba(0, 30, 60, 0.06);
    border: 1px solid rgba(0, 119, 182, 0.12);
}

.about-stat-number {
    font-weight: 800;
    font-size: 1.25rem;
    color: #0077b6;
    letter-spacing: 0.5px;
}

.about-stat-label {
    font-size: 0.85rem;
    color: #334155;
}

#sobre img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#sobre img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

#sobre h2 {
    color: #0077b6;
    position: relative;
}

#sobre h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    border-radius: 2px;
}

#sobre .list-unstyled li {
    padding: 10px 0;
    transition: all 0.3s ease;
}

#sobre .list-unstyled li:hover {
    transform: translateX(10px);
    color: #0077b6;
}

/* === Seção Contato === */
#contato {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 180, 216, 0.14), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(144, 224, 239, 0.18), transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(0, 119, 182, 0.10), transparent 55%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-hero {
    border-radius: 24px;
    box-shadow: 0 25px 90px rgba(0, 30, 60, 0.16);
}

.contact-pill {
    border: 1px solid rgba(0, 119, 182, 0.14);
    color: #001e3c;
}

.contact-title {
    color: #001e3c;
    letter-spacing: -0.2px;
}

.contact-cta {
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.btn-outline-primary {
    border-width: 2px;
    border-radius: 18px;
    font-weight: 700;
}

.contact-card {
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 25px 80px rgba(0, 30, 60, 0.14);
}

.contact-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.25);
}

.contact-card-title {
    font-weight: 800;
    color: #001e3c;
    line-height: 1.1;
}

.contact-card-sub {
    font-size: 0.9rem;
}

.contact-info {
    display: grid;
    gap: 10px;
}

.contact-line {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-line i {
    color: #0077b6;
    margin-top: 2px;
}

.contact-line a {
    color: #001e3c;
    font-weight: 600;
}

.contact-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 119, 182, 0.12);
}

.contact-note {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.10);
    border: 1px solid rgba(37, 211, 102, 0.20);
    color: #0f5132;
    font-weight: 600;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 30, 60, 0.14);
}

.contact-map-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.90), rgba(0, 119, 182, 0.78));
    color: #fff;
}

.contact-map-title {
    font-weight: 800;
    letter-spacing: 0.3px;
}

.contact-map .ratio {
    background: rgba(0, 0, 0, 0.03);
}

#contato h5 {
    transition: all 0.3s ease;
}

#contato h5:hover {
    transform: translateX(5px);
    color: #0077b6;
}

#contato a {
    color: #0077b6;
    transition: all 0.3s ease;
}

#contato a:hover {
    color: #00b4d8;
}

#contato .ratio {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

#contato .ratio:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* === Footer Premium === */
.site-footer {
    background: linear-gradient(135deg, #90e0ef 0%, #00b4d8 100%);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    display: none;
}

.footer-brand img {
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.footer-text {
    color: rgba(0, 30, 60, 0.9);
    max-width: 520px;
}

.footer-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 60px rgba(0, 30, 60, 0.18);
    padding: 18px 18px;
    height: 100%;
}

.footer-title {
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-meta a {
    color: rgba(0, 30, 60, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links a:hover,
.footer-meta a:hover {
    color: rgba(0, 30, 60, 1);
    transform: translateX(3px);
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 650;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-contact-line i {
    color: #90e0ef;
}

.footer-contact-line:hover {
    transform: translateY(-2px);
    border-color: rgba(144, 224, 239, 0.35);
    color: #fff;
}

.footer-address {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

.footer-address i {
    color: #90e0ef;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #0077b6;
    background: rgba(255, 255, 255, 0.60);
    border: 1px solid rgba(0, 119, 182, 0.22);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(0, 119, 182, 0.35);
    color: #001e3c;
}

.footer-divider {
    border-color: rgba(0, 30, 60, 0.18);
    opacity: 1;
}

.footer-bottom {
    color: rgba(0, 30, 60, 0.85);
}

.footer-copy {
    font-weight: 700;
}

.footer-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-dot {
    color: rgba(0, 30, 60, 0.45);
}

/* === WhatsApp Float Button === */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* === Promo Chat (Natal / Fim de Ano) === */
.promo-chat {
    position: fixed;
    left: 22px;
    bottom: 30px;
    z-index: 1001;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.promo-chat-toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(0, 119, 182, 0.22);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #90e0ef 55%, #00b4d8 100%);
    color: #001e3c;
    font-size: 32px;
    box-shadow:
        0 18px 44px rgba(0, 30, 60, 0.16),
        0 8px 18px rgba(0, 180, 216, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.promo-chat-toggle::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

.promo-chat-toggle::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -10px;
    height: 16px;
    background: radial-gradient(closest-side, rgba(0, 30, 60, 0.28), rgba(0, 30, 60, 0));
    filter: blur(2px);
    pointer-events: none;
}

.promo-chat-toggle:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 22px 54px rgba(0, 30, 60, 0.18),
        0 10px 22px rgba(0, 180, 216, 0.22);
}

.promo-chat-panel {
    width: min(360px, calc(100vw - 120px));
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 119, 182, 0.16);
    box-shadow: 0 24px 70px rgba(0, 30, 60, 0.20);
    padding: 14px 14px 12px;
    position: relative;
    opacity: 0;
    transform: translateX(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.promo-chat-panel::before {
    content: '';
    position: absolute;
    left: -7px;
    bottom: 18px;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.92);
    border-left: 1px solid rgba(0, 119, 182, 0.12);
    border-bottom: 1px solid rgba(0, 119, 182, 0.12);
    transform: rotate(45deg);
}

.promo-chat.open .promo-chat-panel {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.promo-chat-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(0, 30, 60, 0.12);
    background: rgba(255, 255, 255, 0.75);
    color: rgba(0, 30, 60, 0.85);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-chat-close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
}

.promo-chat-title {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #001e3c;
    padding-right: 44px;
    margin-bottom: 6px;
}

.promo-chat-text {
    color: rgba(0, 30, 60, 0.84);
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.promo-chat-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    background: linear-gradient(135deg, #001e3c, #0077b6);
    color: #fff;
    box-shadow: 0 14px 34px rgba(0, 30, 60, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-chat-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 30, 60, 0.22);
    color: #fff;
}

.promo-chat-footnote {
    margin-top: 8px;
    color: rgba(0, 30, 60, 0.62);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .promo-chat {
        left: 16px;
        bottom: 20px;
    }

    .promo-chat-toggle {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-chat-panel,
    .promo-chat-toggle,
    .promo-chat-cta {
        transition: none !important;
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* === Classes de Animação de Scroll === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animate-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.8);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* === Delay Classes === */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* === Parallax Effect === */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* === Responsividade === */
@media (max-width: 992px) {
    .header-hero h1 {
        font-size: 2.5rem;
    }
    
    .header-hero .lead {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .card-img-top {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .header-hero {
        min-height: 80vh;
    }

    .header-hero .container {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .header-hero::after {
        height: 100px;
    }
    
    .header-bg {
        filter: blur(5px) brightness(0.82);
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    #sobre, #contato {
        padding: 60px 0;
    }

    .contact-hero {
        border-radius: 18px;
    }

    .contact-card,
    .contact-map {
        border-radius: 18px;
    }

    .contact-map-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Desativa animação apenas do bloco "Por que escolher a OCELOTUR" no mobile */
    .no-anim-mobile.animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Evita overflow horizontal no mobile por causa das animações com translateX */
    .animate-on-scroll.animate-left,
    .animate-on-scroll.animate-right {
        transform: translateY(50px);
    }

    /* Footer mais confortável no mobile */
    .site-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        justify-items: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-hero h1 {
        font-size: 1.8rem;
    }
    
    .navbar-brand img {
        width: 120px !important;
    }
}

/* === Efeito Glassmorphism === */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* === Gradientes de Texto === */
.gradient-text {
    background: linear-gradient(135deg, #0077b6, #00b4d8, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Efeito de Brilho nos Ícones === */
.card-title i,
.list-unstyled i {
    transition: all 0.3s ease;
}

.card:hover .card-title i {
    transform: rotate(15deg) scale(1.2);
    color: #00b4d8;
}
