@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&display=swap');

:root {
    --primary: #4e897c;
    --primary-light: #769898;
    --secondary: #3ecba5;
    --accent: #eaf1f0;
    --text-dark: #1F2937;
    --text-body: #4B5563;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.title-section {
    text-align: center;
    margin-bottom: 3rem;
}

.title-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.title-section p {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Nav */
.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--accent);
    color: var(--primary);
    padding-left: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 61, 115, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #0096B4;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    overflow: hidden;
    padding: 1.5rem 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 85% 90% at 50% 50%,
        rgba(255,255,255,0.31) 0%,
        rgba(255,255,255,0.24) 40%,
        rgba(255,255,255,0.11) 70%,
        rgba(255,255,255,0.02) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 28px;
    padding: 2.5rem 3.5rem;
    text-align: center;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.hero-unit-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 18px;
    padding: 1.1rem 1.4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.hero-unit-address {
    font-size: 0.82rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.hero-unit-address i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.hero-unit-btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.4rem;
    line-height: 1;
}

@-webkit-keyframes pulse-first-btn {
    0% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3); }
    10% { -webkit-transform: scale(1.05); transform: scale(1.05); box-shadow: 0 0 0 8px rgba(78, 137, 124, 0.4); }
    20% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3); }
    100% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3); }
}

@keyframes pulse-first-btn {
    0% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3); }
    10% { -webkit-transform: scale(1.05); transform: scale(1.05); box-shadow: 0 0 0 8px rgba(78, 137, 124, 0.4); }
    20% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3); }
    100% { -webkit-transform: scale(1); transform: scale(1); box-shadow: 0 4px 14px rgba(10, 61, 115, 0.3); }
}

.hero-actions .hero-unit-cta:first-child .hero-unit-btn,
.footer-grid > div:nth-child(3) .footer-whatsapp-btn,
#pulse-btn-contato {
    -webkit-animation: pulse-first-btn 4s infinite ease-in-out !important;
    animation: pulse-first-btn 4s infinite ease-in-out !important;
}

.hero-unit-btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.hero-unit-btn-text small {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.88;
    letter-spacing: 0.2px;
}

.hero-features-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    padding: 0.7rem 1.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(78, 137, 124, 0.08);
}

.hero-feat-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.1);
}

/* Services / Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1400px;
    padding: 0 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Content Sections */
.section-padding {
    padding: 6rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.list-features {
    margin-bottom: 2rem;
}

.list-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.list-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ─── TIPOGRAFIA PREMIUM ─── */

/* Parágrafo de abertura (lead) */
.content-text p.lead,
.content-text > p:first-of-type {
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.85;
    border-left: 3px solid var(--secondary);
    padding-left: 1.2rem;
    margin-bottom: 1.8rem;
}

/* Parágrafos internos */
.content-text p {
    line-height: 1.82;
    letter-spacing: 0.01em;
    color: var(--text-body);
}

/* Destaque em negrito — palavras-chave */
.content-text strong,
.info-box strong {
    color: var(--primary);
    font-weight: 700;
}

/* Itálico contextual */
.content-text em {
    font-style: italic;
    color: #3a7266;
    font-weight: 500;
}

/* Links em texto */
.content-text a:not(.btn) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid var(--secondary);
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 1px;
}
.content-text a:not(.btn):hover {
    color: var(--secondary);
    border-color: var(--primary);
}

/* Título da seção de conteúdo */
.content-text h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.content-text .section-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 0.6rem;
}

/* Lista de features — premium */
.list-features {
    list-style: none;
    margin-bottom: 2rem;
}

.list-features li {
    position: relative;
    padding: 0.65rem 0.5rem 0.65rem 2.4rem;
    margin-bottom: 0.4rem;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.65;
}

.list-features li:hover {
    background: var(--accent);
}

