:root {
    --bg-main: #020202;
    --bg-panel: #0a0a0a;
    --bg-panel-2: #131313;
    --gold: #d4af37;
    --gold-light: #f6e3a1;
    --gold-bright: #ffe8a3;
    --gold-deep: #8f6a12;
    --text-soft: #f7f1e3;
    --line-soft: rgba(255, 232, 163, 0.26);
}

* {
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 30%),
        linear-gradient(180deg, #0b0b0b 0%, var(--bg-main) 30%);
    color: var(--text-soft);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../img/logo_negro.jpeg") center 32% / cover no-repeat;
    opacity: 0.15;
    filter: blur(12px) grayscale(0.04);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.section {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

a {
    color: inherit;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-light);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.site-status {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 232, 163, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(247, 241, 227, 0.82);
    font-size: 0.88rem;
}

/* ----- HEADER ----- */

#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 30;
}

.site-header {
    position: relative;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease,
        border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: rgba(255, 232, 163, 0.14);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    height: 84px;
}

/* ----- Brand / logo ----- */
.site-header .brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .brand img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 210px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.16));
    transition: filter 0.35s ease, transform 0.35s ease;
}

.site-header .brand:hover img {
    filter: drop-shadow(0 2px 18px rgba(255, 232, 163, 0.34));
    transform: translateY(-1px);
}

/* ----- Menu ----- */
.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-header .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .nav-links a {
    position: relative;
    color: rgba(247, 241, 227, 0.78);
    text-decoration: none;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-header .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
    transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .nav-links a:hover {
    color: var(--gold-bright);
}

.site-header .nav-links a:hover::after {
    width: 100%;
}

/* ----- Actions: language toggle + CTA ----- */
.site-header .nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header .lang-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 232, 163, 0.22);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.site-header .lang-toggle button {
    border: none;
    background: transparent;
    color: rgba(247, 241, 227, 0.58);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 7px 14px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
}

.site-header .lang-toggle button:hover {
    color: var(--gold-bright);
}

.site-header .lang-toggle button.active {
    color: #1a1206;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.site-header .nav-cta {
    padding: 11px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #f8ecbf 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: #1a1206;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px -10px rgba(255, 232, 163, 0.85);
}

/* ----- Hamburger ----- */
.site-header .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 40;
}

.site-header .nav-toggle span {
    width: 26px;
    height: 1.6px;
    border-radius: 2px;
    background: var(--gold-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.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;
}

@media (max-width: 860px) {
    .site-header .nav {
        height: 72px;
    }

    .site-header .brand img {
        height: 40px;
        max-width: 170px;
    }

    .site-header .nav-toggle {
        display: flex;
    }

    .site-header .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 24px;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(18px) saturate(140%);
        border-bottom: 1px solid rgba(255, 232, 163, 0.14);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.38s ease, opacity 0.3s ease, padding 0.38s ease;
    }

    .site-header .nav-menu.is-open {
        max-height: 80vh;
        opacity: 1;
        pointer-events: auto;
        padding: 8px 24px 24px;
    }

    .site-header .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .site-header .nav-links a {
        display: block;
        padding: 16px 2px;
        border-bottom: 1px solid rgba(255, 232, 163, 0.1);
        font-size: 0.9rem;
        letter-spacing: 0.14em;
    }

    .site-header .nav-links a::after {
        display: none;
    }

    .site-header .nav-actions {
        width: 100%;
        justify-content: space-between;
        padding-top: 20px;
    }

    .site-header .nav-cta {
        padding: 12px 30px;
        font-size: 0.8rem;
    }

    .site-header .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6.6px) rotate(45deg);
    }

    .site-header .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .site-header .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6.6px) rotate(-45deg);
    }
}

@media (max-width: 420px) {
    .site-header .nav {
        width: calc(100% - 32px);
    }

    .site-header .brand img {
        height: 36px;
        max-width: 150px;
    }
}

