:root {

    --black: #030303;
    --black-soft: #090909;
    --black-light: #111111;

    --white: #ffffff;

    --silver: #bdbdbd;
    --silver-light: #f5f5f5;
    --silver-dark: #6b6b6b;

    --border: rgba(255,255,255,0.12);

    --title: "Cormorant Garamond", serif;
    --body: "Montserrat", sans-serif;

    --transition: 0.35s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: white;
    font-family: var(--body);
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.section {
    padding: 115px 0;
}


.section-container {
    width: min(1200px, 90%);
    margin: auto;
}


/* =====================================================
   TEXTOS GENERALES
===================================================== */

.section-label {

    display: block;

    margin-bottom: 18px;

    color: #aaa;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 4px;
}


.shine-title {

    font-family: var(--title);

    font-size:
        clamp(48px, 5vw, 72px);

    line-height: 1;

    font-weight: 500;

    color: white;

    transition:
        transform 0.4s ease,
        text-shadow 0.4s ease;
}


.shine-title span {

    color: #aaa;

    font-style: italic;

    transition:
        color 0.4s ease;
}


.shine-title:hover {

    transform:
        translateY(-3px);

    text-shadow:
        0 0 10px rgba(255,255,255,0.35),
        0 0 30px rgba(255,255,255,0.14);
}


.shine-title:hover span {
    color: white;
}


.silver-line {

    width: 80px;
    height: 1px;

    margin: 25px 0;

    background:
        linear-gradient(
            90deg,
            #555,
            #fff,
            #555
        );

    box-shadow:
        0 0 10px rgba(255,255,255,0.15);
}


.centered-line {
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);
}


.header.scrolled {

    background:
        rgba(3,3,3,0.95);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid rgba(255,255,255,0.09);
}


.header-container {

    width: min(1400px, 92%);

    height: 90px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 30px;
}


.logo {

    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 10px
            rgba(255,255,255,0.12)
        );

    transition:
        transform 0.4s ease;
}


.logo:hover img {
    transform:
        scale(1.05);
}


.nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;
}


.nav-link {

    position: relative;

    color: #ddd;

    font-size: 11px;

    letter-spacing: 1.8px;

    transition: var(--transition);
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: white;

    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: white;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.header-whatsapp {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border:
        1px solid rgba(255,255,255,0.22);

    font-size: 11px;

    letter-spacing: 1.4px;

    transition: var(--transition);
}


.header-whatsapp:hover {

    background: white;

    color: black;
}


.menu-button {

    display: none;

    width: 35px;

    background: transparent;

    border: none;

    cursor: pointer;
}


.menu-button span {

    display: block;

    height: 1px;

    margin: 7px 0;

    background: white;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #020202 0%,
            #080808 45%,
            #030303 100%
        );
}


.hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


.hero-glow {

    position: absolute;

    border-radius: 50%;
}


.hero-glow-one {

    width: 680px;

    height: 680px;

    right: -180px;

    top: 50%;

    transform:
        translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.11) 0%,
            rgba(180,180,180,0.045) 30%,
            transparent 70%
        );

    animation:
        glowPulse 7s ease-in-out infinite;
}


.hero-glow-two {

    width: 420px;

    height: 420px;

    left: -220px;

    top: 20%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.045),
            transparent 70%
        );
}


@keyframes glowPulse {

    0%,
    100% {

        transform:
            translateY(-50%)
            scale(1);

        opacity: 0.7;
    }

    50% {

        transform:
            translateY(-50%)
            scale(1.08);

        opacity: 1;
    }

}


.hero-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.055);
}


.hero-ring-one {

    width: 560px;
    height: 560px;

    right: -100px;
    top: 50%;

    transform:
        translateY(-50%);

    animation:
        ringFloat 8s ease-in-out infinite;
}


.hero-ring-two {

    width: 410px;
    height: 410px;

    right: -25px;
    top: 50%;

    transform:
        translateY(-50%);

    border-color:
        rgba(255,255,255,0.03);
}


@keyframes ringFloat {

    0%,
    100% {

        transform:
            translateY(-50%)
            scale(1);
    }

    50% {

        transform:
            translateY(-52%)
            scale(1.025);
    }

}


.hero-spark {

    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 18px rgba(255,255,255,0.4);

    opacity: 0.45;

    animation:
        sparkle 3.5s ease-in-out infinite;
}


.spark-1 {
    top: 25%;
    right: 20%;
}


.spark-2 {

    top: 67%;
    right: 32%;

    animation-delay: 1s;
}


.spark-3 {

    top: 39%;
    right: 8%;

    animation-delay: 2s;
}


.spark-4 {

    top: 78%;
    right: 14%;

    animation-delay: 0.6s;
}


@keyframes sparkle {

    0%,
    100% {

        opacity: 0.15;

        transform:
            scale(0.7);
    }

    50% {

        opacity: 1;

        transform:
            scale(1.5);
    }

}


.hero-container {

    position: relative;

    z-index: 5;

    width: min(1200px, 90%);

    margin: auto;
}


.hero-content {

    max-width: 650px;

    text-align: center;

    animation:
        heroEntrance 1.1s ease forwards;
}


@keyframes heroEntrance {

    from {

        opacity: 0;

        transform:
            translateY(28px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


.hero-eyebrow {

    margin-bottom: 18px;

    color: #9a9a9a;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 5px;
}


.hero-logo {

    width: 290px;

    max-width: 75vw;

    margin:
        0 auto 18px;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;

    filter:
        drop-shadow(
            0 0 15px
            rgba(255,255,255,0.10)
        );
}


.hero-logo img {

    display: block;

    width: 100%;

    height: auto;
}


.hero-logo:hover {

    transform:
        scale(1.025);

    filter:
        drop-shadow(
            0 0 26px
            rgba(255,255,255,0.22)
        );
}


.hero-metal-line {

    width: 150px;
    height: 1px;

    margin:
        5px auto 28px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.08);
}


.hero-metal-line span {

    display: block;

    width: 55px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            white,
            transparent
        );

    box-shadow:
        0 0 10px
        rgba(255,255,255,0.55);

    animation:
        metalLine 3s ease-in-out infinite;
}


@keyframes metalLine {

    0% {
        transform:
            translateX(-70px);
    }

    100% {
        transform:
            translateX(180px);
    }

}


.hero-title {

    max-width: 650px;

    margin:
        0 auto 23px;

    font-family:
        var(--title);

    font-size:
        clamp(48px, 5.4vw, 76px);

    font-weight: 500;

    line-height: 0.95;

    color: white;

    letter-spacing: -1px;
}


.hero-title span {

    display: block;

    margin-top: 5px;

    font-style: italic;

    background:
        linear-gradient(
            110deg,
            #777 0%,
            #f3f3f3 35%,
            #a1a1a1 52%,
            #ffffff 70%,
            #777 100%
        );

    background-size:
        200% auto;

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;

    animation:
        silverText 6s linear infinite;
}


@keyframes silverText {

    0% {
        background-position:
            0% center;
    }

    100% {
        background-position:
            200% center;
    }

}


.hero-description {

    max-width: 530px;

    margin: auto;

    color: #c0c0c0;

    font-size: 17px;

    font-weight: 300;

    line-height: 1.9;
}


.hero-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 36px;
}


.btn {

    min-width: 200px;

    padding:
        15px 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1.6px;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.btn-primary {

    color: #050505;

    background:
        linear-gradient(
            110deg,
            #777,
            #f4f4f4,
            #aaa,
            #fff,
            #777
        );

    background-size:
        200% 100%;

    border:
        1px solid rgba(255,255,255,0.6);
}


.btn-primary:hover {

    transform:
        translateY(-4px);

    background-position:
        100% 0;

    box-shadow:
        0 10px 35px
        rgba(255,255,255,0.14);
}


.btn-outline {

    color: white;

    background:
        rgba(255,255,255,0.015);

    border:
        1px solid rgba(255,255,255,0.25);
}


.btn-outline:hover {

    transform:
        translateY(-4px);

    background: white;

    color: black;
}


.hero-scroll {

    position: absolute;

    z-index: 6;

    left: 50%;
    bottom: 20px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #686868;

    font-size: 8px;

    letter-spacing: 3px;
}


.hero-scroll i {

    font-size: 11px;

    animation:
        scrollBounce 1.6s ease-in-out infinite;
}


@keyframes scrollBounce {

    0%,
    100% {
        transform:
            translateY(-2px);
    }

    50% {
        transform:
            translateY(5px);
    }

}


/* =====================================================
   INTRO
===================================================== */

.intro {
    background: #090909;
}


.intro-container {

    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    align-items: center;

    gap: 80px;
}


.intro-text p {

    max-width: 620px;

    margin-bottom: 18px;

    color: #b6b6b6;

    font-size: 16px;

    line-height: 2;
}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding-bottom: 8px;

    border-bottom:
        1px solid #555;

    font-size: 12px;

    letter-spacing: 1.6px;

    transition: var(--transition);
}


.text-link:hover {

    gap: 19px;

    border-color: white;
}


.intro-decoration {

    display: flex;

    justify-content: center;

    align-items: center;
}


.silver-orbit {

    width: 285px;
    height: 285px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.13);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.silver-orbit:hover {

    transform:
        scale(1.03);

    box-shadow:
        0 0 40px
        rgba(255,255,255,0.04);
}