.list-features li::before {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(78,137,124,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-features li::after {
    content: '✓';
    position: absolute;
    left: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 20px;
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.78rem;
}

/* Caixa de informações / preparo (info-box) */
.info-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--secondary);
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 2.5rem;
    width: 40px; height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.info-box h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
    margin-bottom: 1px;
}

.info-box .preparo-note {
    margin-top: 2rem;
    padding: 1rem 1.4rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Highlight inline — texto colorido */
.text-accent { color: var(--secondary); font-weight: 600; }
.text-primary { color: var(--primary); font-weight: 600; }
.text-italic { font-style: italic; color: #3a7266; }

/* Citação / bloco de destaque */
.content-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(62,203,165,0.08) 100%);
    border-radius: var(--radius-md);
    padding: 1.8rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75;
    font-style: italic;
}

/* Equal-height feature-cards */
.feature-card {
    display: flex;
    flex-direction: column;
}
.feature-card .btn {
    margin-top: auto;
}

/* Page header premium — Stage Light 3D */
.page-header {
    /* Base: gradient profundo escurecendo à direita para criar perspectiva lateral */
    background:
        radial-gradient(ellipse 100% 90% at 50% -30%, rgba(255,255,255,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 80% at 20% 50%, rgba(62,203,165,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 45% 100% at 110% 50%, rgba(0,0,0,0.22) 0%, transparent 65%),
        linear-gradient(158deg, #5ba393 0%, #3d7569 28%, #2b5e55 60%, #193d38 100%);
    padding: 5rem 0 4.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Borda superior iluminada + sombra inferior para efeito elevado */
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 2px 12px rgba(255,255,255,0.06),
        0 8px 40px rgba(0,0,0,0.28),
        0 2px 8px rgba(0,0,0,0.18);
}

/* Camada 1: Grid de perspectiva + vinheta inferior para profundidade */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Grid sutil — como um piso refletivo */
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    /* Máscara: grid some no topo (transparente) e aparece mais forte embaixo */
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

/* Camada 2: Luz sweep diagonal animada */
.page-header::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -70%;
    width: 40%;
    height: 140%;
    background: linear-gradient(
        108deg,
        transparent 0%,
        rgba(255,255,255,0.03) 30%,
        rgba(255,255,255,0.10) 50%,
        rgba(255,255,255,0.03) 70%,
        transparent 100%
    );
    transform: skewX(-12deg);
    animation: header-light-sweep 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes header-light-sweep {
    0%   { left: -70%; opacity: 0; }
    8%   { opacity: 1; }
    55%  { left: 140%; opacity: 1; }
    62%  { opacity: 0; }
    100% { left: 140%; opacity: 0; }
}

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

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    /* Sombra de texto para dar profundidade */
    text-shadow: 0 2px 20px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.page-header .header-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--secondary);
    margin-bottom: 1rem;
    /* Pill de fundo sutil */
    background: rgba(62,203,165,0.12);
    border: 1px solid rgba(62,203,165,0.3);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    text-shadow: none;
    backdrop-filter: blur(4px);
}

/* Reviews Section */
.reviews-section {
    background: var(--accent);
    padding: 5rem 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.55rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.reviews-google-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.reviews-grid > a {
    display: flex;
    height: 100%;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    flex: 1;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
}

.google-review-btn-container {
    text-align: center;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page-header { margin-bottom: 2.5rem; }
.legal-page-header h2 { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.legal-update { font-size: 0.85rem; color: var(--text-light); margin-top: 0.4rem; }
.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1rem;
}
.legal-doc {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
}
.legal-doc h3 {
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2.2rem 0 0.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border-color);
}
.legal-doc h3:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-doc h4 { color: var(--text-dark); font-size: 0.95rem; font-weight: 600; margin: 1.2rem 0 0.4rem; }
.legal-doc p { margin-bottom: 1rem; color: var(--text-body); }
.legal-doc ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }
.legal-doc ul li { margin-bottom: 0.45rem; color: var(--text-body); }
.legal-doc .legal-highlight {
    background: var(--accent);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
}
.legal-doc .legal-highlight p { margin: 0; color: var(--text-dark); font-weight: 500; }

/* ─── FOOTER PREMIUM — Stage Light 3D ─── */
.footer {
    position: relative;
    /* Spotlight central vindo de cima + rim light esquerdo + sombra direita + base escura */
    background:
        radial-gradient(ellipse 85% 55% at 50% -10%, rgba(62,203,165,0.13) 0%, transparent 58%),
        radial-gradient(ellipse 50% 80% at -5% 45%, rgba(62,203,165,0.10) 0%, transparent 62%),
        radial-gradient(ellipse 40% 80% at 110% 65%, rgba(0,0,0,0.28) 0%, transparent 62%),
        linear-gradient(158deg, #162b26 0%, #0f2420 40%, #071610 100%);
    color: var(--white);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    /* Borda superior iluminada (superfície elevada) + sombra superior profunda */
    box-shadow:
        inset 0 1px 0 rgba(62,203,165,0.22),
        inset 0 2px 16px rgba(62,203,165,0.06),
        0 -6px 40px rgba(0,0,0,0.3);
}

/* Camada 1: Grid perspéctivado — transparente no topo, sólido embaixo */
.footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(62,203,165,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62,203,165,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    /* Máscara: grid some no topo, aparece mais forte embaixo */
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.9) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

/* Camada 2: Sweep de luz diagonal animado */
.footer::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -70%;
    width: 38%;
    height: 140%;
    background: linear-gradient(
        108deg,
        transparent 0%,
        rgba(62,203,165,0.03) 30%,
        rgba(255,255,255,0.07) 50%,
        rgba(62,203,165,0.03) 70%,
        transparent 100%
    );
    transform: skewX(-12deg);
    animation: footer-light-sweep 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footer-light-sweep {
    0%   { left: -70%; opacity: 0; }
    8%   { opacity: 1; }
    58%  { left: 140%; opacity: 1; }
    65%  { opacity: 0; }
    100% { left: 140%; opacity: 0; }
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, #4e897c 0%, #3ecba5 50%, #4e897c 100%);
    background-size: 200% 100%;
    animation: footer-shimmer 4s linear infinite;
}

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

.footer-inner {
    position: relative; z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.1fr 1.1fr;
    gap: 3.5rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0;
}

.footer-col-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #3ecba5;
    margin-bottom: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: #3ecba5;
    border-radius: 2px;
}

/* Brand col */
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1.4rem;
}