/* ----- SERVICES ----- */

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 40px;
    padding: 92px 0 72px;
}

.home-copy h1 {
    margin: 0;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(3.4rem, 8vw, 6rem);
    line-height: 0.96;
    color: #fff6da;
}

.home-copy h2 {
    margin: 18px 0 18px;
    max-width: 16ch;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.08;
    color: var(--gold-light);
}

.home-copy p {
    max-width: 58ch;
    margin: 0;
    color: rgba(247, 241, 227, 0.82);
    line-height: 1.8;
    font-size: 1.03rem;
}

.home-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.home-primary,
.home-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-primary {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.24), rgba(143, 106, 18, 0.18));
    border: 1px solid rgba(255, 232, 163, 0.42);
    color: #fff7df;
}

.home-secondary {
    border: 1px solid rgba(255, 232, 163, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(247, 241, 227, 0.92);
}

.home-primary:hover,
.home-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.home-carrusel {
    min-width: 0;
}

.home-carousel-shell {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 232, 163, 0.14);
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(20, 20, 20, 0.94));
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-carousel-track {
    position: absolute;
    inset: 0;
}

.home-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.04);
    animation: home-slide-cycle 72.8s infinite;
}

.home-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.14), rgba(4, 4, 4, 0.46)),
        linear-gradient(90deg, rgba(4, 4, 4, 0.26), transparent 40%, transparent 60%, rgba(4, 4, 4, 0.2));
}

.home-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.home-slide:nth-child(1) {
    animation-delay: 0s;
}

.home-slide:nth-child(2) {
    animation-delay: 5.6s;
}

.home-slide:nth-child(3) {
    animation-delay: 11.2s;
}

.home-slide:nth-child(4) {
    animation-delay: 16.8s;
}

.home-slide:nth-child(5) {
    animation-delay: 22.4s;
}

.home-slide:nth-child(6) {
    animation-delay: 28s;
}

.home-slide:nth-child(7) {
    animation-delay: 33.6s;
}

.home-slide:nth-child(8) {
    animation-delay: 39.2s;
}

.home-slide:nth-child(9) {
    animation-delay: 44.8s;
}

.home-slide:nth-child(10) {
    animation-delay: 50.4s;
}

.home-slide:nth-child(11) {
    animation-delay: 56s;
}

.home-slide:nth-child(12) {
    animation-delay: 61.6s;
}

.home-slide:nth-child(13) {
    animation-delay: 67.2s;
}

.home-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-carousel-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-carousel-label {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 232, 163, 0.24);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(10px);
    color: #fff4d0;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-carousel-progress {
    position: relative;
    flex: 1;
    max-width: 180px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.home-carousel-progress span {
    position: absolute;
    inset: 0;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgba(255, 232, 163, 0.86), rgba(212, 175, 55, 0.72));
    animation: home-carousel-progress 5.6s linear infinite;
}

@keyframes home-slide-cycle {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }

    2.5%,
    11% {
        opacity: 1;
        transform: scale(1);
    }

    13.5%,
    100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

@keyframes home-carousel-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


.services-section {
    min-height: calc(100vh - 110px);
    padding: 34px 0 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-intro {
    max-width: 720px;
    margin-bottom: 18px;
}

.section-intro h1,
.contact-card h2 {
    margin: 0 0 16px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(1.8rem, 3.8vw, 2.9rem);
    line-height: 1.08;
    color: #fff7df;
}

.section-intro p,
.contact-card p {
    margin: 0;
    color: rgba(247, 241, 227, 0.82);
    font-size: 0.98rem;
    line-height: 1.6;
}

.services-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.service-arrow {
    width: 54px;
    height: 54px;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.94), rgba(22, 22, 22, 0.92));
    color: var(--gold-light);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 232, 163, 0.45);
    color: #fff7df;
}

.services-track {
    position: relative;
    height: 470px;
    perspective: 1800px;
    transform-style: preserve-3d;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
}

