:root {
    --navy: #00205B;
    --navy2: #061B3F;
    --gold: #BD9B60;
    --gold2: #977C40;
    --cream: #F8F5EF;
    --ink: #333333;
    --blue: #0A73C4;
    --white: #fff;
    --shadow: 0 24px 70px rgba(0,0,0,.18)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55
}

.container {
    width: min(1180px,92vw);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg,rgba(0,32,91,.98),rgba(6,27,63,.92));
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0,0,0,.16)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px
}

.brand {
    display: flex;
    gap: 14px;
    align-items: center;
    color: white;
    text-decoration: none
}

.brand-mark {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-weight: 800
}

.brand strong {
    display: block;
    letter-spacing: .08em;
    font-size: 18px
}

.brand small {
    display: block;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em
}

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

    .nav-links a, .nav-login {
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 13px;
        letter-spacing: .03em;
        background: transparent;
        border: 0;
        cursor: pointer
    }

        .nav-links a:hover, .nav-login:hover {
            color: var(--gold)
        }

.nav-toggle {
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 13px;
    cursor: pointer
}

.btn-gold {
    background: linear-gradient(135deg,var(--gold),#d5b46e);
    color: white
}

    .btn-gold:hover {
        background: var(--gold2)
    }

.btn-outline {
    border-color: white;
    color: white
}

.btn-ghost {
    color: white;
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.06)
}

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

.hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden
}

.hero-bg, .hero-overlay {
    position: absolute;
    inset: 0
}

.hero-bg {
    background-size: cover;
    background-position: center;
    filter: saturate(.9)
}

.hero-overlay {
    background: linear-gradient(90deg,rgba(0,32,91,.96) 0%,rgba(0,32,91,.78) 38%,rgba(0,0,0,.25) 100%)
}

.hero-content {
    position: relative;
    color: white;
    max-width: 1180px
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px
}

    .eyebrow.dark {
        color: var(--gold2)
    }

h1, h2 {
    font-family: 'Playfair Display',Georgia,serif;
    line-height: 1.03;
    margin: 0;
    color: inherit
}

h1 {
    font-size: clamp(42px,6vw,82px);
    max-width: 820px
}

h2 {
    font-size: clamp(32px,4vw,54px)
}

.hero-copy {
    font-size: 20px;
    max-width: 630px;
    color: rgba(255,255,255,.92)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-card {
    position: absolute;
    right: 8vw;
    bottom: 42px;
    background: rgba(255,255,255,.9);
    padding: 24px 32px;
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow)
}

    .hero-card span {
        display: block;
        color: var(--navy);
        font-size: 32px;
        font-weight: 800
    }

    .hero-card small {
        color: var(--ink)
    }

.stats {
    background: var(--navy);
    color: white
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

    .stats-grid div {
        padding: 26px;
        border-left: 1px solid rgba(255,255,255,.14)
    }

    .stats-grid strong {
        font-size: 34px;
        color: var(--gold);
        display: block
    }

.section {
    padding: 88px 0
}

.two-col {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: center
}

    .two-col.reverse {
        grid-template-columns: 1.1fr .9fr
    }

.copy-block {
    font-size: 18px
}

.section-head {
    margin-bottom: 34px
}

    .section-head.centered {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 40px
    }

.section-copy {
    color: #5b5b5b
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px
}

.category-card {
    position: relative;
    text-align: left;
    border: 0;
    background: white;
    padding: 0;
    box-shadow: 0 22px 55px rgba(0,0,0,.10);
    cursor: pointer;
    overflow: hidden;
    min-height: 410px;
    transition: .25s ease
}

    .category-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 30px 70px rgba(0,0,0,.16)
    }

    .category-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        background: #eee
    }

    .category-card .cat-content {
        padding: 28px
    }

    .category-card h3 {
        color: var(--navy);
        font-size: 24px;
        line-height: 1.15;
        margin: 0 0 12px
    }

    .category-card p {
        font-size: 16px;
        margin: 0 0 24px;
        color: #5b5b5b
    }

    .category-card em {
        font-style: normal;
        color: var(--gold2);
        font-weight: 800
    }

    .category-card:before {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(189,155,96,.35);
        pointer-events: none
    }

    .category-card:after {
        content: "Ver catálogo";
        position: absolute;
        right: 20px;
        top: 20px;
        background: rgba(0,32,91,.9);
        color: white;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 800
    }

.premium-band {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 480px;
    background: var(--navy);
    color: white
}

.band-img {
    background-size: cover;
    background-position: center
}

.band-content {
    padding: 80px;
    align-self: center
}

    .band-content p {
        color: rgba(255,255,255,.86)
    }

.image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

    .image-stack img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        box-shadow: var(--shadow)
    }

.feature-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 28px 0;
    list-style: none
}

    .feature-list li {
        background: white;
        padding: 16px 18px;
        border-left: 4px solid var(--gold);
        box-shadow: 0 10px 30px rgba(0,0,0,.08)
    }

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

    .gallery-strip img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        background: white;
        box-shadow: 0 16px 42px rgba(0,0,0,.12)
    }

.contact {
    background: linear-gradient(135deg,var(--navy),#08172e);
    color: white
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px
}

.contact-card {
    background: rgba(255,255,255,.08);
    padding: 26px;
    border: 1px solid rgba(255,255,255,.18);
    display: grid;
    gap: 8px
}

    .contact-card a, .contact-card span {
        color: white;
        text-decoration: none
    }

.whatsapp-inline {
    color: #25D366 !important;
    font-weight: 800
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

    .badges span {
        border: 1px solid rgba(255,255,255,.2);
        padding: 8px 12px;
        border-radius: 999px;
        color: rgba(255,255,255,.82)
    }

.form {
    background: white;
    color: var(--ink);
    padding: 34px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px
}

    .form label, .login-dialog label, .admin-form label {
        display: grid;
        gap: 7px;
        font-weight: 800;
        color: var(--navy)
    }

input, select, textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    font: inherit;
    background: white
}

.form-status {
    font-size: 13px;
    color: #666
}

.footer {
    background: #07111f;
    color: rgba(255,255,255,.72);
    padding: 28px 0
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    z-index: 70;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.28)
}

    .whatsapp-float svg {
        width: 36px;
        height: 36px;
        fill: white
    }

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none
}

    .modal.open {
        display: block
    }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.66);
    backdrop-filter: blur(8px)
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 34px;
    cursor: pointer;
    z-index: 2
}