.silver-orbit span {

    font-family:
        var(--title);

    font-size: 42px;

    letter-spacing: 7px;

    color: #aaa;

    transition:
        color 0.4s ease,
        text-shadow 0.4s ease;
}


.silver-orbit:hover span {

    color: white;

    text-shadow:
        0 0 18px
        rgba(255,255,255,0.25);
}


/* =====================================================
   HEADINGS
===================================================== */

.section-heading {

    max-width: 760px;

    margin:
        0 auto 60px;

    text-align: center;
}


.section-heading p {

    margin-top: 20px;

    color: #aaa;

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   COLECCIONES
===================================================== */

.collections {
    background: #070707;
}


.collections-accordion {

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.collection-block {

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,0.10);

    background:
        linear-gradient(
            135deg,
            #111,
            #080808
        );

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.collection-block.open {

    border-color:
        rgba(255,255,255,0.25);

    box-shadow:
        0 18px 50px
        rgba(0,0,0,0.35);
}


.collection-header {

    position: relative;

    width: 100%;

    min-height: 155px;

    padding:
        32px 75px 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: transparent;

    color: white;

    border: none;

    cursor: pointer;

    text-align: center;
}


.collection-title-group {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.collection-title-group h3 {

    font-family:
        var(--title);

    font-size: 38px;

    font-weight: 500;

    line-height: 1.05;

    color: white;

    transition:
        transform 0.35s ease,
        text-shadow 0.35s ease;
}


.collection-header:hover
.collection-title-group h3 {

    transform:
        translateY(-2px);

    text-shadow:
        0 0 10px
        rgba(255,255,255,0.35),
        0 0 25px
        rgba(255,255,255,0.12);
}


.collection-title-group p {

    max-width: 720px;

    margin-top: 11px;

    color: #b0b0b0;

    font-size: 15px;

    line-height: 1.7;
}


.collection-toggle {

    position: absolute;

    left: 50%;
    bottom: 14px;

    transform:
        translateX(-50%);

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #cfcfcf;

    font-size: 14px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.12);

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.collection-toggle i {

    animation:
        collectionBounce 1.7s ease-in-out infinite;

    transition:
        transform 0.4s ease;
}


@keyframes collectionBounce {

    0%,
    100% {

        transform:
            translateY(-2px);
    }

    50% {

        transform:
            translateY(4px);
    }

}


.collection-block.open
.collection-toggle {

    color: black;

    background: white;
}


.collection-block.open
.collection-toggle i {

    animation: none;

    transform:
        rotate(180deg);
}


.collection-content {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.6s ease;
}


.collection-content-inner {

    padding:
        0 32px 35px;
}


.collection-products {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.product-card {

    overflow: hidden;

    background: #0d0d0d;

    border:
        1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.product-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255,255,255,0.23);

    box-shadow:
        0 16px 45px
        rgba(0,0,0,0.4);
}


.product-image {

    height: 340px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #3c3c3c,
            #171717 48%,
            #0a0a0a
        );
}


.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.product-card:hover
.product-image img {

    transform:
        scale(1.05);
}


.product-placeholder {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    color:
        rgba(255,255,255,0.22);
}


.product-placeholder i {
    font-size: 38px;
}


.product-placeholder span {

    font-size: 11px;

    letter-spacing: 2px;
}


.product-info {
    padding: 24px;
}


.product-info h4 {

    font-family:
        var(--title);

    font-size: 29px;

    font-weight: 500;
}


.product-info p {

    min-height: 50px;

    margin-top: 9px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.7;
}


.product-whatsapp {

    width: 100%;

    margin-top: 20px;

    padding:
        14px 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border:
        1px solid rgba(255,255,255,0.16);

    font-size: 11px;

    letter-spacing: 1.4px;

    transition: var(--transition);
}


.product-whatsapp:hover {

    background: white;

    color: black;
}


/* =====================================================
   FRASE
===================================================== */

.statement {

    position: relative;

    min-height: 570px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #292929,
            #050505 67%
        );
}


.statement-ring {

    position: absolute;

    width: 540px;
    height: 540px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.10);
}


.statement-content {

    position: relative;

    z-index: 2;
}


.statement-content > span {

    color: #777;

    font-size: 10px;

    letter-spacing: 7px;
}


.statement-title {

    max-width: 430px;

    margin:
        24px auto 0;

    font-family:
        var(--title);

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 0.92;

    font-weight: 400;
}


.statement-title em {
    color: #aaa;
}


/* =====================================================
   NOSOTROS
===================================================== */

.about {
    background: #090909;
}


.about-container {

    display: flex;

    justify-content: center;

    text-align: center;
}


.about-text {
    max-width: 800px;
}


.about-title {

    font-family:
        var(--title);

    font-size:
        clamp(50px, 6vw, 76px);

    line-height: 0.95;

    font-weight: 500;

    transition:
        transform 0.4s ease,
        text-shadow 0.4s ease;
}


.about-title span {

    color: #aaa;

    font-style: italic;
}


.about-title:hover {

    transform:
        scale(1.025);

    text-shadow:
        0 0 10px
        rgba(255,255,255,0.4),
        0 0 30px
        rgba(255,255,255,0.15);
}


.about-text p {

    max-width: 700px;

    margin:
        0 auto 18px;

    color: #b0b0b0;

    font-size: 16px;

    line-height: 2;
}


.about-signature {

    width: fit-content;

    margin:
        45px auto 0;

    padding:
        14px 24px;

    display: flex;

    align-items: center;

    gap: 18px;

    border-top:
        1px solid rgba(255,255,255,0.15);

    border-bottom:
        1px solid rgba(255,255,255,0.15);
}


.about-signature > span {

    font-family:
        var(--title);

    font-size: 62px;

    line-height: 0.75;
}


.about-signature div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.about-signature strong {

    font-size: 12px;

    letter-spacing: 4px;
}


.about-signature small {

    margin-top: 3px;

    color: #777;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =====================================================
   CONTACTO
===================================================== */

.contact {
    background: #070707;
}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.72fr 1.28fr;

    gap: 50px;

    align-items: stretch;
}


.contact-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 34px;
}


.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;
}


.contact-icon {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid rgba(255,255,255,0.17);

    color: #ccc;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


.contact-item:hover
.contact-icon {

    background: white;

    color: black;

    box-shadow:
        0 0 18px
        rgba(255,255,255,0.12);
}


.contact-item span {

    display: block;

    margin-bottom: 8px;

    color: #777;

    font-size: 10px;

    letter-spacing: 1.8px;
}


.contact-item a,
.contact-item p {

    color: #ddd;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   GOOGLE MAPS
===================================================== */

.map-container {

    position: relative;

    min-height: 540px;

    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,0.12);

    background: #090909;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.30);

    transition:
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}


.map-container:hover {

    border-color:
        rgba(255,255,255,0.23);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.38);
}


.map-frame {

    position: relative;

    min-height: 540px;

    overflow: hidden;

    background: #111;
}


.map-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    box-shadow:
        inset -50px 0 70px
        rgba(0,0,0,0.55);
}


.map-frame iframe {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(100%)
        contrast(1.07)
        brightness(0.72);

    transition:
        filter 0.6s ease;
}


.map-container:hover
.map-frame iframe {

    filter:
        grayscale(75%)
        contrast(1.03)
        brightness(0.86);
}


.map-info {

    position: relative;

    padding:
        55px 38px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,255,255,0.06),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #111,
            #070707
        );
}


.map-info::before {

    content: "";

    position: absolute;

    top: 12%;
    left: 0;

    width: 1px;
    height: 76%;

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,0.4),
            transparent
        );

    box-shadow:
        0 0 12px
        rgba(255,255,255,0.15);
}


.map-label {

    margin-bottom: 16px;

    color: #888;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 3px;
}


.map-info h3 {

    font-family:
        var(--title);

    font-size:
        clamp(36px, 3vw, 49px);

    font-weight: 500;

    line-height: 0.95;

    color: white;
}


.map-info h3 em {

    display: block;

    margin-top: 6px;

    font-style: italic;

    background:
        linear-gradient(
            110deg,
            #777,
            #fff,
            #999,
            #fff,
            #777
        );

    background-size:
        200% auto;

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;

    animation:
        mapSilverText 6s linear infinite;
}


@keyframes mapSilverText {

    from {
        background-position:
            0% center;
    }

    to {
        background-position:
            200% center;
    }

}


.map-address {

    margin-top: 27px;

    padding-bottom: 25px;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    color: #b8b8b8;

    font-size: 14px;

    line-height: 1.8;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}


.map-address i {

    margin-top: 5px;

    color: #e4e4e4;

    font-size: 16px;

    filter:
        drop-shadow(
            0 0 6px
            rgba(255,255,255,0.25)
        );
}


.map-actions {

    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-top: 27px;
}