.service-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(460px, 52vw);
    min-height: 390px;
    padding: 26px 30px;
    background:
        radial-gradient(circle at top right, rgba(var(--card-accent), 0.18), transparent 34%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(22, 22, 22, 0.96));
    border: 1px solid rgba(255, 232, 163, 0.16);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translate(-50%, -50%);
    transition:
        transform 0.65s ease,
        opacity 0.45s ease,
        filter 0.45s ease,
        box-shadow 0.45s ease;
    opacity: 0;
    pointer-events: none;
    filter: blur(10px);
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

.service-card:nth-child(1) {
    --card-accent: 212, 175, 55;
}

.service-card:nth-child(2) {
    --card-accent: 118, 164, 255;
}

.service-card:nth-child(3) {
    --card-accent: 112, 192, 145;
}

.service-card:nth-child(4) {
    --card-accent: 204, 129, 221;
}

.service-card:nth-child(5) {
    --card-accent: 95, 205, 214;
}

.service-card[data-position="0"] {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 5;
    filter: blur(0);
    pointer-events: auto;
    box-shadow:
        0 28px 54px rgba(0, 0, 0, 0.34),
        0 0 24px rgba(var(--card-accent), 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card[data-position="-1"] {
    transform: translate3d(calc(-50% - 320px), -50%, 20px) rotateY(36deg) scale(0.86);
    opacity: 0.66;
    z-index: 4;
    filter: blur(1.5px);
}

.service-card[data-position="1"] {
    transform: translate3d(calc(-50% + 320px), -50%, 20px) rotateY(-36deg) scale(0.86);
    opacity: 0.66;
    z-index: 4;
    filter: blur(1.5px);
}

.service-card[data-position="-2"] {
    transform: translate3d(calc(-50% - 470px), -50%, -120px) rotateY(44deg) scale(0.72);
    opacity: 0.24;
    z-index: 3;
    filter: blur(4px);
}

.service-card[data-position="2"] {
    transform: translate3d(calc(-50% + 470px), -50%, -120px) rotateY(-44deg) scale(0.72);
    opacity: 0.24;
    z-index: 3;
    filter: blur(4px);
}

.service-card:not([data-position="0"]):not([data-position="-1"]):not([data-position="1"]):not([data-position="-2"]):not([data-position="2"]) {
    transform: translate3d(-50%, -50%, -220px) scale(0.6);
    opacity: 0;
    z-index: 1;
}

.service-tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 232, 163, 0.18);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(var(--card-accent), 0.08);
}

.service-card h2 {
    margin: 0 0 18px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    color: #fff6da;
}

.service-card p {
    margin: 0 0 18px;
    color: rgba(247, 241, 227, 0.82);
    line-height: 1.6;
    font-size: 0.96rem;
}

.service-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-points li {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 232, 163, 0.12);
    color: rgba(247, 241, 227, 0.74);
    line-height: 1.5;
    font-size: 0.94rem;
}

/* ----- APP / DOWNLOADS ----- */

.downloads-intro {
    max-width: 640px;
    padding-top: 24px;
}

.downloads-intro h2 {
    margin: 0 0 16px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #fff7df;
}

.downloads-intro p {
    margin: 0;
    color: rgba(247, 241, 227, 0.82);
    line-height: 1.75;
    font-size: 1.02rem;
}

.downloads-card {
    margin: 32px 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.05fr);
    gap: 32px;
    align-items: start;
    padding: 36px clamp(22px, 4vw, 40px);
    border: 1px solid rgba(255, 232, 163, 0.16);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.1), rgba(10, 10, 10, 0.92));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), 0 0 26px rgba(212, 175, 55, 0.06);
}

.downloads-lead {
    margin: 0 0 22px;
    color: rgba(247, 241, 227, 0.82);
    line-height: 1.7;
}

.downloads-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.downloads-open {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border: 1px solid rgba(255, 232, 163, 0.46);
    border-radius: 999px;
    color: #fff7df;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.24), rgba(143, 106, 18, 0.16));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.downloads-open svg { width: 17px; height: 17px; }
.downloads-open:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(212, 175, 55, 0.6); }