.product-dialog {
    position: relative;
    margin: 5vh auto;
    width: min(1120px,92vw);
    min-height: 650px;
    background: linear-gradient(120deg,#fff 0%,#fff 46%,#f4efe5 46%,#f4efe5 100%);
    box-shadow: 0 28px 100px rgba(0,0,0,.4);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden
}

.product-carousel {
    position: relative;
    display: grid;
    place-items: center;
    padding: 40px;
    background: radial-gradient(circle at 50% 50%,#fff 0,#f2efe8 60%,#e7dfd0 100%)
}

.product-image-frame {
    width: 100%;
    height: min(55vh, 548px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-frame img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-detail {
    padding: 78px 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .product-detail h2 {
        color: var(--navy);
        font-size: 46px
    }

    .product-detail p {
        font-size: 18px;
        color: #555
    }

.detail-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,32,91,.15)
}

    .detail-block h3 {
        color: var(--navy);
        margin: 0 0 10px
    }

    .detail-block ul {
        padding-left: 20px;
        margin: 0;
        display: grid;
        gap: 8px
    }

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--navy);
    color: white;
    font-size: 34px;
    cursor: pointer;
    z-index: 2
}

    .carousel-btn.left {
        left: 18px
    }

    .carousel-btn.right {
        right: 18px
    }

.carousel-count {
    margin-top: 18px;
    color: var(--gold2);
    font-weight: 800
}

.login-dialog {
    position: relative;
    margin: 6vh auto;
    width: min(940px,92vw);
    max-height: 88vh;
    overflow: auto;
    background: white;
    box-shadow: 0 28px 100px rgba(0,0,0,.4);
    padding: 42px
}

    .login-dialog h2 {
        color: var(--navy);
        margin-bottom: 18px
    }

    .login-dialog label {
        margin-bottom: 14px
    }

.admin-panel[hidden], #loginBox[hidden] {
    display: none
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.admin-form {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    padding: 22px;
    background: #f7f4ee;
    margin: 18px 0
}

    .admin-form label:nth-child(5), .admin-form label:nth-child(6), .admin-actions {
        grid-column: 1/-1
    }

.admin-check {
    display: flex !important;
    grid-template-columns: auto 1fr !important;
    align-items: center
}

    .admin-check input {
        width: auto
    }

.admin-actions {
    display: flex;
    gap: 12px
}

.admin-list {
    display: grid;
    gap: 12px
}

.admin-item {
    display: grid;
    grid-template-columns: 76px 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid #eee;
    background: white
}

    .admin-item img {
        width: 76px;
        height: 60px;
        object-fit: cover
    }

    .admin-item strong {
        display: block;
        color: var(--navy)
    }

    .admin-item span, .admin-item small {
        display: block;
        color: #666
    }

    .admin-item button {
        border: 1px solid #ddd;
        background: white;
        padding: 8px 10px;
        cursor: pointer
    }

.no-scroll {
    overflow: hidden
}

@media (max-width:920px) {
    .nav-toggle {
        display: block;
        background: transparent;
        color: white;
        border: 0;
        font-size: 28px
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        background: var(--navy);
        padding: 22px;
        flex-direction: column;
        align-items: flex-start
    }

        .nav-links.open {
            display: flex
        }

    .stats-grid, .category-grid, .gallery-strip {
        grid-template-columns: 1fr 1fr
    }

    .two-col, .two-col.reverse, .contact-grid, .premium-band, .product-dialog {
        grid-template-columns: 1fr
    }

    .hero-card {
        display: none
    }

    .band-content {
        padding: 44px
    }

    .product-dialog {
        max-height: 90vh;
        overflow: auto
    }

    .product-image-frame {
        height: 360px
    }

    .product-detail {
        padding: 34px
    }

    .admin-form {
        grid-template-columns: 1fr
    }
}

@media (max-width:620px) {
    .stats-grid, .category-grid, .gallery-strip {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 700px
    }

    .footer-grid {
        flex-direction: column
    }

    .product-detail h2 {
        font-size: 34px
    }

    .carousel-btn {
        width: 40px;
        height: 40px
    }

    .admin-item {
        grid-template-columns: 64px 1fr
    }

        .admin-item button {
            grid-column: 2
        }
}

/* V6 refinements: premium section, cleaner categories and luxury carousel */
.nav-links a[href="#productos"] {
    color: var(--gold)
}

.luxury-stats {
    position: relative;
    background: linear-gradient(135deg,#06172f 0%,#00205B 48%,#08101e 100%);
    padding: 34px 0;
    overflow: hidden
}

    .luxury-stats:before {
        content: "";
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 20% 20%,rgba(189,155,96,.22),transparent 28%),radial-gradient(circle at 80% 10%,rgba(102,199,255,.12),transparent 24%);
        pointer-events: none
    }

    .luxury-stats .stats-grid {
        position: relative;
        gap: 18px
    }

        .luxury-stats .stats-grid div {
            padding: 34px 28px;
            border: 1px solid rgba(189,155,96,.28);
            background: linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035));
            backdrop-filter: blur(16px);
            box-shadow: 0 24px 70px rgba(0,0,0,.22)
        }

    .luxury-stats small {
        display: block;
        color: rgba(255,255,255,.68);
        text-transform: uppercase;
        letter-spacing: .18em;
        font-size: 10px;
        margin-bottom: 8px
    }

    .luxury-stats strong {
        font-family: 'Playfair Display',Georgia,serif;
        font-size: clamp(42px,5vw,72px);
        line-height: .95;
        color: #d7b873;
        text-shadow: 0 12px 30px rgba(0,0,0,.25)
    }

    .luxury-stats span {
        display: block;
        margin-top: 10px;
        color: rgba(255,255,255,.82)
    }

#productos {
    background: linear-gradient(180deg,#F8F5EF 0%,#fffaf1 100%)
}

    #productos .section-head h2 {
        letter-spacing: .06em;
        color: var(--navy)
    }

.category-grid {
    grid-template-columns: repeat(5,1fr);
    gap: 18px
}

.category-card {
    min-height: 500px;
    border-radius: 0;
    background: #07111f;
    color: white;
    box-shadow: 0 32px 80px rgba(0,0,0,.16)
}

    .category-card img {
        height: 100%;
        position: absolute;
        inset: 0;
        object-fit: cover;
        opacity: .72;
        transform: scale(1.02);
        transition: .5s ease
    }

    .category-card:before {
        z-index: 1;
        background: linear-gradient(180deg,rgba(0,32,91,.16) 0%,rgba(0,0,0,.82) 72%,rgba(0,0,0,.94) 100%);
        border: 1px solid rgba(189,155,96,.36)
    }

    .category-card:after {
        z-index: 2;
        content: "Abrir";
        background: rgba(189,155,96,.92);
        color: white;
        border-radius: 0;
        letter-spacing: .12em;
        text-transform: uppercase
    }

    .category-card .cat-content {
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 28px
    }

    .category-card h3 {
        color: white;
        font-family: 'Playfair Display',Georgia,serif;
        font-size: 28px
    }

    .category-card p {
        color: rgba(255,255,255,.78);
        font-size: 15px
    }

    .category-card em {
        display: inline-flex;
        margin-top: 8px;
        color: #d7b873;
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: 12px
    }

    .category-card:hover img {
        transform: scale(1.1);
        opacity: .92
    }

    .category-card:hover {
        transform: translateY(-10px)
    }

.sensory-band {
    padding-top: 40px;
    background: #F8F5EF
}

.sensory-card {
    position: relative;
    background: linear-gradient(120deg,#fff 0%,#fbf6ea 58%,#e9dcc4 100%);
    padding: 58px 64px;
    border: 1px solid rgba(189,155,96,.28);
    box-shadow: 0 28px 80px rgba(0,0,0,.08);
    overflow: hidden
}

    .sensory-card:after {
        content: "";
        position: absolute;
        right: -70px;
        top: -90px;
        width: 260px;
        height: 260px;
        border: 1px solid rgba(189,155,96,.38);
        border-radius: 50%
    }

    .sensory-card h2 {
        color: var(--navy);
        max-width: 780px
    }

    .sensory-card p {
        max-width: 720px;
        color: #5b5b5b;
        font-size: 18px
    }

.product-modal .modal-backdrop {
    background: rgba(0,14,35,.82);
    backdrop-filter: blur(18px)
}

.product-dialog {
    width: min(1280px,94vw);
    min-height: 720px;
    margin: 4vh auto;
    border: 1px solid rgba(189,155,96,.35);
    background: linear-gradient(120deg,#08172f 0%,#08172f 52%,#fffaf1 52%,#fffaf1 100%);
    box-shadow: 0 38px 120px rgba(0,0,0,.58)
}

.product-carousel {
    background: radial-gradient(circle at 50% 38%,rgba(255,255,255,.18),rgba(189,155,96,.16) 36%,rgba(0,32,91,.08) 58%,rgba(0,0,0,.08) 100%);
    padding: 58px 44px 96px
}

.product-image-frame {
    height: 548px
}

    .product-image-frame img {
        filter: drop-shadow(0 32px 34px rgba(0,0,0,.34))
    }

.product-detail {
    padding: 86px 68px 60px
}

    .product-detail h2 {
        font-size: clamp(38px,4.8vw,66px);
        letter-spacing: -.02em
    }

    .product-detail p {
        font-size: 18px;
        color: #4e4a43
    }

.detail-block {
    border-top: 1px solid rgba(189,155,96,.38)
}

    .detail-block li::marker {
        color: var(--gold)
    }

.modal-close {
    right: 24px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--navy);
    box-shadow: 0 14px 30px rgba(0,0,0,.16)
}

.carousel-btn {
    background: rgba(189,155,96,.96);
    box-shadow: 0 18px 34px rgba(0,0,0,.24)
}

.modal-thumbs {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 3
}

.thumb {
    width: 70px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.12);
    padding: 4px;
    cursor: pointer;
    position: relative;
    opacity: .68;
    transition: .2s ease
}

    .thumb.active {
        opacity: 1;
        border-color: #d7b873;
        background: rgba(189,155,96,.2)
    }

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

    .thumb span {
        position: absolute;
        right: 4px;
        bottom: 3px;
        background: rgba(0,32,91,.85);
        color: white;
        font-size: 10px;
        padding: 1px 4px
    }