.map-action {

    width: 100%;

    min-height: 49px;

    padding:
        13px 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.4px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.map-action-primary {

    color: #050505;

    border:
        1px solid rgba(255,255,255,0.65);

    background:
        linear-gradient(
            110deg,
            #777,
            #eeeeee,
            #aaa,
            #ffffff,
            #777
        );

    background-size:
        200% 100%;
}


.map-action-primary:hover {

    transform:
        translateY(-3px);

    background-position:
        100% 0;

    box-shadow:
        0 10px 28px
        rgba(255,255,255,0.12);
}


.map-action-secondary {

    color: #e3e3e3;

    border:
        1px solid rgba(255,255,255,0.17);

    background:
        rgba(255,255,255,0.015);
}


.map-action-secondary:hover {

    transform:
        translateY(-3px);

    color: black;

    background: white;

    border-color: white;
}


.map-note {

    margin-top: 20px;

    color: #606060;

    font-size: 10px;

    line-height: 1.7;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #020202;

    border-top:
        1px solid rgba(255,255,255,0.07);
}


.footer-container {

    width: min(1200px, 90%);

    margin: auto;

    padding:
        50px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.logo-footer {
    width: 115px;
}


.logo-footer img {

    display: block;

    width: 100%;

    height: auto;
}


.footer-brand p {

    margin-top: 10px;

    color: #777;

    font-size: 11px;

    letter-spacing: 1px;
}


.footer-social {

    display: flex;

    gap: 10px;
}


.footer-social a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.11);

    color: #aaa;

    transition: var(--transition);
}


.footer-social a:hover {

    color: black;

    background: white;

    transform:
        translateY(-4px);
}


.footer-bottom {

    padding: 18px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.05);
}


.footer-bottom p {

    color: #555;

    font-size: 10px;

    letter-spacing: 1px;
}


.whatsapp-float {

    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 900;

    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111;

    border:
        1px solid rgba(255,255,255,0.3);

    color: white;

    font-size: 24px;

    transition: var(--transition);
}


.whatsapp-float:hover {

    color: black;

    background: white;

    transform:
        scale(1.1);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .header-whatsapp span {
        display: none;
    }


    .nav {
        gap: 20px;
    }


    .intro-container {

        grid-template-columns:
            1fr;

        gap: 55px;

        text-align: center;
    }


    .intro-text
    .silver-line {

        margin-left: auto;
        margin-right: auto;
    }


    .intro-decoration {
        order: -1;
    }


    .collection-products {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .contact-grid {

        grid-template-columns:
            1fr;
    }


    .map-container {

        grid-template-columns:
            1fr;
    }


    .map-frame {

        min-height: 440px;
    }


    .map-info {

        padding:
            45px 38px;
    }


    .map-info::before {

        top: 0;
        left: 10%;

        width: 80%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.3),
                transparent
            );
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 700px) {

    .section {
        padding:
            80px 0;
    }


    .header-container {
        height: 75px;
    }


    .logo {

        width: 62px;
        height: 62px;
    }


    .header-whatsapp {
        display: none;
    }


    .menu-button {
        display: block;
    }


    .nav {

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        background:
            rgba(3,3,3,0.98);

        backdrop-filter:
            blur(15px);
    }


    .nav.open {
        display: flex;
    }


    .hero {

        min-height:
            100svh;

        padding:
            105px 0 90px;
    }


    .hero-container {
        width: 90%;
    }


    .hero-content {
        width: 100%;
    }


    .hero-eyebrow {

        font-size: 8px;

        letter-spacing: 3px;

        line-height: 1.8;
    }


    .hero-logo {

        width:
            min(245px, 68vw);
    }


    .hero-title {

        font-size:
            clamp(44px, 13vw, 62px);

        line-height: 0.95;
    }


    .hero-description {

        max-width: 360px;

        font-size: 15px;
    }


    .hero-buttons {

        flex-direction:
            column;

        align-items:
            center;
    }


    .btn {

        width: 100%;

        max-width: 300px;

        min-width: 0;
    }


    .hero-glow-one {

        width: 450px;
        height: 450px;

        right: -320px;
    }


    .hero-ring-one {

        width: 390px;
        height: 390px;

        right: -290px;
    }


    .hero-ring-two {

        width: 280px;
        height: 280px;

        right: -220px;
    }


    .intro-text p,
    .about-text p,
    .section-heading p {

        font-size: 15px;
    }


    .silver-orbit {

        width: 225px;
        height: 225px;
    }


    .silver-orbit span {
        font-size: 32px;
    }


    .collection-header {

        min-height: 165px;

        padding:
            28px 22px 48px;
    }


    .collection-title-group h3 {
        font-size: 30px;
    }


    .collection-title-group p {
        font-size: 13px;
    }


    .collection-content-inner {

        padding:
            0 18px 25px;
    }


    .collection-products {

        grid-template-columns:
            1fr;
    }


    .product-image {
        height: 330px;
    }


    .product-info h4 {
        font-size: 28px;
    }


    .product-info p {
        font-size: 14px;
    }


    .statement {
        min-height: 470px;
    }


    .statement-ring {

        width: 340px;
        height: 340px;
    }


    .statement-title {

        max-width: 290px;

        font-size: 48px;

        line-height: 0.9;
    }


    .map-container {
        min-height: auto;
    }


    .map-frame {
        min-height: 360px;
    }


    .map-info {

        padding:
            38px 25px;

        text-align: center;

        align-items: center;
    }


    .map-label {

        font-size: 9px;

        letter-spacing: 2.2px;
    }


    .map-info h3 {
        font-size: 38px;
    }


    .map-address {

        justify-content: center;

        max-width: 330px;

        font-size: 14px;

        text-align: left;
    }


    .map-actions {
        width: 100%;
    }


    .map-action {
        font-size: 10px;
    }


    .map-note {
        max-width: 320px;
    }


    .footer-container {

        flex-direction:
            column;

        text-align: center;
    }

}
/* =========================================================
   EXPEL
   RESPONSIVE PROFESIONAL — PUNTO 3
   PEGAR AL FINAL DE style.css
========================================================= */


/* =========================================================
   AJUSTES GENERALES RESPONSIVE
========================================================= */

img {
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

body {
    min-width: 320px;
}

section {
    scroll-margin-top: 90px;
}


/* =========================================================
   MONITORES GRANDES
   1440px+
========================================================= */

@media (min-width: 1440px) {

    .section-container,
    .hero-container {
        width: min(1280px, 88%);
    }


    .hero-content {
        max-width: 700px;
    }


    .hero-logo {
        width: 310px;
    }


    .hero-title {
        font-size: 80px;
    }


    .hero-description {
        max-width: 570px;

        font-size: 18px;
    }


    .collection-title-group h3 {
        font-size: 41px;
    }


    .collection-title-group p {
        font-size: 16px;
    }


    .product-image {
        height: 370px;
    }


    .about-text {
        max-width: 850px;
    }


    .about-text p {
        max-width: 760px;

        font-size: 17px;
    }

}


/* =========================================================
   LAPTOP
   1001px — 1300px
========================================================= */

@media (min-width: 1001px) and (max-width: 1300px) {

    .header-container {
        width: 94%;
    }


    .nav {
        gap: 25px;
    }


    .hero-container {
        width: 90%;
    }


    .hero-content {
        max-width: 610px;
    }


    .hero-title {
        font-size:
            clamp(55px, 5.5vw, 70px);
    }


    .contact-grid {
        grid-template-columns:
            0.68fr 1.32fr;

        gap: 35px;
    }


    .map-container {
        grid-template-columns:
            1.15fr 0.85fr;
    }


    .map-info {
        padding:
            45px 30px;
    }

}


/* =========================================================
   TABLET GRANDE
   769px — 1000px
========================================================= */

@media (min-width: 769px) and (max-width: 1000px) {

    .section {
        padding:
            100px 0;
    }


    /* HEADER */

    .header-container {
        width: 92%;

        height: 82px;
    }


    .logo {
        width: 70px;
        height: 70px;
    }


    .nav {
        gap: 17px;
    }


    .nav-link {
        font-size: 10px;

        letter-spacing: 1.3px;
    }


    .header-whatsapp {
        padding:
            10px 13px;
    }


    /* HERO */

    .hero {
        min-height: 900px;

        padding:
            115px 0 90px;
    }


    .hero-container {
        display: flex;

        justify-content: center;
    }


    .hero-content {
        width: 100%;

        max-width: 650px;
    }


    .hero-logo {
        width: 275px;
    }


    .hero-title {
        font-size:
            clamp(56px, 8vw, 72px);
    }


    .hero-description {
        max-width: 520px;

        font-size: 16px;
    }


    .hero-ring-one {
        right: -330px;
    }


    .hero-ring-two {
        right: -240px;
    }


    .hero-glow-one {
        right: -350px;
    }


    /* INTRO */

    .intro-container {
        max-width: 760px;

        margin: auto;
    }


    .intro-text {
        max-width: 700px;

        margin: auto;
    }


    .intro-text p {
        margin-left: auto;

        margin-right: auto;
    }


    /* COLECCIONES */

    .collection-header {
        padding:
            30px 45px 48px;
    }


    .collection-title-group h3 {
        font-size: 35px;
    }


    .collection-title-group p {
        max-width: 620px;

        font-size: 14px;
    }


    .collection-products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .product-image {
        height: 350px;
    }


    /* FRASE */

    .statement-ring {
        width: 500px;
        height: 500px;
    }


    .statement-title {
        max-width: 400px;

        font-size: 68px;
    }


    /* CONTACTO */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-info {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px;
    }


    .map-container {
        grid-template-columns: 1fr;
    }


    .map-frame {
        min-height: 430px;
    }


    .map-info {
        text-align: center;

        align-items: center;

        padding:
            45px 50px;
    }


    .map-info::before {
        left: 10%;
        top: 0;

        width: 80%;
        height: 1px;
    }


    .map-address {
        max-width: 600px;

        justify-content: center;
    }


    .map-actions {
        width: min(440px, 100%);
    }

}


/* =========================================================
   TABLET PEQUEÑA / CELULAR GRANDE
   601px — 768px
========================================================= */

@media (min-width: 601px) and (max-width: 768px) {

    .section {
        padding:
            90px 0;
    }


    /* HEADER */

    .header-container {
        height: 76px;
    }


    .logo {
        width: 62px;
        height: 62px;
    }


    .header-whatsapp {
        display: none;
    }


    .menu-button {
        display: block;

        margin-left: auto;
    }


    .nav {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        max-height:
            calc(100vh - 76px);

        overflow-y: auto;

        padding:
            28px 5% 35px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        visibility: hidden;

        opacity: 0;

        pointer-events: none;

        transform:
            translateY(-15px);

        background:
            rgba(3,3,3,0.97);

        backdrop-filter:
            blur(18px);

        border-top:
            1px solid rgba(255,255,255,0.08);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
    }


    .nav.open {
        visibility: visible;

        opacity: 1;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    .nav-link {
        width: min(420px, 100%);

        padding:
            18px 10px;

        text-align: center;

        font-size: 13px;

        letter-spacing: 2px;

        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }


    .nav-link::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 850px;

        padding:
            110px 0 100px;
    }


    .hero-container {
        width: 90%;

        display: flex;

        justify-content: center;
    }


    .hero-content {
        width: 100%;

        max-width: 600px;
    }


    .hero-logo {
        width: 250px;
    }


    .hero-title {
        font-size:
            clamp(52px, 10vw, 68px);
    }


    .hero-description {
        max-width: 470px;

        font-size: 16px;
    }


    /* INTRO */

    .intro-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;
    }


    .intro-text {
        max-width: 650px;

        margin: auto;
    }


    .intro-text p {
        margin-left: auto;

        margin-right: auto;
    }


    .intro-text .silver-line {
        margin-left: auto;

        margin-right: auto;
    }


    .intro-decoration {
        order: -1;
    }


    /* COLECCIONES */

    .collection-header {
        padding:
            30px 30px 50px;
    }


    .collection-title-group h3 {
        font-size: 34px;
    }


    .collection-title-group p {
        font-size: 14px;
    }


    .collection-products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }


    .collection-content-inner {
        padding:
            0 20px 30px;
    }


    .product-image {
        height: 300px;
    }


    /* FRASE */

    .statement {
        min-height: 530px;
    }


    .statement-ring {
        width: 440px;
        height: 440px;
    }


    .statement-title {
        max-width: 350px;

        font-size: 61px;
    }


    /* NOSOTROS */

    .about-text {
        max-width: 680px;
    }


    /* CONTACTO */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-info {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;
    }


    .map-container {
        grid-template-columns: 1fr;
    }


    .map-frame {
        min-height: 400px;
    }


    .map-info {
        text-align: center;

        align-items: center;
    }


    .map-address {
        justify-content: center;

        max-width: 470px;
    }


    .map-actions {
        width: 100%;

        max-width: 430px;
    }

}