.footer-logo-wrap img {
    height: 75px;
    display: block;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 1.8rem;
    max-width: 230px;
}

.footer-social {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.footer-social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.13);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.04);
}

.footer-social-btn:hover {
    background: #3ecba5;
    border-color: #3ecba5;
    color: #0f2420;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62,203,165,0.3);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(62,203,165,0.06);
    border: 1px solid rgba(62,203,165,0.15);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    width: fit-content;
    transition: all 0.2s;
}

.footer-badge:hover {
    background: rgba(62,203,165,0.1);
    color: rgba(255,255,255,0.75);
}

.footer-badge i { color: #3ecba5; font-size: 0.68rem; }

/* Nav col */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-nav a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -18px;
    color: #3ecba5;
    font-size: 0.75rem;
    transition: left 0.2s ease;
    opacity: 0;
}

.footer-nav a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 22px;
}

.footer-nav a:hover::before {
    left: 0;
    opacity: 1;
}

/* Unit cards */
.footer-unit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1.4rem;
    transition: border-color 0.3s;
}

.footer-unit-card:hover {
    border-color: rgba(62,203,165,0.2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: rgba(255,255,255,0.58);
    font-size: 0.84rem;
    line-height: 1.55;
}

.footer-contact-item:last-of-type { margin-bottom: 0; }

.footer-contact-item .icon-wrap {
    width: 22px; height: 22px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(62,203,165,0.1);
    border-radius: 5px;
    margin-top: 1px;
}

.footer-contact-item .icon-wrap i {
    font-size: 0.7rem;
    color: #3ecba5;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 1rem 0;
}

.footer-exams-tag {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.2px;
    margin-bottom: 1rem;
}

.footer-exams-tag strong {
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
}

.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.2);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    color: white;
}