.carousel-count {
    letter-spacing: .2em;
    text-transform: uppercase
}

.detail-actions .btn {
    min-width: 180px
}

@media (max-width:1180px) {
    .category-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .category-card {
        min-height: 420px
    }
}

@media (max-width:920px) {
    .product-dialog {
        background: #fffaf1
    }

    .product-carousel {
        min-height: 420px
    }

    .modal-thumbs {
        position: static;
        margin: 0 26px 20px
    }

    .category-grid {
        grid-template-columns: 1fr 1fr !important
    }

    .luxury-stats .stats-grid {
        grid-template-columns: 1fr 1fr !important
    }
}

@media (max-width:620px) {
    .category-grid, .luxury-stats .stats-grid {
        grid-template-columns: 1fr !important
    }

    .sensory-card {
        padding: 40px 28px
    }

    .product-image-frame {
        height: 330px
    }

    .thumb {
        width: 56px;
        height: 46px
    }
}

/* V7 polish requested by Yaz: lighter luxury backgrounds, aligned imagery/text, no duplicate open button */
:root {
    --cream-soft: #fbf8f1;
    --paper: #fffdf8;
    --gold-soft: #c7a35a;
}

body {
    background: var(--cream-soft)
}

.section.products {
    padding-top: 84px;
    padding-bottom: 72px;
    background: linear-gradient(180deg,#fbf8f1 0%,#fffdf8 100%)
}

#productos .section-head {
    margin-bottom: 42px
}

    #productos .section-head h2 {
        font-size: clamp(48px,6vw,86px);
        line-height: .9;
        color: var(--navy);
        text-shadow: none
    }

#productos .section-copy {
    color: #444;
    max-width: 920px;
    margin: auto;
    font-size: 17px
}

.category-grid {
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 22px;
    align-items: stretch
}

.category-card {
    min-height: 0 !important;
    height: auto !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: var(--paper) !important;
    color: var(--ink) !important;
    box-shadow: 0 18px 50px rgba(0,32,91,.08) !important;
    border: 1px solid rgba(0,32,91,.08) !important;
    display: grid !important;
    grid-template-rows: 210px 1fr;
    position: relative;
}

    .category-card:before, .category-card:after {
        display: none !important;
        content: none !important
    }

    .category-card img {
        position: relative !important;
        width: 100%;
        height: 210px !important;
        object-fit: cover !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        border-bottom: 1px solid rgba(189,155,96,.18)
    }

    .category-card .cat-content {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 2 !important;
        padding: 24px 24px 26px !important;
        display: grid;
        align-content: start;
        min-height: 235px;
    }

    .category-card h3 {
        color: var(--ink) !important;
        font-size: clamp(21px,1.7vw,29px) !important;
        line-height: 1.05;
        margin-bottom: 14px;
    }

    .category-card p {
        color: #555 !important;
        font-size: 14.5px !important;
        line-height: 1.55;
        margin: 0 0 20px
    }

    .category-card em {
        margin-top: auto !important;
        color: var(--gold2) !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        letter-spacing: .16em !important;
    }

    .category-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 26px 70px rgba(0,32,91,.12) !important
    }

        .category-card:hover img {
            transform: none !important;
            opacity: 1 !important
        }

/* Technology section lighter and visually aligned */
.technology {
    background: #fbf8f1;
    padding-top: 78px;
    padding-bottom: 82px
}

    .technology .two-col {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 64px
    }

.image-stack {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch
}

    .image-stack img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 18px 45px rgba(0,32,91,.10)
    }

.technology h2 {
    font-size: clamp(46px,5vw,76px);
    color: #383838;
    line-height: .94;
    margin-bottom: 28px
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none
}

    .feature-list li {
        background: rgba(255,255,255,.88);
        border-left: 4px solid var(--gold-soft);
        box-shadow: 0 12px 34px rgba(0,32,91,.06);
        padding: 18px 20px;
        color: #232323;
        font-weight: 500
    }