.downloads-url { color: rgba(247, 241, 227, 0.7); text-decoration: none; font-size: 0.94rem; }
.downloads-url:hover { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

.downloads-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.downloads-steps li { display: flex; gap: 14px; align-items: flex-start; }

.downloads-steps .dl-ico {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(255, 232, 163, 0.18);
    background: rgba(212, 175, 55, 0.1);
}

.downloads-steps .dl-ico svg { width: 20px; height: 20px; stroke: var(--gold-light); }
.downloads-steps b { display: block; margin-bottom: 3px; color: #fff6da; font-weight: 600; }
.downloads-steps span:not(.dl-ico) { color: rgba(247, 241, 227, 0.74); line-height: 1.6; font-size: 0.95rem; }

@media (max-width: 760px) {
    .downloads-card { grid-template-columns: 1fr; gap: 26px; }
}

/* ----- CONTACT ----- */

.contact-section {
    padding: 72px 0 96px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: center;
}

.contact-intro {
    max-width: 620px;
}

.contact-intro h2 {
    margin: 0 0 16px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #fff7df;
}

.contact-intro p,
.contact-lead {
    margin: 0;
    color: rgba(247, 241, 227, 0.82);
    line-height: 1.75;
    font-size: 1.02rem;
}

.contact-card {
    width: min(100%, 540px);
    justify-self: end;
    padding: 38px 40px;
    border: 1px solid rgba(255, 232, 163, 0.16);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(19, 19, 19, 0.94));
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.3),
        0 0 26px rgba(212, 175, 55, 0.06);
}

.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-points span {
    padding: 8px 14px;
    border: 1px solid rgba(255, 232, 163, 0.14);
    border-radius: 999px;
    color: rgba(247, 241, 227, 0.78);
    background: rgba(255, 255, 255, 0.02);
}

.contact-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 232, 163, 0.46);
    border-radius: 999px;
    color: #fff7df;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), rgba(143, 106, 18, 0.14));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-mail:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(212, 175, 55, 0.12);
}

.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: start;
    padding: 76px 0 36px;
}

.about-copy {
    position: relative;
}

.about-copy h2 {
    margin: 0 0 20px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #fff7df;
}

.about-copy p {
    margin: 0 0 16px;
    color: rgba(247, 241, 227, 0.8);
    line-height: 1.8;
}

.about-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.about-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px 0 12px;
    border: 1px solid rgba(255, 232, 163, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(247, 241, 227, 0.84);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 232, 163, 0.34);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.about-social-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.about-social-link path {
    fill: currentColor;
    stroke: none;
}

.about-social-link .social-dot {
    fill: currentColor;
    stroke: none;
}

.about-social-link span {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.about-map-panel h3 {
    margin: 0 0 12px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 2rem;
    line-height: 1.1;
    color: #fff5d6;
}

.about-map-panel p {
    margin: 0 0 18px;
    color: rgba(247, 241, 227, 0.76);
    line-height: 1.65;
    font-size: 0.97rem;
}

.dr-map {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 10px;
    border: 1px solid rgba(255, 232, 163, 0.1);
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(255, 232, 163, 0.08), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.globe-wrap {
    position: relative;
    width: 100%;
    min-height: 280px;
}

#globe-map {
    width: 100%;
    min-height: 280px;
}

#globe-map canvas {
    display: block;
    width: 100%;
    height: 280px;
}

.globe-tag {
    position: absolute;
    right: 18px;
    bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 232, 163, 0.24);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.72);
    color: #ffe8a3;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    letter-spacing: 0.04em;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.14);
}

.about-panel {
    padding: 26px;
    border: 1px solid rgba(255, 232, 163, 0.16);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(19, 19, 19, 0.92));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.site-footer {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 26px;
    padding: 30px 0 10px;
    border-top: 1px solid rgba(255, 232, 163, 0.12);
}

.reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-brand {
    margin: 0;
    color: rgba(247, 241, 227, 0.8);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-socials {
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px 0 12px;
    border: 1px solid rgba(255, 232, 163, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(247, 241, 227, 0.84);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 232, 163, 0.34);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.social-link .social-dot {
    fill: currentColor;
    stroke: none;
}

.social-link span {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.footer-links a,
.footer-bottom a,
.footer-bottom p {
    margin: 0;
    color: rgba(247, 241, 227, 0.68);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 232, 163, 0.08);
}

@media (max-width: 900px) {
    .home-hero,
    .about-section,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .home-highlight {
        justify-content: flex-start;
    }

    .services-carousel {
        grid-template-columns: 1fr;
    }

    .service-arrow {
        display: none;
    }

    .services-track {
        height: auto;
        perspective: none;
        mask-image: none;
        display: grid;
        gap: 18px;
        overflow: visible;
    }

    .service-card,
    .service-card[data-position],
    .service-card:not([data-position="0"]):not([data-position="-1"]):not([data-position="1"]):not([data-position="-2"]):not([data-position="2"]) {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        opacity: 1;
        filter: none;
        pointer-events: auto;
        z-index: auto;
        aspect-ratio: auto;
    }

    .service-points {
        grid-template-columns: 1fr;
    }

    .contact-card {
        justify-self: stretch;
        width: 100%;
    }

    .about-section {
        gap: 24px;
    }

    .about-copy,
    .about-panel,
    .about-map-panel,
    .dr-map,
    .globe-wrap,
    #globe-map {
        min-width: 0;
        width: 100%;
    }

    .about-panel {
        padding: 24px;
    }

    .about-copy h2 {
        max-width: 12ch;
    }

    .dr-map {
        min-height: 260px;
    }

    .globe-wrap,
    #globe-map,
    #globe-map canvas {
        min-height: 240px;
        height: 240px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .section {
        width: min(100% - 28px, 1120px);
    }

    .home-carrusel {
        display: none;
    }

    .home-hero {
        gap: 22px;
        padding-bottom: 48px;
    }

    .services-section {
        min-height: auto;
        padding-top: 52px;
    }

    .service-card,
    .contact-card {
        padding: 28px 22px;
    }

    .service-card {
        width: 100%;
        min-height: auto;
    }

    .home-copy h2 {
        max-width: none;
    }

    .home-carousel-shell {
        border-radius: 24px;
    }

    .home-carousel-overlay {
        right: 14px;
        bottom: 14px;
        left: 14px;
        gap: 10px;
    }

    .home-carousel-label {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .home-carousel-progress {
        max-width: 110px;
    }

    .about-section {
        gap: 20px;
        padding-top: 56px;
    }

    .about-copy h2 {
        max-width: none;
        font-size: clamp(1.9rem, 10vw, 2.45rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .about-copy p,
    .about-map-panel p {
        font-size: 0.95rem;
        line-height: 1.72;
        overflow-wrap: anywhere;
    }

    .about-panel {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .about-socials {
        gap: 10px;
    }

    .about-social-link {
        width: 100%;
        justify-content: center;
        padding: 0 14px;
    }

    .about-social-link span {
        overflow-wrap: anywhere;
    }

    .dr-map {
        min-height: 224px;
        padding: 8px;
        border-radius: 20px;
    }

    .globe-wrap,
    #globe-map,
    #globe-map canvas {
        min-height: 208px;
        height: 208px;
    }

    .globe-tag {
        right: 10px;
        bottom: 10px;
        padding: 7px 11px;
        font-size: 0.8rem;
    }

    .site-footer {
        width: min(100% - 28px, 1120px);
    }

    #header-placeholder {
        padding: 12px 14px 0;
    }

    body::before {
        background: url("../img/logo_negro_fondo.jpg") center 56% / cover no-repeat;
        opacity: 0.16;
    }
}
