:root {
    --primary-dark: #0a1628;
    --secondary-dark: #1a2642;
    --accent-cyan: #00d9ff;
    --accent-blue: #2563eb;
    --surface-1: #0f1f38;
    --surface-2: #132748;
    --surface-3: rgba(255, 255, 255, 0.06);
    --surface-4: rgba(255, 255, 255, 0.1);
    --border-color: rgba(0, 217, 255, 0.18);
    --text-light: #e5e7eb;
    --text-muted: #9ca3af;
    --shadow-soft: 0 30px 80px rgba(3, 10, 20, 0.32);
    --shadow-line: 0 0 0 1px rgba(255, 255, 255, 0.03);
    --gradient-main: linear-gradient(135deg, #0a1628 0%, #1a2642 48%, #10213e 100%);
    --gradient-accent: linear-gradient(135deg, #00d9ff 0%, #2563eb 100%);
    --max-width: 1180px;
    --header-height: 88px;
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
p,
figure,
ul {
    margin: 0;
}

ul {
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text-light);
    background:
        radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.18), transparent 32%),
        linear-gradient(180deg, #08111f 0%, #0a1628 18%, #0e1d35 100%);
    min-width: 320px;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    content-visibility: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--accent-cyan);
    color: var(--primary-dark);
    font-weight: 800;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.glass-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(22px) saturate(145%);
    box-shadow:
        0 24px 60px rgba(2, 8, 18, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-panel::before,
.content-card::before,
.service-card::before,
.fact-card::before,
.map-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
    pointer-events: none;
}

.section {
    position: relative;
    padding: clamp(1.1rem, 1.9vw, 1.45rem) 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.hero.section {
    content-visibility: visible;
    contain-intrinsic-size: none;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(19, 39, 72, 0.5), rgba(10, 22, 40, 0.14)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(0.55rem, 1.05vw, 0.72rem);
}

.eyebrow,
.card-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2,
.content-card h3,
.service-card h3,
.map-copy h3,
.fact-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    line-height: 1.1;
}

.section-heading h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    max-width: 18ch;
}

.section-heading p:last-child {
    max-width: 60ch;
}

.section-heading p:last-child,
.content-card p,
.service-card p,
.map-copy p,
.footer-text,
.contact-block p,
.contact-links a {
    color: var(--text-muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.25rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gradient-accent);
    color: #03131d;
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.button-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
    color: #fff;
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.48);
}

.button-secondary {
    border-color: rgba(0, 217, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--text-light);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: background-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 17, 31, 0.68);
    backdrop-filter: blur(24px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(3, 10, 20, 0.22);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-height);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand img {
    width: 60px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-copy span:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.site-nav a,
.mobile-nav a {
    position: relative;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.24s ease;
}

.site-nav a::after,
.mobile-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gradient-accent);
    transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--text-light);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle,
.mobile-panel,
.mobile-overlay {
    display: none;
}

.menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
    position: absolute;
    left: 12px;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease;
}

.menu-toggle span:nth-child(1) {
    top: 15px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}

.menu-toggle.is-open span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}

.hero {
    overflow: clip;
    padding-top: 0.9rem;
    padding-bottom: clamp(1.35rem, 2.4vw, 1.75rem);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(22px);
    pointer-events: none;
}

.hero::before {
    width: 28rem;
    height: 28rem;
    top: -10rem;
    left: -8rem;
    background: rgba(0, 217, 255, 0.14);
}

.hero::after {
    width: 22rem;
    height: 22rem;
    right: -5rem;
    bottom: 3rem;
    background: rgba(37, 99, 235, 0.15);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(0.85rem, 1.7vw, 1.1rem);
    align-items: center;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.94;
    max-width: 10ch;
}

.hero-tagline {
    margin: 0.65rem 0 1rem;
    color: var(--accent-cyan);
    font-size: clamp(1.1rem, 2.6vw, 1.7rem);
    font-weight: 800;
}

.hero-description {
    max-width: 60ch;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 1.2rem;
}

.hero-highlights {
    display: grid;
    gap: 0.7rem;
    list-style: none;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
}

.hero-highlights li::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--gradient-accent);
    box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.08);
}

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-content: start;
    padding: 1.5rem;
    border-radius: 28px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.72) 0%, rgba(5, 10, 20, 0.52) 60%, rgba(5, 10, 20, 0.65) 100%);
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-card-stack {
    align-items: start;
}