.footer-whatsapp-btn i { font-size: 0.95rem; }

/* Bottom strip */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0 2rem;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: none;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-bottom-left .copy {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
}

.footer-bottom-left .credit {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.22);
}

.footer-bottom-left .credit a {
    color: rgba(62,203,165,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-left .credit a:hover { color: #3ecba5; }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: #3ecba5;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal a:hover::after { transform: scaleX(1); }

.footer-legal .sep {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
}

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

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ─── MAPS SECTION ─── */
.maps-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 440px;
    width: 100%;
}

.maps-panel {
    position: relative;
    overflow: hidden;
}

.maps-panel iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(15%);
}

.maps-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    z-index: 10;
    pointer-events: none;
    border-left: 3px solid var(--primary);
}

.maps-label strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.maps-label span {
    font-size: 0.75rem;
    color: var(--text-body);
    line-height: 1.45;
}

.maps-panel + .maps-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: white;
    z-index: 5;
}

@media (max-width: 640px) {
    .maps-section { grid-template-columns: 1fr; height: auto; }
    .maps-panel { height: 300px; }
    .maps-panel + .maps-panel::before { width: 100%; height: 3px; }
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 61, 115, 0.1);
    background: var(--white);
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
    width: 800px;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    bottom: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Hamburger menu, iOS/Safari, Android
   ═══════════════════════════════════════════════════════════ */

/* ── iOS / Safari / Android global fixes ── */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

button, a, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* ── Hamburger Toggle Button ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: var(--accent);
    outline: none;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
    pointer-events: none;
}