/* Metrics: premium but not too dark */
.luxury-stats {
    background: linear-gradient(180deg,#fffaf1 0%,#f5ecdc 100%) !important;
    padding: 46px 0 !important;
    border-top: 1px solid rgba(189,155,96,.16);
    border-bottom: 1px solid rgba(189,155,96,.16)
}

    .luxury-stats:before {
        display: none !important
    }

    .luxury-stats .stats-grid {
        gap: 0 !important;
        background: rgba(255,255,255,.64);
        border: 1px solid rgba(189,155,96,.22);
        box-shadow: 0 22px 70px rgba(0,32,91,.08)
    }

        .luxury-stats .stats-grid div {
            background: transparent !important;
            border: 0 !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            padding: 34px 34px !important;
            border-right: 1px solid rgba(189,155,96,.26) !important;
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto;
            column-gap: 18px;
            align-items: center
        }

            .luxury-stats .stats-grid div:last-child {
                border-right: 0 !important
            }

    .luxury-stats small {
        grid-column: 2;
        color: var(--gold2) !important;
        letter-spacing: .17em;
        font-size: 11px !important;
        margin: 0 !important
    }

    .luxury-stats strong {
        grid-row: 1 / span 2;
        grid-column: 1;
        color: var(--navy) !important;
        text-shadow: none !important;
        font-size: clamp(48px,5vw,78px) !important
    }

    .luxury-stats span {
        grid-column: 2;
        color: #4b4b4b !important;
        margin: 0 !important;
        font-weight: 500
    }

/* Premium band softened */
.premium-band {
    background: #fffdf8 !important;
    border-top: 1px solid rgba(189,155,96,.14);
    border-bottom: 1px solid rgba(189,155,96,.14)
}

.band-content {
    background: linear-gradient(135deg,#fffaf1,#f1e6d3) !important;
    color: var(--ink) !important
}

    .band-content h2 {
        color: var(--navy) !important
    }

    .band-content p {
        color: #4d4d4d !important
    }

@media(max-width:1180px) {
    .category-grid {
        grid-template-columns: repeat(2,1fr) !important
    }

    .category-card {
        grid-template-rows: 240px 1fr
    }

        .category-card img {
            height: 240px !important
        }

    .technology .two-col {
        grid-template-columns: 1fr
    }

    .image-stack img {
        height: 430px
    }
}

@media(max-width:760px) {
    .category-grid {
        grid-template-columns: 1fr !important
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .image-stack {
        grid-template-columns: 1fr
    }

        .image-stack img {
            height: 320px
        }

    .luxury-stats .stats-grid {
        grid-template-columns: 1fr !important
    }

        .luxury-stats .stats-grid div {
            border-right: 0 !important;
            border-bottom: 1px solid rgba(189,155,96,.22) !important
        }

            .luxury-stats .stats-grid div:last-child {
                border-bottom: 0 !important
            }
}

/* V8 quick fixes requested by Yaz: keep V7 style, order sections, no duplicate m2, services, lighter modal */
.hero-card {
    display: none !important
}

.services {
    background: #fffdf8;
    padding-top: 78px;
    padding-bottom: 78px;
    border-top: 1px solid rgba(189,155,96,.12);
    border-bottom: 1px solid rgba(189,155,96,.12)
}

.services-head {
    max-width: 760px;
    margin: 0 0 44px 0
}

    .services-head h2 {
        color: #2e2e2e;
        font-size: clamp(34px,4vw,58px);
        line-height: 1.04
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(189,155,96,.20);
    box-shadow: 0 24px 70px rgba(0,32,91,.06)
}

.service-card {
    position: relative;
    text-align: center;
    padding: 44px 34px 38px;
    border-right: 1px solid rgba(189,155,96,.18);
    min-height: 360px
}

    .service-card:last-child {
        border-right: 0
    }

.service-number {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #171717;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800
}

.service-icon {
    width: 88px;
    height: 88px;
    border: 1px solid rgba(189,155,96,.50);
    border-radius: 50%;
    margin: 16px auto 22px;
    display: grid;
    place-items: center;
    font-size: 42px;
    color: var(--gold2);
    font-family: Georgia,serif
}

.service-card h3 {
    font-size: 22px;
    line-height: 1.08;
    margin: 0 0 18px;
    color: #222
}

.service-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0
}

.services-foot {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 26px;
    background: #faf8f3;
    border: 1px solid rgba(189,155,96,.14);
    box-shadow: 0 12px 34px rgba(0,32,91,.04)
}

    .services-foot span {
        padding: 18px 22px;
        text-align: center;
        color: #5b5b5b;
        font-size: 13px;
        border-right: 1px solid rgba(189,155,96,.14)
    }

        .services-foot span:last-child {
            border-right: 0
        }

.product-modal .modal-backdrop {
    background: rgba(5,18,40,.68) !important;
    backdrop-filter: blur(14px) !important
}

.product-dialog {
    background: linear-gradient(90deg,#f8f2e8 0%,#fffdf8 52%,#fffdf8 100%) !important;
    border: 1px solid rgba(189,155,96,.28) !important
}

.product-carousel {
    background: radial-gradient(circle at 50% 38%,#fffdf8 0%,#f6efe4 58%,#eadfce 100%) !important
}

.product-detail {
    background: #fffdf8 !important
}

    .product-detail h2, .product-detail h3 {
        color: var(--navy) !important
    }

    .product-detail p, .detail-block li {
        color: #454545 !important
    }

.thumb {
    background: rgba(255,255,255,.78) !important;
    border-color: rgba(0,32,91,.16) !important
}

    .thumb.active {
        border-color: var(--gold) !important;
        background: #fff !important
    }

.carousel-btn {
    background: rgba(189,155,96,.95) !important;
    color: #fff !important
}

.modal-thumbs {
    bottom: 28px
}

.category-card em {
    font-size: 12px !important
}

    .category-card em::before {
        content: ""
    }

.premium-band {
    background: #fffdf8 !important;
    min-height: 430px
}

    .premium-band .band-img {
        min-height: 430px
    }

.band-content {
    padding: 70px !important
}

.luxury-stats {
    order: initial
}

.stats-grid div strong + span {
    white-space: normal
}

.stats-grid div:last-child strong {
    letter-spacing: .02em
}

@media(max-width:980px) {
    .services-grid, .services-foot {
        grid-template-columns: 1fr 1fr
    }

    .service-card:nth-child(2) {
        border-right: 0
    }

    .service-card {
        border-bottom: 1px solid rgba(189,155,96,.18)
    }

        .service-card:nth-child(3), .service-card:nth-child(4) {
            border-bottom: 0
        }

    .product-dialog {
        grid-template-columns: 1fr !important
    }

    .product-detail {
        padding: 38px 30px 42px !important
    }

    .product-carousel {
        padding-bottom: 30px !important
    }

    .modal-thumbs {
        position: static !important;
        margin-top: 10px !important
    }

    .premium-band {
        grid-template-columns: 1fr !important
    }
}

@media(max-width:620px) {
    .services-grid, .services-foot {
        grid-template-columns: 1fr
    }

        .service-card, .services-foot span {
            border-right: 0 !important;
            border-bottom: 1px solid rgba(189,155,96,.18)
        }

            .service-card:last-child, .services-foot span:last-child {
                border-bottom: 0 !important
            }
}

/* V9 final polish: menu spacing, premium contact, refined technology */
.site-header {
    background: linear-gradient(90deg,#071832 0%,#00205B 55%,#071832 100%) !important
}

.nav.container {
    width: min(1420px,96vw) !important;
    height: 92px !important;
    gap: 34px !important
}

.brand {
    min-width: 280px !important;
    flex: 0 0 auto !important
}

    .brand strong {
        font-size: 20px !important
    }

    .brand small {
        font-size: 12px !important;
        letter-spacing: .20em !important
    }

.nav-links {
    flex: 1 !important;
    justify-content: space-between !important;
    gap: 18px !important
}

    .nav-links a, .nav-login {
        font-size: 12px !important;
        line-height: 1.18 !important;
        letter-spacing: .045em !important;
        white-space: normal !important;
        text-align: center !important
    }

    .nav-links .btn {
        padding: 13px 22px !important;
        white-space: nowrap !important;
        color: white !important
    }

    .nav-links a[href="#productos"] {
        color: var(--gold) !important
    }

.technology {
    background: linear-gradient(180deg,#fffdf8 0%,#fbf8f1 100%) !important;
    padding: 88px 0 44px !important
}

.tech-premium-layout {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 42px 64px;
    align-items: center
}

.tech-copy h2 {
    font-size: clamp(34px,4vw,56px) !important;
    line-height: 1.02 !important;
    color: var(--navy) !important;
    max-width: 560px;
    margin: 0 0 24px !important
}

.tech-intro {
    font-size: 17px;
    color: #56524b;
    max-width: 520px;
    margin: 0
}

.tech-visual img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0,32,91,.12)
}

.tech-feature-grid {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 18px
}

    .tech-feature-grid article {
        display: grid;
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 18px;
        align-items: center;
        background: rgba(255,255,255,.88);
        border: 1px solid rgba(189,155,96,.16);
        border-left: 4px solid var(--gold);
        padding: 24px 24px;
        box-shadow: 0 18px 50px rgba(0,32,91,.055);
        border-radius: 10px
    }

    .tech-feature-grid span {
        grid-row: 1 / span 2;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--navy);
        color: var(--gold);
        border: 1px solid rgba(189,155,96,.65);
        font-size: 25px
    }

    .tech-feature-grid strong {
        color: var(--navy);
        font-size: 16px;
        line-height: 1.2
    }

    .tech-feature-grid p {
        margin: 0;
        color: #5e5a52;
        font-size: 13px;
        line-height: 1.55
    }

.luxury-stats {
    padding: 36px 0 52px !important;
    background: #fbf8f1 !important;
    border: 0 !important
}

    .luxury-stats .stats-grid {
        background: linear-gradient(90deg,#071832,#00205B 50%,#071832) !important;
        border: 0 !important;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: 0 24px 70px rgba(0,32,91,.14) !important
    }

        .luxury-stats .stats-grid div {
            border-right: 1px solid rgba(255,255,255,.18) !important;
            padding: 28px 30px !important
        }

    .luxury-stats small {
        color: #d7b873 !important
    }

    .luxury-stats strong {
        color: #fff !important;
        font-size: clamp(40px,4vw,62px) !important
    }

    .luxury-stats span {
        color: rgba(255,255,255,.88) !important
    }

.contact {
    position: relative;
    background: radial-gradient(circle at 12% 30%,rgba(189,155,96,.15),transparent 32%),linear-gradient(135deg,#06172f 0%,#00205B 55%,#07111f 100%) !important;
    color: white !important;
    padding: 92px 0 !important;
    overflow: hidden
}

    .contact:before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('assets/images/photo-8.jpg') left center/48% auto no-repeat;
        opacity: .16;
        filter: saturate(.7)
    }

.contact-premium-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .85fr;
    gap: 48px 72px;
    align-items: center
}

.contact-copy h2 {
    font-size: clamp(42px,5vw,72px) !important;
    color: white !important;
    line-height: .96 !important;
    max-width: 650px
}

    .contact-copy h2 span {
        color: var(--gold)
    }

.contact-copy > p {
    font-size: 18px;
    max-width: 560px;
    color: rgba(255,255,255,.88)
}

.contact-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 40px
}

    .contact-benefits div {
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 14px;
        align-items: center
    }

.mini-icon {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 24px
}

.contact-benefits strong {
    font-size: 15px
}

.contact-benefits small {
    color: rgba(255,255,255,.8);
    font-size: 13px
}

.contact-panel {
    background: linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 28px 90px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 44px 48px;
    text-align: center
}

.avatar-icon {
    width: 86px;
    height: 86px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: var(--gold);
    font-size: 48px
}

.contact-panel h3 {
    font-family: 'Playfair Display',Georgia,serif;
    font-size: 30px;
    margin: 0;
    color: white
}

.role {
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px !important;
    font-weight: 800;
    margin: 4px 0 26px !important
}

.contact-lines {
    display: grid;
    gap: 18px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 26px 0;
    margin: 0 0 24px
}

    .contact-lines a, .contact-lines > span {
        display: flex;
        gap: 14px;
        align-items: center;
        color: white;
        text-decoration: none;
        font-weight: 600
    }

        .contact-lines span span, .contact-lines a span {
            color: var(--gold);
            font-size: 20px
        }

.premium-whatsapp {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #39e66a !important;
    font-weight: 900 !important;
    text-decoration: none !important
}

.contact-form-premium {
    grid-column: 1/-1;
    display: grid !important;
    grid-template-columns: repeat(2,1fr);
    background: rgba(255,255,255,.96) !important;
    border-radius: 10px
}

    .contact-form-premium label:nth-child(5), .contact-form-premium button, .contact-form-premium .form-status {
        grid-column: 1/-1
    }

.contact-badges {
    grid-column: 1/-1;
    justify-content: center;
    margin-top: 0 !important
}

    .contact-badges span {
        background: rgba(255,255,255,.055);
        border-color: rgba(255,255,255,.22) !important;
        color: white !important;
        padding: 11px 18px !important
    }

.product-dialog {
    background: #fffdf8 !important
}

.product-carousel {
    background: radial-gradient(circle at 50% 38%,#fffdf8 0%,#f6efe4 60%,#ede2d2 100%) !important
}

.product-detail {
    background: #fffdf8 !important
}

.modal-close {
    background: #fff !important
}

@media(max-width:1180px) {
    .nav.container {
        height: auto !important;
        min-height: 92px !important
    }

    .brand {
        min-width: 230px !important
    }

    .nav-links {
        gap: 12px !important
    }

        .nav-links a, .nav-login {
            font-size: 11px !important
        }

    .tech-premium-layout, .contact-premium-grid {
        grid-template-columns: 1fr
    }

    .tech-feature-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-form-premium {
        grid-template-columns: 1fr !important
    }
}

@media(max-width:920px) {
    .nav-links {
        justify-content: flex-start !important;
        text-align: left !important
    }

        .nav-links a, .nav-login {
            text-align: left !important
        }

    .tech-feature-grid, .contact-benefits {
        grid-template-columns: 1fr
    }

    .contact-copy h2 {
        font-size: 42px !important
    }

    .contact-panel {
        padding: 34px 26px
    }

    .luxury-stats .stats-grid {
        grid-template-columns: 1fr 1fr !important
    }

        .luxury-stats .stats-grid div {
            border-bottom: 1px solid rgba(255,255,255,.14) !important
        }
}

@media(max-width:620px) {
    .tech-visual img {
        height: 280px
    }

    .luxury-stats .stats-grid {
        grid-template-columns: 1fr !important
    }

    .contact {
        padding: 64px 0 !important
    }

    .contact-copy h2 {
        font-size: 36px !important
    }
}

/* V10 responsive fixes - based on V9, no redesign */
@media (max-width: 1024px) {
    .container {
        width: min(92vw, 920px) !important
    }

    .nav.container {
        height: 78px !important;
        min-height: 78px !important;
        gap: 16px !important;
        width: 94vw !important
    }

    .brand {
        min-width: 0 !important;
        flex: 1 1 auto !important
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 14px
    }

    .brand strong {
        font-size: 17px !important
    }

    .brand small {
        font-size: 10px !important
    }

    .nav-toggle {
        display: grid !important;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,.22) !important;
        border-radius: 8px;
        color: #fff !important;
        background: rgba(255,255,255,.06) !important;
        font-size: 25px !important;
        z-index: 80
    }

    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 78px !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(180deg,#071832,#00205B) !important;
        padding: 18px 6vw 24px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        box-shadow: 0 24px 55px rgba(0,0,0,.25) !important
    }

        .nav-links.open {
            display: flex !important
        }

        .nav-links a, .nav-login {
            width: 100% !important;
            text-align: left !important;
            padding: 14px 12px !important;
            border-bottom: 1px solid rgba(255,255,255,.08) !important;
            font-size: 13px !important;
            white-space: normal !important
        }

        .nav-links .btn {
            width: 100% !important;
            text-align: center !important;
            margin-top: 10px !important;
            justify-content: center !important
        }

    .hero {
        min-height: 680px !important;
        padding: 0 !important
    }

    .hero-content {
        padding: 90px 0 70px !important
    }

    .hero-copy {
        font-size: 18px !important;
        max-width: 620px !important
    }

    .hero-actions .btn {
        min-width: 190px !important
    }

    .section {
        padding: 66px 0 !important
    }

    .two-col, .two-col.reverse, .tech-premium-layout, .contact-premium-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important
    }

    .copy-block {
        font-size: 16px !important
    }

    .services-grid {
        grid-template-columns: 1fr 1fr !important
    }

    .service-card {
        min-height: auto !important;
        border-bottom: 1px solid rgba(189,155,96,.18) !important
    }

    .services-foot {
        grid-template-columns: 1fr 1fr !important
    }

    .category-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important
    }

    .category-card {
        min-height: auto !important
    }

        .category-card img {
            height: 210px !important
        }

    .tech-copy h2 {
        font-size: clamp(36px,7vw,54px) !important;
        max-width: 720px !important
    }

    .tech-visual img {
        height: 360px !important
    }

    .tech-feature-grid {
        grid-template-columns: 1fr 1fr !important
    }

    .luxury-stats .stats-grid {
        grid-template-columns: 1fr 1fr !important
    }

        .luxury-stats .stats-grid div {
            padding: 24px !important;
            border-bottom: 1px solid rgba(255,255,255,.14) !important
        }

    .premium-band {
        grid-template-columns: 1fr !important
    }

        .premium-band .band-img {
            min-height: 340px !important
        }

    .band-content {
        padding: 44px 6vw !important
    }

    .contact-copy h2 {
        font-size: clamp(42px,8vw,62px) !important
    }

    .contact-benefits {
        grid-template-columns: 1fr 1fr !important
    }

    .contact-form-premium {
        grid-template-columns: 1fr !important
    }

    .product-dialog {
        width: 94vw !important;
        margin: 3vh auto !important;
        max-height: 94vh !important;
        overflow: auto !important;
        grid-template-columns: 1fr !important;
        background: #fffdf8 !important
    }

    .product-carousel {
        min-height: 420px !important;
        padding: 36px 24px 18px !important
    }

    .product-image-frame {
        height: 390px !important
    }

    .product-detail {
        padding: 34px 30px 42px !important
    }

        .product-detail h2 {
            font-size: clamp(34px,7vw,46px) !important
        }

    .modal-thumbs {
        position: static !important;
        margin: 10px auto 0 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important
    }
}