.hero-info-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    gap: 0.7rem;
    min-height: 11.25rem;
    padding: 1.15rem 1.15rem 1.05rem;
    border: 1px solid rgba(0, 217, 255, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(13, 28, 51, 0.26)),
        radial-gradient(circle at top right, rgba(0, 217, 255, 0.16), transparent 35%);
    box-shadow:
        0 24px 60px rgba(2, 8, 18, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-info-card > * {
    position: relative;
    z-index: 1;
}

.hero-info-card::after {
    content: "";
    position: absolute;
    right: -2.5rem;
    bottom: -3rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.26), transparent 66%);
    opacity: 0.42;
    transform: scale(0.88);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.hero-info-card h3 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.22rem, 2vw, 1.42rem);
    line-height: 1.08;
}

.hero-info-card p {
    color: var(--text-muted);
    line-height: 1.55;
}

.hero-info-card-wide {
    grid-column: 1 / -1;
    min-height: auto;
}

.hero-info-card:focus-within,
.hero-info-card:active {
    transform: translateY(-2px);
    border-color: rgba(0, 217, 255, 0.34);
    box-shadow:
        0 30px 72px rgba(2, 8, 18, 0.4),
        0 0 0 1px rgba(0, 217, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.hero-info-card:focus-within::after,
.hero-info-card:active::after {
    opacity: 0.62;
    transform: scale(1);
}

.hero-hours {
    display: grid;
    gap: 0.7rem;
}

.hero-hours div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-hours strong {
    color: var(--text-light);
}

.hero-hours span {
    color: var(--text-muted);
    text-align: right;
}

.hero-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-info-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 2.7rem;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.hero-info-actions a:hover,
.hero-info-actions a:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(0, 217, 255, 0.35);
    color: var(--text-light);
}

.hero-stage {
    position: relative;
    overflow: hidden;
    border: 0;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 10, 18, 0.08) 0%, rgba(5, 10, 18, 0.42) 58%, rgba(5, 10, 18, 0.7) 100%),
        linear-gradient(120deg, rgba(0, 217, 255, 0.1), transparent 42%);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stage-copy,
.hero-stage-controls {
    position: relative;
    z-index: 1;
}

.hero-stage-copy {
    display: grid;
    gap: 0.35rem;
}

.hero-stage-copy strong {
    font-size: 1.25rem;
    font-family: "Sora", sans-serif;
}

.hero-stage-copy span:last-child {
    color: var(--text-muted);
}

.gallery-stage-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-stage-status {
    display: grid;
    gap: 0.3rem;
    min-width: 8rem;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    text-align: right;
}

.gallery-stage-status span {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gallery-stage-status strong {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
}

.hero-stage-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.hero-nav {
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
}

.hero-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.hero-nav:hover,
.hero-nav:focus-visible {
    transform: translateY(-1px);
    background: rgba(0, 217, 255, 0.18);
}

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0.55rem;
}

.hero-dot {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0.55;
    transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible,
.hero-dot:active {
    background: var(--accent-cyan);
    opacity: 1;
    transform: scale(1.08);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.content-card,
.service-card,
.fact-card,
.map-card {
    position: relative;
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(20px) saturate(145%);
    box-shadow:
        0 24px 60px rgba(2, 8, 18, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.content-card {
    min-height: 100%;
}

.content-card-accent {
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.16), rgba(37, 99, 235, 0.08));
}

.content-card h3,
.map-copy h3 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    margin-bottom: 0.7rem;
}

.content-card p + p {
    margin-top: 0.8rem;
}

.hours-list {
    display: grid;
    gap: 0.85rem;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
}

.hours-list strong {
    color: var(--text-light);
}

.hours-list span {
    color: var(--text-muted);
    text-align: right;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.fact-number,
.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-cyan);
    font-weight: 800;
}

.fact-card p,
.service-card p {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-card {
    display: grid;
    align-content: start;
    gap: 0.45rem;
    min-height: 100%;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -15% -45% auto;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.06);
    filter: blur(8px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr auto;
    gap: 0.75rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--featured {
    grid-row: 1 / 3;
    min-height: 28rem;
}

.gallery-item--wide {
    grid-column: 1 / 3;
    height: 18rem;
}

.gallery-item--wide img {
    object-position: center 65%;
}

.contact-card,
.map-card {
    display: grid;
    gap: 1rem;
}

.contact-block strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-block p {
    margin: 0;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.7rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    color: var(--text-light);
    transform: translateY(-1px);
    border-color: rgba(0, 217, 255, 0.35);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.map-card {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(25, 52, 92, 0.72), rgba(10, 22, 40, 0.86));
}

.map-copy {
    padding: 0.25rem 0.25rem 0;
}

.map-frame {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 360px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    filter: grayscale(0.08) saturate(0.9);
}

.site-footer {
    padding: 1rem 0 1.2rem;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 217, 255, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.98));
}