/* =========================================================
   CELULAR
   401px — 600px
========================================================= */

@media (min-width: 401px) and (max-width: 600px) {

    .section {
        padding:
            78px 0;
    }


    .section-container {
        width: 89%;
    }


    /* HEADER */

    .header-container {
        height: 72px;

        width: 90%;
    }


    .logo {
        width: 57px;
        height: 57px;
    }


    .header-whatsapp {
        display: none;
    }


    .menu-button {
        display: block;

        margin-left: auto;

        width: 32px;
    }


    .nav {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        max-height:
            calc(100vh - 72px);

        overflow-y: auto;

        padding:
            20px 5% 30px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        visibility: hidden;

        opacity: 0;

        pointer-events: none;

        transform:
            translateY(-12px);

        background:
            rgba(3,3,3,0.98);

        backdrop-filter:
            blur(18px);

        border-top:
            1px solid rgba(255,255,255,0.08);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav.open {
        visibility: visible;

        opacity: 1;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    .nav-link {
        width: 100%;

        padding:
            18px 10px;

        text-align: center;

        font-size: 13px;

        letter-spacing: 2px;

        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }


    .nav-link::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 100svh;

        padding:
            100px 0 80px;
    }


    .hero-container {
        width: 90%;
    }


    .hero-content {
        width: 100%;
    }


    .hero-eyebrow {
        margin-bottom: 14px;

        font-size: 8px;

        letter-spacing: 2.5px;

        line-height: 1.8;
    }


    .hero-logo {
        width:
            min(220px, 62vw);

        margin-bottom: 14px;
    }


    .hero-metal-line {
        width: 125px;

        margin-bottom: 22px;
    }


    .hero-title {
        font-size:
            clamp(43px, 12vw, 56px);

        line-height: 0.94;
    }


    .hero-description {
        max-width: 340px;

        font-size: 15px;

        line-height: 1.8;
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: 11px;

        margin-top: 28px;
    }


    .hero .btn {
        width: 100%;

        max-width: 290px;

        min-height: 50px;
    }


    .hero-scroll {
        bottom: 12px;
    }


    /* INTRO */

    .intro-container {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }


    .intro-decoration {
        order: -1;
    }


    .intro-text .silver-line {
        margin-left: auto;

        margin-right: auto;
    }


    .intro-text p {
        font-size: 15px;

        line-height: 1.9;
    }


    .silver-orbit {
        width: 215px;
        height: 215px;
    }


    .silver-orbit span {
        font-size: 31px;

        letter-spacing: 5px;
    }


    /* TÍTULOS */

    .section-label {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .shine-title {
        font-size:
            clamp(42px, 11vw, 54px);
    }


    .section-heading {
        margin-bottom: 45px;
    }


    .section-heading p {
        font-size: 15px;
    }


    /* COLECCIONES */

    .collections-accordion {
        gap: 12px;
    }


    .collection-header {
        min-height: 165px;

        padding:
            28px 18px 50px;
    }


    .collection-title-group h3 {
        font-size: 29px;

        line-height: 1.08;
    }


    .collection-title-group p {
        max-width: 340px;

        font-size: 13px;

        line-height: 1.6;
    }


    .collection-toggle {
        width: 32px;
        height: 32px;
    }


    .collection-content-inner {
        padding:
            0 14px 20px;
    }


    .collection-products {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .product-image {
        height: 340px;
    }


    .product-info {
        padding: 22px;
    }


    .product-info h4 {
        font-size: 29px;
    }


    .product-info p {
        min-height: auto;

        font-size: 14px;
    }


    .product-whatsapp {
        min-height: 48px;

        font-size: 11px;
    }


    /* FRASE */

    .statement {
        min-height: 440px;
    }


    .statement-ring {
        width: 330px;
        height: 330px;
    }


    .statement-content > span {
        font-size: 8px;
    }


    .statement-title {
        max-width: 270px;

        font-size: 45px;

        line-height: 0.92;
    }


    /* NOSOTROS */

    .about-title {
        font-size:
            clamp(44px, 12vw, 58px);
    }


    .about-text p {
        font-size: 15px;

        line-height: 1.9;
    }


    .about-signature {
        margin-top: 35px;
    }


    /* CONTACTO */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .contact-info {
        gap: 26px;
    }


    .contact-item {
        gap: 15px;
    }


    .contact-icon {
        width: 42px;
        height: 42px;
    }


    .contact-item a,
    .contact-item p {
        font-size: 14px;
    }


    /* MAPA */

    .map-container {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .map-frame {
        min-height: 340px;
    }


    .map-info {
        padding:
            35px 22px;

        text-align: center;

        align-items: center;
    }


    .map-info::before {
        top: 0;
        left: 10%;

        width: 80%;
        height: 1px;
    }


    .map-info h3 {
        font-size: 37px;
    }


    .map-address {
        justify-content: center;

        text-align: left;

        font-size: 13px;
    }


    .map-actions {
        width: 100%;
    }


    .map-action {
        min-height: 50px;

        font-size: 10px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding:
            42px 0;
    }


    .footer-social {
        margin-top: 7px;
    }


    .whatsapp-float {
        width: 53px;
        height: 53px;

        right: 16px;
        bottom: 16px;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
   320px — 400px
========================================================= */

@media (max-width: 400px) {

    .section {
        padding:
            70px 0;
    }


    .section-container {
        width: 90%;
    }


    /* HEADER */

    .header-container {
        width: 91%;

        height: 68px;
    }


    .logo {
        width: 53px;
        height: 53px;
    }


    .header-whatsapp {
        display: none;
    }


    .menu-button {
        display: block;

        margin-left: auto;
    }


    .nav {
        position: absolute;

        top: 68px;
        left: 0;

        width: 100%;

        padding:
            18px 5% 28px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        visibility: hidden;

        opacity: 0;

        pointer-events: none;

        transform:
            translateY(-12px);

        background:
            rgba(3,3,3,0.98);

        backdrop-filter:
            blur(18px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav.open {
        visibility: visible;

        opacity: 1;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    .nav-link {
        width: 100%;

        padding:
            17px 5px;

        text-align: center;

        font-size: 12px;

        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }


    .nav-link::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 100svh;

        padding:
            90px 0 75px;
    }


    .hero-container {
        width: 92%;
    }


    .hero-eyebrow {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .hero-logo {
        width:
            min(190px, 60vw);
    }


    .hero-metal-line {
        width: 110px;

        margin-bottom: 20px;
    }


    .hero-title {
        font-size:
            clamp(39px, 12vw, 47px);
    }


    .hero-description {
        max-width: 300px;

        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: center;

        gap: 10px;

        margin-top: 25px;
    }


    .hero .btn {
        width: 100%;

        max-width: 275px;

        min-width: 0;

        padding:
            14px 16px;
    }


    .hero-scroll {
        display: none;
    }


    /* INTRO */

    .intro-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 40px;
    }


    .intro-decoration {
        order: -1;
    }


    .intro-text .silver-line {
        margin-left: auto;

        margin-right: auto;
    }


    .intro-text p {
        font-size: 14px;

        line-height: 1.85;
    }


    .silver-orbit {
        width: 190px;
        height: 190px;
    }


    .silver-orbit span {
        font-size: 27px;

        letter-spacing: 4px;
    }


    /* TÍTULOS */

    .section-label {
        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .shine-title {
        font-size:
            clamp(39px, 11vw, 48px);
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading p {
        font-size: 14px;
    }


    /* COLECCIONES */

    .collection-header {
        min-height: 170px;

        padding:
            25px 15px 50px;
    }


    .collection-title-group h3 {
        font-size: 27px;
    }


    .collection-title-group p {
        font-size: 12.5px;
    }


    .collection-content-inner {
        padding:
            0 10px 18px;
    }


    .collection-products {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .product-image {
        height: 300px;
    }


    .product-info {
        padding: 20px;
    }


    .product-info h4 {
        font-size: 27px;
    }


    /* FRASE */

    .statement {
        min-height: 400px;
    }


    .statement-ring {
        width: 285px;
        height: 285px;
    }


    .statement-title {
        max-width: 235px;

        font-size: 39px;
    }


    /* NOSOTROS */

    .about-title {
        font-size:
            clamp(39px, 11vw, 50px);
    }


    .about-text p {
        font-size: 14px;

        line-height: 1.85;
    }


    .about-signature > span {
        font-size: 54px;
    }


    /* CONTACTO */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contact-item {
        gap: 13px;
    }


    .contact-icon {
        width: 40px;
        height: 40px;
    }


    .contact-item a,
    .contact-item p {
        font-size: 13px;
    }


    /* MAPA */

    .map-container {
        grid-template-columns: 1fr;
    }


    .map-frame {
        min-height: 300px;
    }


    .map-info {
        padding:
            32px 17px;

        text-align: center;

        align-items: center;
    }


    .map-info::before {
        top: 0;
        left: 10%;

        width: 80%;
        height: 1px;
    }


    .map-label {
        font-size: 8px;

        letter-spacing: 2px;
    }


    .map-info h3 {
        font-size: 33px;
    }


    .map-address {
        font-size: 12.5px;
    }


    .map-action {
        padding:
            12px 10px;

        font-size: 9px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;

        text-align: center;

        padding:
            38px 0;
    }


    .footer-social a {
        width: 40px;
        height: 40px;
    }


    .whatsapp-float {
        width: 50px;
        height: 50px;

        right: 14px;
        bottom: 14px;

        font-size: 21px;
    }

}


/* =========================================================
   CELULARES EN HORIZONTAL
========================================================= */

@media (max-height: 550px) and (orientation: landscape) {

    .hero {
        min-height: 720px;

        padding:
            90px 0 80px;
    }


    .hero-scroll {
        display: none;
    }


    .nav {
        max-height:
            calc(100vh - 68px);

        overflow-y: auto;
    }

}


/* =========================================================
   REDUCIR ANIMACIONES
   Para personas que tienen esta preferencia activada
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}
/* =========================================================
   EXPEL
   ANIMACIONES DE SCROLL — PUNTO 4
========================================================= */


/* =========================================================
   BARRA DE PROGRESO SUPERIOR
========================================================= */

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 5000;

    width: 0%;
    height: 2px;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #5f5f5f,
            #ffffff,
            #8d8d8d,
            #ffffff
        );

    box-shadow:
        0 0 8px rgba(255,255,255,0.45),
        0 0 15px rgba(255,255,255,0.15);

    transition:
        width 0.08s linear;
}


/* =========================================================
   BASE DE LAS ANIMACIONES
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    filter:
        blur(3px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s ease;

    transition-delay:
        var(--reveal-delay, 0ms);

}


/* ELEMENTO YA VISIBLE */

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

    filter:
        blur(0);
}


/* =========================================================
   APARICIÓN DESDE IZQUIERDA
========================================================= */

.reveal-left {

    opacity: 0;

    transform:
        translateX(-45px);

    filter:
        blur(3px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s ease;

    transition-delay:
        var(--reveal-delay, 0ms);
}


.reveal-left.visible {

    opacity: 1;

    transform:
        translateX(0);

    filter:
        blur(0);
}


/* =========================================================
   APARICIÓN DESDE DERECHA
========================================================= */

.reveal-right {

    opacity: 0;

    transform:
        translateX(45px);

    filter:
        blur(3px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s ease;

    transition-delay:
        var(--reveal-delay, 0ms);
}


.reveal-right.visible {

    opacity: 1;

    transform:
        translateX(0);

    filter:
        blur(0);
}


/* =========================================================
   APARICIÓN CON ESCALA
========================================================= */

.reveal-scale {

    opacity: 0;

    transform:
        scale(0.94);

    filter:
        blur(3px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s ease;

    transition-delay:
        var(--reveal-delay, 0ms);
}


.reveal-scale.visible {

    opacity: 1;

    transform:
        scale(1);

    filter:
        blur(0);
}


/* =========================================================
   TITULOS
========================================================= */

.shine-title.reveal.visible,
.about-title.reveal.visible {

    animation:
        titleArrivalGlow 1.3s ease forwards;
}


@keyframes titleArrivalGlow {

    0% {

        text-shadow:
            0 0 0 rgba(255,255,255,0);

    }

    55% {

        text-shadow:
            0 0 14px rgba(255,255,255,0.22),
            0 0 35px rgba(255,255,255,0.08);

    }

    100% {

        text-shadow:
            0 0 0 rgba(255,255,255,0);

    }

}


/* =========================================================
   LINEAS PLATEADAS
========================================================= */

.silver-line {

    transform-origin:
        left center;
}


.silver-line.reveal-line {

    opacity: 0;

    transform:
        scaleX(0);

    transition:
        opacity 0.7s ease,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}


.silver-line.reveal-line.visible {

    opacity: 1;

    transform:
        scaleX(1);
}


.centered-line.reveal-line {

    transform-origin:
        center center;
}


/* =========================================================
   COLECCIONES
========================================================= */

.collection-block.reveal {

    transform:
        translateY(28px)
        scale(0.985);
}


.collection-block.reveal.visible {

    transform:
        translateY(0)
        scale(1);
}


/* reflejo al aparecer */

.collection-block.visible {

    position: relative;
}


.collection-block.visible::after {

    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 70%;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.065),
            transparent
        );

    transform:
        skewX(-18deg);

    animation:
        collectionShine 1.3s ease forwards;

    animation-delay:
        calc(
            var(--reveal-delay, 0ms)
            + 350ms
        );
}


@keyframes collectionShine {

    from {
        left: -130%;
    }

    to {
        left: 150%;
    }

}


/* =========================================================
   PRODUCTOS DENTRO DE COLECCIONES
========================================================= */

.product-card.reveal-product {

    opacity: 0;

    transform:
        translateY(24px)
        scale(0.98);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay:
        var(--product-delay, 0ms);
}


.product-card.reveal-product.visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CÍRCULO CENTRAL
========================================================= */

.statement-ring {

    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.2s ease,
        box-shadow 0.5s ease;
}


.statement-ring.scroll-ring {

    opacity: 0;

    transform:
        scale(0.82);
}


.statement-ring.scroll-ring.visible {

    opacity: 1;

    transform:
        scale(1);
}


.statement-ring.scroll-ring.visible {

    animation:
        ringReveal 1.5s ease forwards;
}


@keyframes ringReveal {

    0% {

        box-shadow:
            0 0 0 rgba(255,255,255,0);

    }

    50% {

        box-shadow:
            0 0 60px rgba(255,255,255,0.07);

    }

    100% {

        box-shadow:
            0 0 20px rgba(255,255,255,0.02);

    }

}


/* =========================================================
   NOSOTROS
========================================================= */

.about-signature.reveal-scale.visible {

    animation:
        experienceGlow 1.4s ease forwards;
}


@keyframes experienceGlow {

    0% {

        border-color:
            rgba(255,255,255,0.15);

    }

    50% {

        border-color:
            rgba(255,255,255,0.45);

        box-shadow:
            0 0 30px rgba(255,255,255,0.05);

    }

    100% {

        border-color:
            rgba(255,255,255,0.15);

        box-shadow:
            none;

    }

}


/* =========================================================
   CONTACTO
========================================================= */

.contact-item.reveal {

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;

    transition-delay:
        var(--reveal-delay, 0ms);
}


/* =========================================================
   MAPA
========================================================= */

.map-container.reveal-scale {

    transform:
        translateY(30px)
        scale(0.975);
}


.map-container.reveal-scale.visible {

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   FOOTER
========================================================= */

.footer.reveal {

    transform:
        translateY(20px);
}


.footer.reveal.visible {

    transform:
        translateY(0);
}


/* =========================================================
   MOVIMIENTO MUY SUTIL EN EL MAPA
========================================================= */

.map-frame iframe {

    transition:
        filter 0.6s ease,
        transform 1s ease;
}


.map-container:hover
.map-frame iframe {

    transform:
        scale(1.015);
}


/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-product,
    .reveal-line,
    .scroll-ring {

        opacity: 1 !important;

        transform:
            none !important;

        filter:
            none !important;

        animation:
            none !important;

        transition:
            none !important;
    }


    .collection-block.visible::after {

        display: none;

    }

}
/* =========================================================
   EXPEL
   VISOR DE PRODUCTOS / LIGHTBOX — PUNTO 5
========================================================= */


/* =========================================================
   FOTOS CLICKEABLES
========================================================= */

.product-image.has-image {

    position: relative;

    cursor: zoom-in;
}


/* sombra elegante encima de la fotografía */

.product-image.has-image::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.48),
            transparent 45%
        );

    opacity: 0;

    transition:
        opacity 0.4s ease;
}


.product-image.has-image:hover::after {

    opacity: 1;
}


/* =========================================================
   TEXTO "VER IMAGEN"
========================================================= */

.product-view-label {

    position: absolute;

    z-index: 4;

    left: 50%;
    bottom: 22px;

    transform:
        translate(-50%, 10px);

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 16px;

    color: white;

    background:
        rgba(5,5,5,0.72);

    border:
        1px solid rgba(255,255,255,0.22);

    backdrop-filter:
        blur(10px);

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 1.8px;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}


.product-image.has-image:hover
.product-view-label {

    opacity: 1;

    transform:
        translate(-50%, 0);
}


.product-view-label i {

    font-size: 10px;
}


/* =========================================================
   LIGHTBOX GENERAL
========================================================= */

.product-lightbox {

    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        30px;

    background:
        rgba(0,0,0,0.92);

    backdrop-filter:
        blur(14px);

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.product-lightbox.open {

    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}


/* =========================================================
   CONTENEDOR PRINCIPAL
========================================================= */

.lightbox-dialog {

    position: relative;

    width:
        min(1150px, 96vw);

    max-height:
        92vh;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(290px, 0.65fr);

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #111,
            #060606
        );

    border:
        1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 35px 100px
        rgba(0,0,0,0.7);

    transform:
        translateY(20px)
        scale(0.97);

    transition:
        transform 0.45s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.product-lightbox.open
.lightbox-dialog {

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   FOTO GRANDE
========================================================= */

.lightbox-image-area {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #222,
            #060606 70%
        );
}


.lightbox-image {

    width: 100%;

    height: 100%;

    max-height: 92vh;

    object-fit: contain;

    display: block;

    transition:
        opacity 0.25s ease,
        transform 0.4s ease;
}


/* =========================================================
   BOTONES SIGUIENTE / ANTERIOR
========================================================= */

.lightbox-nav {

    position: absolute;

    z-index: 6;

    top: 50%;

    transform:
        translateY(-50%);

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        rgba(0,0,0,0.48);

    border:
        1px solid rgba(255,255,255,0.22);

    backdrop-filter:
        blur(10px);

    cursor: pointer;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}


.lightbox-nav:hover {

    background: white;

    color: black;

    border-color: white;
}


.lightbox-prev {

    left: 20px;
}


.lightbox-prev:hover {

    transform:
        translateY(-50%)
        translateX(-3px);
}


.lightbox-next {

    right: 20px;
}


.lightbox-next:hover {

    transform:
        translateY(-50%)
        translateX(3px);
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.lightbox-info {

    position: relative;

    padding:
        55px 42px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(255,255,255,0.055),
            transparent 35%
        ),

        #090909;
}


.lightbox-category {

    margin-bottom: 15px;

    color: #747474;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.lightbox-title {

    font-family:
        var(--title);

    font-size:
        clamp(38px, 4vw, 58px);

    font-weight: 500;

    line-height: 0.95;

    color: white;
}


.lightbox-line {

    width: 65px;

    height: 1px;

    margin:
        24px 0;

    background:
        linear-gradient(
            90deg,
            white,
            transparent
        );

    box-shadow:
        0 0 10px
        rgba(255,255,255,0.2);
}


.lightbox-description {

    color: #aaa;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   CONTADOR
========================================================= */

.lightbox-counter {

    margin-top: 22px;

    color: #626262;

    font-size: 10px;

    letter-spacing: 2px;
}


/* =========================================================
   WHATSAPP DEL VISOR
========================================================= */

.lightbox-whatsapp {

    width: 100%;

    margin-top: 30px;

    padding:
        15px 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #050505;

    background:
        linear-gradient(
            110deg,
            #777,
            #f2f2f2,
            #aaa,
            #fff,
            #777
        );

    background-size:
        200% 100%;

    border:
        1px solid rgba(255,255,255,0.55);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.4px;

    transition:
        transform 0.35s ease,
        background-position 0.35s ease,
        box-shadow 0.35s ease;
}


.lightbox-whatsapp:hover {

    transform:
        translateY(-3px);

    background-position:
        100% 0;

    box-shadow:
        0 12px 30px
        rgba(255,255,255,0.10);
}


/* =========================================================
   BOTÓN CERRAR
========================================================= */

.lightbox-close {

    position: absolute;

    z-index: 10;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        rgba(5,5,5,0.65);

    border:
        1px solid rgba(255,255,255,0.20);

    backdrop-filter:
        blur(10px);

    cursor: pointer;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        background 0.35s ease;
}


.lightbox-close:hover {

    transform:
        rotate(90deg);

    color: black;

    background: white;
}


/* =========================================================
   OCULTAR FLECHAS SI SOLO EXISTE UNA FOTO
========================================================= */

.product-lightbox.single-image
.lightbox-nav {

    display: none;
}


/* =========================================================
   EVITAR SCROLL DE FONDO
========================================================= */

body.lightbox-open {

    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .product-lightbox {

        padding:
            20px;
    }


    .lightbox-dialog {

        width:
            min(760px, 96vw);

        max-height:
            94vh;

        grid-template-columns:
            1fr;

        overflow-y: auto;
    }


    .lightbox-image-area {

        min-height: 500px;
    }


    .lightbox-image {

        max-height: 600px;
    }


    .lightbox-info {

        padding:
            38px 34px;
    }


    .lightbox-title {

        font-size:
            45px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .product-lightbox {

        padding:
            10px;
    }


    .lightbox-dialog {

        width: 100%;

        max-height:
            96svh;
    }


    .lightbox-image-area {

        min-height: 390px;

        height: 53svh;
    }


    .lightbox-image {

        max-height:
            53svh;
    }


    .lightbox-info {

        padding:
            30px 22px 26px;
    }


    .lightbox-category {

        font-size: 8px;
    }


    .lightbox-title {

        font-size:
            38px;
    }


    .lightbox-description {

        font-size: 13px;
    }


    .lightbox-nav {

        width: 42px;

        height: 42px;
    }


    .lightbox-prev {

        left: 10px;
    }


    .lightbox-next {

        right: 10px;
    }


    .lightbox-close {

        top: 10px;

        right: 10px;

        width: 39px;

        height: 39px;
    }


    .product-view-label {

        bottom: 15px;

        padding:
            10px 13px;

        font-size: 8px;
    }

}


/* =========================================================
   CELULAR PEQUEÑO
========================================================= */

@media (max-width: 400px) {

    .lightbox-image-area {

        min-height: 320px;

        height: 48svh;
    }


    .lightbox-image {

        max-height:
            48svh;
    }


    .lightbox-info {

        padding:
            26px 18px;
    }


    .lightbox-title {

        font-size: 34px;
    }


    .lightbox-line {

        margin:
            18px 0;
    }


    .lightbox-whatsapp {

        margin-top: 22px;
    }

}


/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-lightbox,
    .lightbox-dialog,
    .lightbox-image,
    .lightbox-close,
    .lightbox-nav {

        transition:
            none !important;
    }

}
/* =========================================================
   EXPEL
   CONTACTO PREMIUM — PUNTO 7
========================================================= */


/* =========================================================
   CABECERA CONTACTO
========================================================= */

.contact-heading {

    margin-bottom: 55px;
}


/* =========================================================
   CTA WHATSAPP PRINCIPAL
========================================================= */

.contact-main-cta {

    position: relative;

    overflow: hidden;

    min-height: 250px;

    margin-bottom: 25px;

    padding:
        48px 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    border:
        1px solid rgba(255,255,255,0.13);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(255,255,255,0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #121212,
            #070707
        );

    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.contact-main-cta::before {

    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -130px;
    top: -150px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.06);

    pointer-events: none;
}


.contact-main-cta::after {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -55px;
    top: -100px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.035);

    pointer-events: none;
}


.contact-main-cta:hover {

    border-color:
        rgba(255,255,255,0.27);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.3);
}


.contact-main-copy {

    position: relative;

    z-index: 2;

    max-width: 600px;
}


.contact-main-label {

    display: block;

    margin-bottom: 13px;

    color: #777;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 3px;
}


.contact-main-copy h3 {

    font-family: var(--title);

    font-size:
        clamp(42px, 5vw, 63px);

    line-height: 0.95;

    font-weight: 500;
}


.contact-main-copy h3 em {

    color: #aaa;

    font-style: italic;
}


.contact-main-copy p {

    max-width: 540px;

    margin-top: 18px;

    color: #aaa;

    font-size: 15px;

    line-height: 1.8;
}


/* BOTÓN WHATSAPP */

.contact-main-button {

    position: relative;

    z-index: 2;

    min-width: 245px;

    min-height: 58px;

    padding:
        15px 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #050505;

    background:
        linear-gradient(
            110deg,
            #777,
            #f3f3f3,
            #aaa,
            #fff,
            #777
        );

    background-size:
        200% 100%;

    border:
        1px solid rgba(255,255,255,0.6);

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1.4px;

    transition:
        transform 0.35s ease,
        background-position 0.4s ease,
        box-shadow 0.35s ease;
}


.contact-main-button:hover {

    transform:
        translateY(-4px);

    background-position:
        100% 0;

    box-shadow:
        0 13px 35px rgba(255,255,255,0.12);
}


.contact-main-button
.fa-whatsapp {

    font-size: 20px;
}


/* =========================================================
   TARJETAS DE CONTACTO
========================================================= */

.contact-cards {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;

    margin-bottom: 70px;
}


.contact-card {

    min-height: 155px;

    padding:
        27px 22px;

    margin: 0;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    border:
        1px solid rgba(255,255,255,0.09);

    background:
        linear-gradient(
            145deg,
            #0e0e0e,
            #080808
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.contact-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,255,255,0.24);

    background:
        #111;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.28);
}


.contact-card .contact-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;
}


.contact-card > div:last-child {

    min-width: 0;
}


.contact-card span {

    display: block;

    margin-bottom: 9px;

    color: #747474;

    font-size: 9px;

    letter-spacing: 1.7px;
}


.contact-card strong {

    display: block;

    color: #eee;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


.contact-card small {

    display: block;

    margin-top: 7px;

    color: #696969;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.contact-social-section {

    margin-bottom: 70px;

    padding:
        42px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}


.contact-social-label {

    display: block;

    margin-bottom: 10px;

    color: #6f6f6f;

    font-size: 9px;

    letter-spacing: 3px;
}


.contact-social-section h3 {

    font-family:
        var(--title);

    font-size:
        clamp(34px, 4vw, 48px);

    font-weight: 500;

    line-height: 1;
}


.contact-social-section h3 em {

    color: #999;

    font-style: italic;
}


.contact-social-links {

    display: flex;

    align-items: center;

    gap: 10px;
}


.contact-social-links a {

    min-width: 135px;

    min-height: 50px;

    padding:
        12px 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #aaa;

    border:
        1px solid rgba(255,255,255,0.12);

    background:
        rgba(255,255,255,0.01);

    font-size: 10px;

    letter-spacing: 1px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}


.contact-social-links a i {

    font-size: 17px;
}


.contact-social-links a:hover {

    transform:
        translateY(-4px);

    color: black;

    background: white;

    border-color: white;
}


/* =========================================================
   ENCABEZADO UBICACIÓN
========================================================= */

.contact-location-title {

    margin-bottom: 30px;

    text-align: center;
}


.contact-location-title h3 {

    font-family:
        var(--title);

    font-size:
        clamp(40px, 5vw, 58px);

    font-weight: 500;
}


.contact-location-title h3 em {

    color: #999;

    font-style: italic;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-main-cta {

        padding:
            42px 40px;

        flex-direction: column;

        text-align: center;
    }


    .contact-main-copy p {

        margin-left: auto;
        margin-right: auto;
    }


    .contact-main-button {

        width: min(350px, 100%);
    }


    .contact-cards {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .contact-social-section {

        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .contact-main-cta {

        min-height: auto;

        padding:
            35px 22px;

        gap: 30px;
    }


    .contact-main-copy h3 {

        font-size:
            clamp(41px, 12vw, 52px);
    }


    .contact-main-copy p {

        font-size: 14px;
    }


    .contact-main-button {

        width: 100%;

        min-width: 0;

        min-height: 54px;
    }


    .contact-cards {

        grid-template-columns: 1fr;

        gap: 11px;

        margin-bottom: 55px;
    }


    .contact-card {

        min-height: 120px;

        padding:
            23px 20px;

        align-items: center;
    }


    .contact-card strong {

        font-size: 14px;
    }


    .contact-social-section {

        margin-bottom: 55px;

        padding:
            35px 0;
    }


    .contact-social-links {

        width: 100%;

        flex-direction: column;
    }


    .contact-social-links a {

        width: 100%;

        min-width: 0;
    }


    .contact-location-title {

        margin-bottom: 25px;
    }

}
/* =========================================================
   EXPEL
   PULIDO FINAL DE EXPERIENCIA — PUNTO 10
========================================================= */


/* =========================================================
   SCROLL SUAVE
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


/* =========================================================
   SELECCIÓN DE TEXTO
========================================================= */

::selection {
    background: #d8d8d8;
    color: #050505;
}


/* =========================================================
   SCROLLBAR — PC
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            180deg,
            #555,
            #d7d7d7,
            #555
        );

    border-radius: 20px;

    border: 2px solid #050505;
}

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(
            180deg,
            #777,
            #fff,
            #777
        );
}


/* Firefox */

html {
    scrollbar-width: thin;
    scrollbar-color: #888 #050505;
}


/* =========================================================
   EVITAR DESBORDAMIENTOS
========================================================= */

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* =========================================================
   LINKS Y BOTONES
========================================================= */

a,
button {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    touch-action: manipulation;
}


/* =========================================================
   FOCO DE TECLADO
========================================================= */

a:focus-visible,
button:focus-visible {

    outline:
        1px solid rgba(255,255,255,0.85);

    outline-offset: 5px;
}


/* =========================================================
   LOGO HEADER
========================================================= */

.logo img {

    transition:
        transform 0.45s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        filter 0.45s ease;
}


.logo:hover img {

    transform:
        scale(1.035);

    filter:
        brightness(1.15)
        drop-shadow(
            0 0 10px
            rgba(255,255,255,0.12)
        );
}


/* =========================================================
   NAVEGACIÓN
========================================================= */

.nav-link {

    position: relative;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -7px;

    width: 0;
    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #fff,
            transparent
        );

    transition:
        width 0.35s ease;
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


/* =========================================================
   BOTONES HERO
========================================================= */

.btn {

    position: relative;

    overflow: hidden;

    isolation: isolate;
}


.btn::before {

    content: "";

    position: absolute;

    z-index: -1;

    top: -100%;
    left: -60%;

    width: 35%;
    height: 300%;

    transform:
        rotate(25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.28),
            transparent
        );

    transition:
        left 0.65s ease;
}


.btn:hover::before {

    left: 130%;
}


.btn:active {

    transform:
        translateY(1px)
        scale(0.985);
}


/* =========================================================
   LINKS CON FLECHA
========================================================= */

.text-link i {

    transition:
        transform 0.3s ease;
}


.text-link:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
   TARJETAS DE CONTACTO
========================================================= */

.contact-card .contact-icon {

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


.contact-card:hover
.contact-icon {

    transform:
        translateY(-2px)
        scale(1.05);
}


/* =========================================================
   REDES SOCIALES FOOTER
========================================================= */

.footer-social a {

    position: relative;

    overflow: hidden;
}


.footer-social a i {

    position: relative;

    z-index: 2;
}


.footer-social a::before {

    content: "";

    position: absolute;

    inset: 50%;

    border-radius: 50%;

    background: white;

    transition:
        inset 0.35s ease;
}


.footer-social a:hover::before {

    inset: 0;
}


.footer-social a:hover {

    color: black;
}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-float {

    transition:
        transform 0.35s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.35s ease;
}


.whatsapp-float:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.45);
}


.whatsapp-float:active {

    transform:
        scale(0.95);
}


/* =========================================================
   MAPA
========================================================= */

.map-frame iframe {

    display: block;
}


/* =========================================================
   MEJORAS PARA CELULAR
========================================================= */

@media (max-width: 600px) {


    html {

        scroll-padding-top: 75px;
    }


    /*
       Evita que títulos demasiado largos
       rompan el ancho de la pantalla
    */

    .shine-title,
    .about-title,
    .statement-title,
    .contact-main-copy h3,
    .contact-social-section h3,
    .contact-location-title h3 {

        overflow-wrap: break-word;
    }


    /*
       Botones principales cómodos para tocar
    */

    .btn {

        min-height: 52px;
    }


    /*
       WhatsApp flotante un poco separado
       de los bordes del teléfono
    */

    .whatsapp-float {

        right: 18px;
        bottom: 18px;
    }


    /*
       Correos largos
    */

    .contact-card strong {

        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /*
       Evita scroll horizontal accidental
       en elementos grandes
    */

    .section-container,
    .hero-container,
    .footer-container {

        max-width: 100%;
    }

}


/* =========================================================
   DISPOSITIVOS TÁCTILES
========================================================= */

@media (hover: none) {


    /*
       En celular no dependemos de hover
       para mostrar información importante.
    */

    .product-view-label {

        opacity: 1;

        transform:
            translate(-50%, 0);
    }


    /*
       Quitamos efectos que pueden quedarse
       "pegados" después de tocar.
    */

    .contact-card:hover {

        transform: none;
    }


    .logo:hover img {

        transform: none;
    }

}


/* =========================================================
   USUARIOS QUE PREFIEREN MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

}
/* =========================================================
   EXPEL — CATÁLOGO REAL + VIDEO + PROCESO
========================================================= */


/* =========================================================
   GRUPOS DE PRODUCTOS
========================================================= */

.collection-group {

    margin-bottom: 75px;
}


.collection-group:last-child {

    margin-bottom: 0;
}


.collection-group-heading {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    margin:
        10px 0
        36px;
}


.collection-group-heading h4 {

    margin: 0;

    font-family:
        var(--title);

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.5rem
        );

    font-weight: 400;

    color: #f5f5f5;

    text-align: center;
}


.collection-group-line {

    width: 70px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                255,
                255,
                255,
                0.5
            ),
            transparent
        );
}


/* =========================================================
   REFERENCIA
========================================================= */

.product-reference {

    display: inline-block;

    margin-bottom: 10px;

    font-size: 0.67rem;

    letter-spacing: 0.18em;

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );
}


/* =========================================================
   IMAGEN
========================================================= */

.product-image {

    position: relative;

    width: 100%;

    aspect-ratio:
        4 / 5;

    overflow: hidden;

    background:
        #0b0b0b;
}


.product-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================================
   VIDEO
========================================================= */

.product-video-container {

    position: relative;

    width: 100%;

    aspect-ratio:
        4 / 5;

    overflow: hidden;

    background:
        #000;
}


.product-video {

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    object-fit: contain;

    background:
        #000;

    position: relative;

    z-index: 10;
}


/* =========================================================
   CATEGORÍA SIN FOTOS
========================================================= */

.collection-empty {

    max-width: 650px;

    margin:
        15px auto;

    padding:
        55px 35px;

    text-align: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );
}


.collection-empty-icon {

    margin-bottom: 20px;

    font-size: 2rem;

    color:
        rgba(
            255,
            255,
            255,
            0.38
        );
}


.collection-empty-label {

    display: block;

    margin-bottom: 15px;

    font-size: 0.7rem;

    letter-spacing: 0.2em;

    color:
        rgba(
            255,
            255,
            255,
            0.6
        );
}


.collection-empty p {

    max-width: 500px;

    margin:
        0 auto
        28px;

    line-height: 1.8;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );
}


/* =========================================================
   ACCESORIOS
========================================================= */

.collection-services {

    max-width: 850px;

    margin:
        0 auto;

    text-align: center;
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 14px;

    margin-bottom: 35px;
}


.service-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    text-align: left;

    color:
        rgba(
            255,
            255,
            255,
            0.78
        );
}