@media (max-width: 640px) {
    .container {
        width: 90vw !important
    }

    .site-header {
        position: sticky !important
    }

    .nav.container {
        width: 92vw !important;
        height: 74px !important;
        min-height: 74px !important
    }

    .nav-links {
        top: 74px !important
    }

    .brand {
        gap: 10px !important
    }

    .brand-mark {
        width: 38px !important;
        height: 38px !important
    }

    .brand strong {
        font-size: 15px !important;
        letter-spacing: .05em !important
    }

    .brand small {
        font-size: 9px !important;
        letter-spacing: .14em !important
    }

    h1 {
        font-size: clamp(38px,12vw,54px) !important;
        line-height: 1.02 !important
    }

    h2 {
        font-size: clamp(30px,10vw,42px) !important
    }

    .hero {
        min-height: 720px !important
    }

    .hero-overlay {
        background: linear-gradient(180deg,rgba(0,32,91,.94),rgba(0,32,91,.72),rgba(0,0,0,.28)) !important
    }

    .hero-copy {
        font-size: 16px !important
    }

    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important
    }

        .hero-actions .btn {
            width: 100% !important;
            min-width: 0 !important
        }

    .section {
        padding: 54px 0 !important
    }

    .section-head.centered {
        text-align: left !important;
        margin-bottom: 26px !important
    }

    .section-copy {
        font-size: 15px !important
    }

    .services-grid, .services-foot, .category-grid, .tech-feature-grid, .luxury-stats .stats-grid, .contact-benefits, .gallery-strip {
        grid-template-columns: 1fr !important
    }

    .services-head h2 {
        font-size: 34px !important
    }

    .service-card {
        padding: 54px 24px 28px !important;
        border-right: 0 !important
    }

    .services-foot span {
        border-right: 0 !important
    }

    .category-card img {
        height: 210px !important
    }

    .category-card .cat-content {
        padding: 22px !important
    }

    .category-card h3 {
        font-size: 22px !important
    }

    .category-card:after {
        top: 12px !important;
        right: 12px !important;
        font-size: 11px !important
    }

    .image-stack {
        grid-template-columns: 1fr !important
    }

        .image-stack img, .tech-visual img {
            height: 260px !important
        }

    .tech-feature-grid article {
        grid-template-columns: 56px 1fr !important;
        padding: 20px !important
    }

    .tech-feature-grid span {
        width: 46px !important;
        height: 46px !important;
        font-size: 20px !important
    }

    .luxury-stats {
        padding: 24px 0 42px !important
    }

        .luxury-stats .stats-grid div {
            border-right: 0 !important;
            text-align: left !important
        }

        .luxury-stats strong {
            font-size: 44px !important
        }

    .premium-band .band-img {
        min-height: 260px !important
    }

    .band-content {
        padding: 36px 5vw !important
    }

    .contact {
        padding: 56px 0 !important
    }

        .contact:before {
            background-size: cover !important;
            opacity: .10 !important
        }

    .contact-copy h2 {
        font-size: 38px !important;
        line-height: 1.02 !important
    }

    .contact-copy > p {
        font-size: 16px !important
    }

    .contact-panel {
        padding: 28px 22px !important;
        text-align: left !important
    }

    .avatar-icon {
        margin: 0 0 18px !important;
        width: 64px !important;
        height: 64px !important;
        font-size: 36px !important
    }

    .contact-lines a, .contact-lines > span {
        font-size: 14px !important;
        align-items: flex-start !important
    }

    .contact-form-premium {
        padding: 24px !important
    }

    .contact-badges {
        justify-content: flex-start !important
    }

    .product-dialog {
        width: 96vw !important;
        margin: 2vh auto !important;
        border-radius: 0 !important
    }

    .product-carousel {
        min-height: auto !important;
        padding: 46px 18px 16px !important
    }

    .product-image-frame {
        height: 300px !important
    }

    .product-detail {
        padding: 28px 20px 34px !important
    }

        .product-detail p {
            font-size: 16px !important
        }

    .detail-actions {
        display: grid !important;
        grid-template-columns: 1fr !important
    }

        .detail-actions .btn {
            width: 100% !important
        }

    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 26px !important;
        background: rgba(189,155,96,.95) !important
    }

        .carousel-btn.left {
            left: 10px !important
        }

        .carousel-btn.right {
            right: 10px !important
        }

    .thumb {
        width: 58px !important;
        height: 48px !important
    }

    .modal-close {
        right: 10px !important;
        top: 8px !important;
        font-size: 30px !important
    }

    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        right: 16px !important;
        bottom: 16px !important
    }

        .whatsapp-float svg {
            width: 30px !important;
            height: 30px !important
        }

    .footer-grid {
        flex-direction: column !important;
        text-align: center !important
    }
}