.footer-panel {
    padding: 1rem 1.05rem;
    border-radius: 32px;
}

.footer-shell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.1rem;
    padding-bottom: 0.8rem;
}

.footer-brand {
    margin-bottom: 0.8rem;
}

.footer-brand-block {
    max-width: 24rem;
}

.footer-text {
    max-width: 52ch;
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    flex: 1;
}

.footer-column {
    display: grid;
    gap: 0.7rem;
}

.footer-link-list {
    display: grid;
    gap: 0.7rem;
}

.footer-link-list a,
.footer-inline-link,
.footer-meta p,
.footer-meta-links a {
    color: var(--text-muted);
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-inline-link:hover,
.footer-inline-link:focus-visible,
.footer-meta-links a:hover,
.footer-meta-links a:focus-visible {
    color: var(--text-light);
}

.footer-note {
    margin: 0;
    color: var(--text-muted);
}

.footer-inline-link {
    display: inline-flex;
    width: fit-content;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.4);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.3rem;
    padding: 0.75rem 1rem 0.75rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(0, 217, 255, 0.34);
    color: var(--text-light);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.12);
    color: var(--accent-cyan);
}

.social-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.footer-divider {
    display: inline-block;
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.12);
    vertical-align: middle;
}

.footer-powered {
    color: var(--text-muted);
    font-size: 0.78rem;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-powered:hover,
.footer-powered:focus-visible {
    opacity: 1;
    color: var(--accent-cyan);
}

@media (hover: hover) and (pointer: fine) {
    .hero-info-card,
    .content-card,
    .service-card,
    .fact-card,
    .map-card,
    .footer-panel {
        transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
    }

    .hero-info-card:hover,
    .content-card:hover,
    .service-card:hover,
    .fact-card:hover,
    .map-card:hover,
    .footer-panel:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.26);
        box-shadow:
            0 28px 72px rgba(2, 8, 18, 0.38),
            0 0 0 1px rgba(0, 217, 255, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .hero-info-card:hover::after {
        opacity: 0.66;
        transform: scale(1);
    }
}

.footer-meta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3.4rem;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.52);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

body.menu-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-facts {
        grid-template-columns: 1fr;
    }

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

    .footer-shell {
        flex-direction: column;
    }

    .footer-columns {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-panel {
        position: fixed;
        inset: calc(var(--header-height) + 1.4rem) 1rem auto 1rem;
        z-index: 55;
        padding: 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        background: rgba(8, 17, 31, 0.94);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow-soft);
    }

    .mobile-panel.is-open,
    .mobile-overlay.is-open {
        display: block;
    }

    .mobile-nav {
        display: grid;
        gap: 0.95rem;
    }

    .mobile-nav a {
        padding-bottom: 0.2rem;
    }

    .mobile-panel-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.2rem;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 45;
        background: rgba(3, 7, 14, 0.48);
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--featured {
        grid-row: auto;
        min-height: 22rem;
    }

    .gallery-item--wide {
        grid-column: 1;
        height: 14rem;
    }

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

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 1.1rem 0;
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--max-width));
    }

    .brand-copy span:last-child {
        display: none;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-actions,
    .contact-actions,
    .mobile-panel-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-stage {
        width: 100%;
        min-height: 20.5rem;
    }

    .gallery-item--featured {
        min-height: 18rem;
    }

    .gallery-item--wide {
        height: 12rem;
    }

    .hero-hours div {
        flex-direction: column;
    }

    .hero-stage-copy,
    .hero-stage-controls {
        gap: 0.7rem;
    }

    .hero-nav {
        width: 2.7rem;
        height: 2.7rem;
    }

    .hours-list div {
        flex-direction: column;
    }

    .hours-list span {
        text-align: left;
    }

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

    .map-frame,
    .map-frame iframe {
        min-height: 280px;
    }

    .footer-panel {
        padding: 0.9rem;
        border-radius: 24px;
    }
}