.service-item i {

    font-size: 0.7rem;

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );
}


/* =========================================================
   PROCESO DE ELABORACIÓN
========================================================= */

.process-section {

    position: relative;

    padding:
        125px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #050505,
            #0a0a0a,
            #050505
        );
}


.process-section::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: 20%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                255,
                255,
                255,
                0.04
            ),
            transparent 70%
        );

    pointer-events: none;
}


.process-heading {

    max-width: 800px;

    margin:
        0 auto
        75px;

    text-align: center;
}


.process-gallery {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        65px
        45px;

    max-width:
        1080px;

    margin:
        0 auto;
}


.process-item {

    position: relative;
}


.process-item:nth-child(even) {

    transform:
        translateY(
            65px
        );
}


.process-number {

    position: absolute;

    z-index: 5;

    top: -26px;
    left: 18px;

    font-family:
        var(--title);

    font-size:
        clamp(
            3rem,
            6vw,
            5rem
        );

    font-weight: 400;

    line-height: 1;

    color:
        rgba(
            255,
            255,
            255,
            0.18
        );
}


.process-image {

    position: relative;

    overflow: hidden;

    background:
        #0a0a0a;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.11
        );

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            0.45
        );
}


.process-image img {

    display: block;

    width: 100%;

    height: auto;

    max-height: 700px;

    object-fit: contain;

    margin: 0 auto;

    transition:
        transform
        0.6s ease;
}