/* Hamburger → X animation */
body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Tablet / Mobile breakpoint — 992px ── */
@media (max-width: 992px) {

    /* Disable backdrop-filter on header so position:fixed nav works correctly
       (backdrop-filter creates a containing block for fixed elements in Chrome) */
    .header-main {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.99);
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
        min-height: 70px;
    }

    .brand-logo img {
        height: 46px;
    }

    /* Show hamburger */
    .nav-toggle {
        display: flex;
    }

    /* ── Mobile nav panel — slides in from right ── */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 998;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-top: 72px;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        /* Hidden state */
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.28s ease,
                    visibility 0.32s ease;
        will-change: transform;
    }

    /* Open state */
    body.nav-open .nav-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when nav is open */
    body.nav-open {
        overflow: hidden;
        position: relative;
    }

    /* Nav links on mobile */
    .nav-link {
        padding: 1rem 0.25rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
    }

    .nav-link::after {
        display: none; /* remove underline hover on mobile */
    }

    /* ── Mobile Dropdown — accordion behavior ── */
    .dropdown > .nav-link {
        cursor: pointer;
    }

    .dropdown > .nav-link .fa-chevron-down {
        transition: transform 0.25s ease;
    }

    .dropdown.open > .nav-link .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        border-left: 3px solid var(--secondary);
        margin-left: 0.5rem;
        background: var(--bg-light);
        transition: max-height 0.3s ease;
    }

    .dropdown.open .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-item {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .dropdown-item:hover {
        padding-left: 1.5rem;
    }

    /* Two-col layout stacks */
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Hero */
    .hero-title { font-size: 1.9rem; }
    .hero-text-box { padding: 2rem 1.8rem; }

    /* Cookie banner stacks */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ── Mobile — 768px ── */
@media (max-width: 768px) {

    /* Container */
    .container { padding: 0 1.1rem; }

    /* Section padding */
    .section-padding { padding: 3.5rem 0; }

    /* Title section */
    .title-section h2 { font-size: 1.8rem; }
    .title-section p { font-size: 1rem; }

    /* Hero — iOS Safari min-height fix */
    .hero-section {
        min-height: 85vh;
        min-height: 85svh;
        padding: 1.5rem 0;
    }

    .hero-content { padding: 0 1rem; gap: 1.2rem; }

    .hero-text-box {
        padding: 1.4rem 1.2rem;
        border-radius: 20px;
        max-width: 100%;
    }

    .hero-title { font-size: 1.65rem; }
    .hero-subtitle { font-size: 0.92rem; margin-bottom: 1.5rem; }
    .hero-badge { font-size: 0.68rem; margin-bottom: 0.9rem; }

    .hero-actions {
        flex-direction: column;
        gap: 0.85rem;
    }

    .hero-unit-cta {
        min-width: unset;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0.9rem 1.1rem;
    }

    .hero-unit-address { text-align: left; }

    .hero-unit-btn {
        flex-shrink: 0;
        padding: 0.65rem 1.1rem;
        font-size: 0.88rem;
    }

    .hero-unit-btn-text small { display: none; } /* hide "nessa unidade" on small screens */

    .hero-features-row { gap: 0.5rem; }

    .hero-feat-item {
        padding: 0.55rem 0.9rem;
        font-size: 0.78rem;
    }

    /* Features grid — force 1 col on mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0 1.1rem;
        margin: 2rem auto;
    }

    /* Page header */
    .page-header { padding: 3.5rem 0 3rem; }

    .page-header h1 {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .page-header p { font-size: 0.97rem; }

    /* Two col layout */
    .two-col-layout { gap: 2rem; }

    .content-text h3 { font-size: 1.55rem; }
    .content-text p { font-size: 1rem; }

    /* Info box */
    .info-box { padding: 2rem 1.25rem; margin-top: 2.5rem; }
    .info-box .preparo-note { padding: 0.85rem 1rem; }

    /* Reviews */
    .reviews-section { padding: 3.5rem 0; }
    .reviews-header h2 { font-size: 1.8rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    /* Maps */
    .maps-section { grid-template-columns: 1fr; height: auto; }
    .maps-panel { height: 280px; }
    .maps-panel + .maps-panel::before { width: 100%; height: 3px; top: auto; left: 0; }

    /* Footer improvements */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }

    /* Cookie banner — safe area insets for iPhone notch/home bar */
    .cookie-banner {
        bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
        left: max(1rem, env(safe-area-inset-left, 1rem));
        right: max(1rem, env(safe-area-inset-right, 1rem));
        transform: none;
        width: auto;
        max-width: none;
        padding: 1.1rem 1.25rem;
    }

    .cookie-banner.show {
        bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
    }

    /* Content highlight */
    .content-highlight { padding: 1.25rem 1.25rem; font-size: 0.97rem; }

    /* Legal pages */
    .legal-doc { padding: 2rem 1.25rem; }
}

/* ── Small mobile — 480px ── */
@media (max-width: 480px) {

    .hero-title { font-size: 1.45rem; }
    .hero-features-row { flex-wrap: wrap; justify-content: center; }

    .page-header h1 { font-size: 1.75rem; }
    .title-section h2 { font-size: 1.55rem; }

    .reviews-header h2 { font-size: 1.55rem; }
    .content-text h3 { font-size: 1.35rem; }

    .btn { font-size: 0.95rem; padding: 0.7rem 1.25rem; }

    /* Footer legal links stack */
    .footer-legal { flex-direction: column; gap: 0.6rem; }
    .footer-legal .sep { display: none; }

    /* Hero unit-cta stack on very small */
    .hero-unit-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-unit-address { text-align: center; }
    .hero-unit-btn { width: 100%; }
}

/* ── Large screens ── */
@media (min-width: 993px) {
    /* Desktop dropdown on hover */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
