/* ===== DESIGN SYSTEM ===== */
:root {
    --blue: #1079a5;
    /* Azul com contraste WCAG AA no branco */
    --blue-dark: #0c6185;
    --blue-deeper: #084964;
    --orange: #cc5a00;
    /* Laranja com contraste WCAG AA no branco */
    --orange-dark: #ab4b00;
    --cream: #fbfaf8;
    --white: #ffffff;
    --ink: #1a2433;
    --ink-muted: #5a6778;
    --border: rgba(16, 121, 165, 0.15);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(16, 121, 165, 0.15);
    --radius: 16px;
    --radius-lg: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(16, 121, 165, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    border-radius: 10px;
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

@keyframes preloaderSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--blue-deeper), var(--blue));
    color: var(--white);
    text-align: center;
    padding: 12px 48px;
    /* Padding ajustado para não sobrepor o botão X */
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1002;
    position: relative;
    animation: slideDown 0.5s ease-out;
}

.top-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    /* Cor sólida branca para máxima visibilidade */
    cursor: pointer;
    font-size: 1.6rem;
    /* Aumentado significativamente para o caractere × ser bem visível */
    line-height: 1;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.top-bar-close:hover {
    color: var(--orange);
    transform: translateY(-50%) scale(1.15);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

p {
    color: var(--ink-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== FOCUS VISIBLE (Accessibility) ===== */
*:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-muted);
    padding: 10px 16px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--blue);
    background: rgba(16, 121, 165, 0.08);
}