.process-image:hover img {

    transform:
        scale(
            1.018
        );
}


/* =========================================================
   CELULAR
========================================================= */

@media (
    max-width: 760px
) {

    .collection-group {

        margin-bottom:
            55px;
    }


    .collection-group-heading {

        gap:
            12px;

        margin-bottom:
            28px;
    }


    .collection-group-line {

        width:
            35px;
    }


    .services-grid {

        grid-template-columns:
            1fr;
    }


    .process-section {

        padding:
            90px 0;
    }


    .process-heading {

        margin-bottom:
            55px;
    }


    .process-gallery {

        grid-template-columns:
            1fr;

        gap:
            50px;
    }


    .process-item:nth-child(even) {

        transform:
            none;
    }


    .process-item {

        max-width:
            600px;

        width:
            100%;

        margin:
            0 auto;
    }


    .process-number {

        top:
            -20px;

        left:
            14px;
    }

}
/* =========================================================
   EXPEL — PROCESO MÁS COMPACTO
========================================================= */

.process-gallery {
    max-width: 900px;
    margin: 0 auto;

    grid-template-columns: repeat(3, 1fr);

    gap: 45px 28px;
}


.process-item {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
}


/* Quitamos el desfase tan grande que tenían */
.process-item:nth-child(even) {
    transform: translateY(30px);
}