/* V11 Corporate luxury refresh + active menu indicator */
:root {
    --midnight: #020b1e;
    --midnight2: #061735;
    --line-gold: rgba(210,170,94,.35);
    --glass: rgba(255,255,255,.075)
}

body {
    background: #f7f2e8;
    color: #243047
}

.site-header {
    background: linear-gradient(180deg,rgba(2,11,30,.98),rgba(4,20,51,.96)) !important;
    border-bottom: 1px solid var(--line-gold);
    box-shadow: 0 18px 50px rgba(0,0,0,.25) !important
}

.nav.container {
    height: 78px !important;
    min-height: 78px !important
}

.brand-mark {
    border-color: var(--line-gold) !important;
    background: radial-gradient(circle at 50% 38%,rgba(210,170,94,.28),rgba(2,11,30,.2));
    box-shadow: inset 0 0 0 6px rgba(255,255,255,.025)
}

.brand strong {
    color: #f8e9c7;
    font-family: 'Playfair Display',Georgia,serif;
    font-size: 20px !important;
    letter-spacing: .06em
}

.brand small {
    color: #d4aa5e !important
}

.nav-links a, .nav-login {
    position: relative;
    color: rgba(255,255,255,.82) !important;
    padding: 12px 2px !important;
    transition: color .2s ease,transform .2s ease
}

    .nav-links a:hover, .nav-login:hover {
        color: #f0c66f !important;
        transform: translateY(-1px)
    }

    .nav-links a.is-active {
        color: #f0c66f !important
    }

        .nav-links a.is-active:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg,transparent,#d4aa5e,transparent);
            transform: translateX(-50%);
            box-shadow: 0 0 14px rgba(212,170,94,.65)
        }

.nav-links .btn {
    border: 1px solid var(--line-gold) !important;
    background: transparent !important;
    color: #f6d48c !important;
    border-radius: 2px !important
}

    .nav-links .btn:hover {
        background: #d4aa5e !important;
        color: #061735 !important
    }