.nav-links a.active-link {
    color: var(--blue);
    background: rgba(16, 121, 165, 0.1);
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(16, 121, 165, 0.3);
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 121, 165, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ink);
    padding: 8px;
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.show {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(16, 121, 165, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(8, 73, 100, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(204, 90, 0, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #eefcfe 0%, #f8faff 40%, #fbfaf8 100%);
    animation: heroGradient 12s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% {
        background:
            radial-gradient(ellipse at 20% 50%, rgba(16, 121, 165, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(8, 73, 100, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 80%, rgba(204, 90, 0, 0.04) 0%, transparent 50%),
            linear-gradient(135deg, #eefcfe 0%, #f8faff 40%, #fbfaf8 100%);
    }

    50% {
        background:
            radial-gradient(ellipse at 40% 30%, rgba(16, 121, 165, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 60%, rgba(8, 73, 100, 0.07) 0%, transparent 50%),
            radial-gradient(ellipse at 30% 70%, rgba(204, 90, 0, 0.05) 0%, transparent 50%),
            linear-gradient(135deg, #f0fafe 0%, #f5f8ff 40%, #fdfaf6 100%);
    }

    100% {
        background:
            radial-gradient(ellipse at 60% 40%, rgba(16, 121, 165, 0.09) 0%, transparent 50%),
            radial-gradient(ellipse at 30% 70%, rgba(8, 73, 100, 0.05) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 30%, rgba(204, 90, 0, 0.06) 0%, transparent 50%),
            linear-gradient(135deg, #edfafe 0%, #f6f9ff 40%, #fcfaf7 100%);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 121, 165, 0.1);
    color: var(--blue-dark);
    border: 1px solid rgba(16, 121, 165, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--blue);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(16, 121, 165, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--ink-muted);
    margin-bottom: 40px;
    max-width: 550px;
    font-style: italic;
    border-left: 3px solid var(--blue);
    padding-left: 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--blue-dark);
    box-shadow: 0 10px 30px rgba(16, 121, 165, 0.4);
}

.btn-ghost {
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid var(--border);
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(16, 121, 165, 0.05);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInDown 1.2s ease;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hero-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-trust-badge i {
    font-size: 1rem;
}

.hero-trust-badge .htb-star {
    color: #b87a00;
    /* Melhorado para contraste */
}

.hero-trust-badge .htb-check {
    color: #1e8a3f;
    /* Melhorado para contraste */
}

.hero-trust-badge .htb-heart {
    color: #d32f2f;
    /* Melhorado para contraste */
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--blue);
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: var(--blue);
}

.hero-chip {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.hero-chip-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 121, 165, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.2rem;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--ink);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 121, 165, 0.12);
    border-color: rgba(16, 121, 165, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 252, 254, 0.8));
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 121, 165, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: var(--white);
    transform: rotate(-10deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-dark);
    /* Mudado para melhor contraste */
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-cta i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.service-cta:hover i {
    transform: translateX(4px);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.about-experience-tag strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.check-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.check-item i {
    color: var(--blue);
}

/* Equipe Section */
.pros-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(16, 121, 165, 0.05);
    border-radius: var(--radius);
    margin-top: 30px;
}

.pros-box.open {
    max-height: 3000px;
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
}

.pro-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pro-card:hover,
.pro-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--blue);
}

.pro-card h4 {
    font-size: 0.95rem;
    color: var(--ink);
    margin-top: 10px;
}

.pro-photo {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border-radius: 8px;
    margin-top: 0;
    display: block;
}

.pro-photo.show {
    max-height: 800px;
    opacity: 1;
    margin-top: 10px;
}

/* ===== INSTAGRAM CAROUSEL ===== */
.insta-section {
    padding: 100px 0;
    background: var(--white);
}

.insta-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.insta-header-row .section-header {
    text-align: left;
    margin-bottom: 0;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(220, 39, 67, .35);
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.carousel-wrapper {
    position: relative;
}

.carousel-track-outer {
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-track-outer.grabbing {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 18px;
    transition: transform .45s cubic-bezier(.25, .8, .25, 1);
}

.carousel-track.dragging {
    transition: none;
}

.insta-card {
    flex: 0 0 calc((100% - 36px) / 3);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
}

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

.insta-card-img {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.insta-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-card:hover .insta-card-img img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 50, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay-link {
    background: var(--white);
    color: var(--ink);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    transition: var(--transition);
}

.insta-overlay-link:hover {
    background: var(--blue);
    color: var(--white);
}

.insta-card-body {
    padding: 16px;
}

.insta-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.insta-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.insta-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-handle {
    font-size: .78rem;
    font-weight: 600;
}

.insta-caption {
    font-size: .83rem;
    color: var(--ink-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Skeleton Loading */
.skeleton-card {
    flex: 0 0 calc((100% - 36px) / 3);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
}

.skeleton-img {
    aspect-ratio: 1/1;
    background: linear-gradient(110deg, #f0f0f0 30%, #e8e8e8 50%, #f0f0f0 70%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.skeleton-body {
    padding: 16px;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    background: linear-gradient(110deg, #f0f0f0 30%, #e8e8e8 50%, #f0f0f0 70%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.medium {
    width: 80%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--ink);
}

.carousel-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.carousel-btn.prev {
    left: -22px;
}

.carousel-btn.next {
    right: -22px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(16, 121, 165, .25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--blue);
    transform: scale(1.3);
}

/* ===== FAQ SECTION ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 121, 165, 0.3);
}

.faq-item.active {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(16, 121, 165, 0.1);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--ink);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-question i {
    transition: var(--transition);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--blue);
    opacity: 0.2;
}

.testimonial-stars {
    color: #c27800;
    /* Mudado de #f59e0b para melhor contraste contra branco */
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Ajustado ligeiramente para o form */
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: block;
}

.contact-card:hover,
.contact-card:focus-visible {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.contact-card:hover i,
.contact-card:focus-visible i {
    color: var(--white);
}

.contact-card:hover p,
.contact-card:focus-visible p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-card i {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 320px;
    margin-top: 30px;
}

/* ===== FORMULÁRIO DE AGENDAMENTO (NOVO) ===== */
.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.booking-form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.booking-form-container p {
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(16, 121, 165, 0.25);
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(16, 121, 165, 0.15);
}

.form-control.error {
    border-color: #d32f2f;
    background-color: #fff8f8;
}

.form-control.error:focus {
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

.error-message {
    display: none;
    color: #d32f2f;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 5px;
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.booking-submit-btn:hover {
    background: #1ebe57;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.booking-submit-btn:disabled {
    background: var(--ink-muted);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

/* ===== PROMOÇÕES & EVENTOS SECTION ===== */
#promocoes {
    padding: 100px 0;
    background: linear-gradient(165deg, #fff8f2 0%, #fffdf9 60%, #f0fafe 100%);
    position: relative;
    overflow: hidden;
}

#promocoes::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 90, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#promocoes::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 121, 165, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.promo-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.promo-section-header .section-label {
    color: var(--orange);
}

.promo-countdown-strip {
    background: linear-gradient(90deg, var(--orange), #b84c00);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 auto 50px;
    box-shadow: 0 6px 20px rgba(204, 90, 0, 0.35);
    animation: float 3s ease-in-out infinite;
}

.promo-countdown-strip i {
    font-size: 1rem;
}

/* Promo Cards Grid */
.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column layout for both mobile and desktop */
    gap: 28px;
    margin-bottom: 70px;
}

.promo-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(204, 90, 0, 0.12);
    transition: var(--transition);
    position: relative;
    max-width: 350px;
    /* narrower width */
    aspect-ratio: 3 / 4;
    /* taller than wide */
    margin: 0 auto;
    /* center within container */
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(204, 90, 0, 0.18);
}

.promo-card-header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, var(--orange), #b84c00);
    color: var(--white);
    position: relative;
}

.promo-card-header.blue-variant {
    background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
}

.promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.promo-card-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-discount {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.promo-discount span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
}

.promo-card-body {
    padding: 22px 28px 28px;
}

.promo-card-body p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.promo-validity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-validity.blue {
    color: var(--blue);
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(204, 90, 0, 0.35);
    width: 100%;
    justify-content: center;
}

.promo-cta.blue {
    background: var(--blue);
    box-shadow: 0 4px 15px rgba(16, 121, 165, 0.35);
}

.promo-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* Events Timeline */
.events-block {
    margin-top: 20px;
}

.events-block-title {
    text-align: center;
    margin-bottom: 40px;
}

.events-block-title h3 {
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.events-block-title p {
    color: var(--ink-muted);
}

.events-list {
    display: grid;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.event-item {
    background: var(--white);
    border-radius: 20px;
    padding: 26px 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(16, 121, 165, 0.1);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(16, 121, 165, 0.15);
    border-color: var(--blue);
}

.event-date-box {
    min-width: 68px;
    text-align: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
    color: var(--white);
    border-radius: 16px;
    padding: 12px 10px;
}

.event-date-box .eday {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-box .emonth {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-bottom: 10px;
}

.event-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(16, 121, 165, 0.1);
    color: var(--blue);
}

.event-tag.orange {
    background: rgba(204, 90, 0, 0.1);
    color: var(--orange);
}

.event-cta-small {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(16, 121, 165, 0.3);
}

.event-cta-small:hover {
    background: var(--blue-dark);
    transform: scale(1.04);
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li:hover {
    color: var(--blue);
    padding-left: 5px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #1ebe57;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* ===== FLOATING PROMO BUTTON ===== */
.promo-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 1000;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--orange), #ab4b00);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(204, 90, 0, 0.45);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.promo-float:hover {
    transform: scale(1.12) rotate(-8deg);
    background: linear-gradient(135deg, #ab4b00, var(--orange));
}

.promo-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2.2s infinite;
    z-index: -1;
}

.promo-float-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
}

.promo-float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--ink);
}

.promo-float:hover .promo-float-tooltip {
    opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 121, 165, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
        border-left: 0;
        border-top: 3px solid var(--blue);
        padding-top: 20px;
        padding-left: 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

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

    .about-img-wrap {
        width: 100%;
        max-width: 550px;
        margin: 0 auto 30px;
    }

    .about-experience-tag {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.78rem;
        padding: 8px 40px 8px 16px;
    }

    .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 85px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

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

    .insta-card {
        flex: 0 0 calc(100% - 40px);
    }

    .skeleton-card {
        flex: 0 0 calc(100% - 40px);
    }

    .promo-cards-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        flex-direction: column;
        gap: 16px;
    }

    .event-cta-small {
        align-self: flex-start;
    }

    .promo-float {
        bottom: 110px;
        right: 20px;
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }

    .whatsapp-float {
        right: 20px;
    }

    .back-to-top {
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: -10px;
    }

    .carousel-btn.next {
        right: -10px;
    }

    .booking-form-container {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section {
        padding: 70px 0;
    }
}