.process-image {
    width: 100%;
    aspect-ratio: 4 / 5;
}


.process-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    max-height: none;
}


/* Número un poquito más discreto */
.process-number {
    font-size: clamp(2rem, 4vw, 3.4rem);

    top: -18px;
    left: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .process-gallery {
        max-width: 620px;

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 30px;
    }


    .process-item {
        max-width: 260px;
    }


    .process-item:nth-child(even) {
        transform: none;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 560px) {

    .process-gallery {
        max-width: 330px;

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 15px;
    }


    .process-item {
        max-width: 150px;
    }


    .process-image {
        aspect-ratio: 4 / 5;
    }


    .process-number {
        font-size: 2rem;

        top: -12px;
        left: 8px;
    }

}

/* =========================================================
   EXPEL — ACTUALIZACIÓN FINAL DE CATÁLOGO
========================================================= */

/* Foto de la fundadora / tienda en Nosotros */
.about-photo {
    width: min(560px, 100%);
    margin: 45px auto 0;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.025);
    box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
}

.about-photo + .about-signature {
    margin-top: 32px;
}

/* Videos que solo muestran el resultado: sin apariencia de producto comprable */
.demo-card .product-video-container {
    aspect-ratio: 16 / 9;
}

.demo-card .product-info {
    text-align: center;
}