.nav-links a[href="#productos"] {
    color: rgba(255,255,255,.82) !important
}

    .nav-links a[href="#productos"].is-active {
        color: #f0c66f !important
    }

.hero {
    min-height: 700px !important;
    background: #020b1e
}

.hero-bg {
    background-position: center right !important;
    filter: saturate(.9) contrast(1.08) brightness(.92)
}

.hero-overlay {
    background: linear-gradient(90deg,#020b1e 0%,rgba(2,13,35,.96) 34%,rgba(2,13,35,.72) 62%,rgba(2,13,35,.35) 100%) !important
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(212,170,94,.12),transparent 22%,transparent 70%,rgba(212,170,94,.08)),radial-gradient(circle at 73% 40%,rgba(212,170,94,.28),transparent 31%);
    pointer-events: none
}

.hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--line-gold),transparent)
}

.hero-content {
    padding-top: 34px
}

.eyebrow {
    letter-spacing: .22em !important
}

.hero h1 {
    text-transform: uppercase;
    font-size: clamp(44px,5.8vw,86px) !important;
    max-width: 760px;
    text-shadow: 0 12px 40px rgba(0,0,0,.38)
}

    .hero h1::first-line {
        color: #fff
    }

.hero-copy {
    max-width: 585px !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 18px !important
}

.btn {
    border-radius: 2px !important
}

.btn-gold {
    background: linear-gradient(135deg,#c99a42,#f0c66f,#a8782e) !important;
    color: #061735 !important;
    box-shadow: 0 14px 32px rgba(196,148,61,.22)
}

.btn-outline, .btn-ghost {
    border-color: var(--line-gold) !important;
    color: #f8e9c7 !important;
    background: rgba(255,255,255,.025) !important
}

.section {
    position: relative
}

.intro, .technology, .products {
    background: linear-gradient(180deg,#fffaf1 0%,#f3ebdc 100%) !important
}

    .intro:before, .services:before, .products:before, .technology:before {
        content: "";
        position: absolute;
        left: 4vw;
        right: 4vw;
        top: 0;
        height: 1px;
        background: linear-gradient(90deg,transparent,rgba(189,155,96,.35),transparent)
    }

    .section-head h2, .intro h2, .tech-copy h2 {
        color: #071832 !important
    }

.copy-block, .section-copy, .tech-intro {
    color: #53514c !important
}

.services {
    background: linear-gradient(180deg,#061735 0%,#020b1e 100%) !important;
    color: #fff !important
}

    .services .section-head h2 {
        color: #fff !important
    }

    .services .eyebrow.dark {
        color: #d4aa5e !important
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.service-card {
    background: linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
    border: 1px solid rgba(212,170,94,.22);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
    border-radius: 2px;
    padding: 30px !important
}

.service-number {
    color: #d4aa5e !important
}

.service-icon {
    border-color: var(--line-gold) !important;
    color: #d4aa5e !important
}

.service-card h3 {
    color: #fff !important
}

.service-card p {
    color: rgba(255,255,255,.7) !important
}

.services-foot {
    border: 1px solid rgba(212,170,94,.22) !important;
    background: rgba(255,255,255,.05) !important;
    color: #f5dfad !important
}

.category-grid {
    gap: 18px !important
}

.category-card {
    background: #071832 !important;
    border: 1px solid rgba(212,170,94,.22) !important;
    border-radius: 2px !important;
    box-shadow: 0 24px 70px rgba(7,24,50,.16) !important;
    min-height: 390px !important
}

    .category-card img {
        height: 225px !important;
        filter: saturate(.88) contrast(1.08);
        transition: transform .35s ease,filter .35s ease !important
    }

    .category-card:hover img {
        transform: scale(1.035) !important;
        filter: saturate(1.04) contrast(1.08) !important
    }

    .category-card .cat-content {
        background: linear-gradient(180deg,#071832,#020b1e) !important;
        border-top: 1px solid rgba(212,170,94,.22)
    }

    .category-card h3 {
        color: #f8e9c7 !important;
        font-family: 'Playfair Display',Georgia,serif
    }

    .category-card p {
        color: rgba(255,255,255,.68) !important
    }

    .category-card em {
        color: #d4aa5e !important;
        letter-spacing: .09em;
        text-transform: uppercase
    }

    .category-card.is-selected {
        outline: 2px solid #d4aa5e;
        box-shadow: 0 0 0 6px rgba(212,170,94,.14),0 26px 78px rgba(7,24,50,.24) !important
    }

.luxury-stats .stats-grid {
    background: linear-gradient(90deg,#020b1e,#061735 50%,#020b1e) !important;
    border: 1px solid rgba(212,170,94,.25) !important;
    border-radius: 0 !important
}

.luxury-stats small {
    color: #d4aa5e !important
}

.luxury-stats strong {
    font-family: 'Playfair Display',Georgia,serif !important;
    color: #fff8df !important
}

.premium-band {
    background: #f7f2e8 !important;
    color: #071832 !important;
    border-top: 1px solid rgba(189,155,96,.18);
    border-bottom: 1px solid rgba(189,155,96,.18)
}

    .premium-band .band-img {
        min-height: 520px;
        filter: saturate(.9) contrast(1.08)
    }

.band-content {
    background: linear-gradient(180deg,#fffaf1,#ede2cf) !important;
    border-left: 1px solid rgba(189,155,96,.25)
}

    .band-content h2 {
        font-size: clamp(34px,4vw,60px) !important
    }

.contact {
    background: linear-gradient(135deg,#020b1e,#061735 58%,#020b1e) !important;
    border-top: 1px solid rgba(212,170,94,.22)
}

.contact-panel, .contact-form-premium {
    border: 1px solid rgba(212,170,94,.25) !important;
    box-shadow: 0 28px 90px rgba(0,0,0,.28) !important
}

    .contact-form-premium input, .contact-form-premium select, .contact-form-premium textarea {
        border-color: #e1d3bd !important;
        background: #fffaf1 !important
    }

.footer {
    background: #020b1e !important;
    border-top: 1px solid rgba(212,170,94,.2) !important
}

@media(max-width:1180px) {
    .services-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:920px) {
    .nav-links a.is-active:after {
        left: 12px;
        right: auto;
        transform: none;
        width: 34px;
        bottom: 8px
    }

    .nav-links a, .nav-login {
        padding: 14px 12px !important
    }

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

    .hero h1 {
        font-size: clamp(38px,10vw,64px) !important
    }
}

/* V12 Services section upgrade */
.services {
    overflow: hidden
}

    .services:after {
        content: "";
        position: absolute;
        right: -140px;
        top: 80px;
        width: 420px;
        height: 420px;
        border: 1px solid rgba(212,170,94,.12);
        border-radius: 50%;
        background: radial-gradient(circle,rgba(212,170,94,.10),transparent 62%);
        pointer-events: none
    }

.services-layout {
    display: grid;
    grid-template-columns: minmax(280px,370px) 1fr;
    gap: 28px;
    align-items: stretch
}

.services-intro-panel {
    position: relative;
    z-index: 1;
    padding: 42px 36px;
    border: 1px solid rgba(212,170,94,.28);
    background: linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.035));
    box-shadow: 0 30px 80px rgba(0,0,0,.24)
}

    .services-intro-panel:before {
        content: "";
        position: absolute;
        inset: 14px;
        border: 1px solid rgba(212,170,94,.12);
        pointer-events: none
    }

    .services-intro-panel h2 {
        margin: 14px 0 18px;
        color: #fff8df !important;
        font-family: 'Playfair Display',Georgia,serif;
        font-size: clamp(34px,3.6vw,54px);
        line-height: 1.02
    }

    .services-intro-panel p {
        color: rgba(255,255,255,.72);
        line-height: 1.75;
        margin: 0 0 28px
    }

.premium-services-grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 18px !important
}

.premium-service-card {
    text-align: left !important;
    min-height: 285px !important;
    padding: 34px 30px 28px !important;
    overflow: hidden;
    transition: transform .25s ease,border-color .25s ease,background .25s ease
}

    .premium-service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(240,198,111,.58) !important;
        background: linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.045))
    }

    .premium-service-card .service-number {
        left: auto !important;
        right: 26px !important;
        top: 24px !important;
        transform: none !important;
        background: rgba(212,170,94,.12) !important;
        border: 1px solid rgba(212,170,94,.34) !important;
        color: #f0c66f !important
    }

    .premium-service-card .service-icon {
        width: 64px !important;
        height: 64px !important;
        margin: 0 0 22px !important;
        border-radius: 0 !important;
        font-size: 32px !important;
        background: rgba(212,170,94,.08)
    }

    .premium-service-card h3 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
        font-family: 'Playfair Display',Georgia,serif
    }

    .premium-service-card p {
        font-size: 14px !important;
        line-height: 1.65 !important
    }

    .premium-service-card ul {
        list-style: none;
        margin: 20px 0 0;
        padding: 16px 0 0;
        border-top: 1px solid rgba(212,170,94,.16);
        display: grid;
        gap: 8px
    }

    .premium-service-card li {
        position: relative;
        padding-left: 18px;
        color: #f5dfad;
        font-size: 12px;
        letter-spacing: .04em;
        text-transform: uppercase
    }

        .premium-service-card li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 7px;
            height: 7px;
            border: 1px solid #d4aa5e;
            transform: rotate(45deg)
        }