.demo-card .demo-text {
    min-height: 0;
    margin-bottom: 0;
    color: #8f8f8f;
}

/* Accesorios: separación entre fotos y lista de servicios */
.collection-products + .collection-services {
    margin-top: 45px;
}
/* =========================================================
   EXPEL — VIDEO FINAL DEL PROCESO ONCOLÓGICO
========================================================= */

.process-video-item {
    position: relative;
}

.process-video-item .process-image {
    position: relative;
    overflow: hidden;
    background: #050505;
}

.process-video-item .process-image video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    background: #050505;
}


/* Etiqueta pequeña encima del video */

.process-video-label {
    position: absolute;

    top: -14px;
    left: 12px;

    z-index: 3;

    font-family: "Montserrat", sans-serif;

    font-size: 0.65rem;
    font-weight: 500;

    letter-spacing: 0.18em;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   ACOMODO EN COMPUTADORA

   01      02      03
   04      05      06
   VIDEO   07
========================================================= */

@media (min-width: 901px) {

    .process-gallery > .process-video-item {
        grid-column: 1;
    }

    .process-gallery > .process-item:nth-child(8) {
    grid-column: 3;
    grid-row: 3;

    transform: none;
}

}


/* =========================================================
   TABLET Y CELULAR
========================================================= */

@media (max-width: 900px) {

    .process-video-label {
        top: -12px;

        font-size: 0.58rem;
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .process-video-item .process-image video {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

}
/* =========================================================
   EXPEL — ACOMODO FINAL PROCESO ONCOLÓGICO
========================================================= */

@media (min-width: 901px) {

    .process-gallery {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 28px;
    }


    /* VIDEO */

    .process-gallery > .process-video-item:nth-child(7) {
        grid-column: 1;
        grid-row: 3;

        transform: none;
    }


    /* FOTO 07 */

    .process-gallery > .process-item:nth-child(8) {
        grid-column: 2;
        grid-row: 3;

        transform: none;
    }

}
.process-video-item .process-image video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}
/* =========================================================
   EXPEL — POSICIÓN DEFINITIVA VIDEO + FOTO 07
========================================================= */

@media (min-width: 901px) {

    /* VIDEO — ABAJO A LA IZQUIERDA */
    .process-gallery > .process-video-item {
        grid-column: 1 !important;
        grid-row: 3 !important;

        transform: none !important;
        margin: 0 !important;
    }


    /* FOTO 07 — ABAJO A LA DERECHA */
    .process-gallery > .process-item:last-child {
        grid-column: 3 !important;
        grid-row: 3 !important;

        transform: none !important;
        margin: 0 !important;
    }


    /* Mismo tamaño para ambos */
    .process-gallery > .process-video-item,
    .process-gallery > .process-item:last-child {
        width: 100% !important;
        max-width: 270px !important;
    }


    /* Video llena su recuadro */
    .process-video-item .process-image video {
        display: block;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;
    }

}
/* Separación extra para VIDEO + FOTO 07 */

@media (min-width: 901px) {

    .process-gallery > .process-video-item,
    .process-gallery > .process-item:last-child {
        margin-top: 45px !important;
    }

}