.service-process {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    border: 1px solid rgba(212,170,94,.22);
    background: rgba(255,255,255,.055);
    box-shadow: 0 18px 54px rgba(0,0,0,.18)
}

    .service-process span {
        position: relative;
        padding: 18px 16px;
        text-align: center;
        color: rgba(255,255,255,.76);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .055em;
        border-right: 1px solid rgba(212,170,94,.16)
    }

        .service-process span:last-child {
            border-right: 0
        }

    .service-process strong {
        display: block;
        color: #d4aa5e;
        font-size: 15px;
        margin-bottom: 5px;
        font-family: 'Playfair Display',Georgia,serif
    }

@media(max-width:1180px) {
    .services-layout {
        grid-template-columns: 1fr
    }

    .premium-services-grid {
        grid-template-columns: repeat(2,1fr) !important
    }

    .service-process {
        grid-template-columns: repeat(5,1fr)
    }
}

@media(max-width:760px) {
    .premium-services-grid {
        grid-template-columns: 1fr !important
    }

    .services-intro-panel {
        padding: 34px 26px
    }

    .service-process {
        grid-template-columns: 1fr
    }

        .service-process span {
            border-right: 0;
            border-bottom: 1px solid rgba(212,170,94,.16)
        }

            .service-process span:last-child {
                border-bottom: 0
            }

    .premium-service-card {
        min-height: auto !important
    }
}


/* ===== PREMIUM GOLD HOVER ===== */
button,
.btn,
.nav-link,
.menu-item,
a.button,
a.btn {
    transition: all 0.35s ease !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    button:hover,
    .btn:hover,
    .nav-link:hover,
    .menu-item:hover,
    a.button:hover,
    a.btn:hover {
        transform: translateY(-4px) scale(1.04) !important;
        background: linear-gradient(135deg,#c9a227,#f4d03f) !important;
        color: #111 !important;
        box-shadow: 0 12px 28px rgba(201,162,39,0.45), 0 0 14px rgba(244,208,63,0.35) !important;
    }

    /* Active menu indicator */
    .active,
    .nav-link.active,
    .menu-item.active {
        background: linear-gradient(135deg,#c9a227,#f4d03f) !important;
        color: #111 !important;
        border-radius: 12px;
        padding: 10px 16px;
    }

/* Fix visual contrast for Servicios cards */
.services .premium-service-card {
    background: linear-gradient(145deg,#fffaf1 0%,#f3eadb 100%) !important;
    border: 1px solid rgba(212,170,94,.48) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.services .premium-service-card:hover {
    background: linear-gradient(145deg,#ffffff 0%,#f7eddc 100%) !important;
    border-color: rgba(240,198,111,.72) !important;
}

.services .premium-service-card h3 {
    color: #071832 !important;
}

.services .premium-service-card p {
    color: #4f4a40 !important;
}

.services .premium-service-card li {
    color: #7a5f2d !important;
}

.services .premium-service-card .service-icon {
    background: rgba(212,170,94,.14) !important;
    border-color: rgba(189,155,96,.55) !important;
    color: #9f7430 !important;
}

.services .premium-service-card .service-number {
    background: #071832 !important;
    border-color: rgba(212,170,94,.48) !important;
    color: #f0c66f !important;
}


/* Politica de Privacidad */
.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links p {
    margin: 0;
}

.footer a,
.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 800;
}

.footer a:hover,
.footer-links a:hover {
    color: #d5b46e;
}

.privacy-consent {
    margin: -2px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.5;
}

.privacy-consent a {
    color: var(--gold);
    font-weight: 800;
    text-decoration: none;
}

.privacy-consent a:hover {
    color: #d5b46e;
}

.privacy-page {
    background: #fbf8f1;
}

.privacy-hero {
    background: radial-gradient(circle at 20% 20%,rgba(189,155,96,.22),transparent 32%), linear-gradient(135deg,#020b1e,#061735 60%,#020b1e);
    color: white;
    padding: 92px 0 78px;
    border-bottom: 1px solid rgba(212,170,94,.28);
}

.privacy-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
}

.privacy-hero h1 {
    font-size: clamp(44px,6vw,82px);
    max-width: 900px;
}

.privacy-hero p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.privacy-content-section {
    padding-top: 72px;
    padding-bottom: 86px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px minmax(0,1fr);
    gap: 34px;
    align-items: start;
}

.privacy-index {
    position: sticky;
    top: 112px;
    background: #fffdf8;
    border: 1px solid rgba(0,32,91,.09);
    box-shadow: 0 18px 50px rgba(0,32,91,.08);
    padding: 24px;
    border-radius: 10px;
}

.privacy-index strong {
    display: block;
    color: var(--navy);
    margin-bottom: 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.privacy-index a {
    display: block;
    color: #40516e;
    text-decoration: none;
    padding: 10px 0;
    border-top: 1px solid rgba(0,32,91,.08);
    font-size: 14px;
    font-weight: 700;
}

.privacy-index a:hover {
    color: var(--gold2);
}

.privacy-content {
    display: grid;
    gap: 22px;
}

.privacy-card {
    background: #fffdf8;
    border: 1px solid rgba(0,32,91,.08);
    box-shadow: 0 20px 60px rgba(0,32,91,.08);
    border-radius: 12px;
    padding: clamp(28px,4vw,48px);
    scroll-margin-top: 120px;
}

.privacy-card h1,
.privacy-card h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.privacy-card h1 {
    font-size: clamp(34px,4vw,58px);
}

.privacy-card h2 {
    font-size: clamp(28px,3vw,44px);
}

.privacy-card p {
    color: #384257;
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.75;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-item {
    padding-left: 18px;
    border-left: 3px solid rgba(189,155,96,.35);
}

.privacy-item strong {
    color: var(--gold2);
}

@media(max-width:920px) {
    .privacy-hero-grid,
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-index {
        position: relative;
        top: auto;
    }

    .privacy-hero {
        padding: 70px 0 60px;
    }
}

@media(max-width:620px) {
    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .privacy-card {
        padding: 24px;
    }
}
