﻿/* =========================================
   VARIABLES
========================================= */
:root {
    --brown: #42322C;
    --brown-dark: #2B201D;
    --brown-d: #2B201D;
    --gold: #C9A14A;
    --gold-l: #e8d4a8;
    --gold-light: #e0ba6f;
    --off-white: #F5F1F0;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --ink: #111;
    --muted: #777;
    --bg: #F5F1F0;
    --card-bg: #F5F1F0;
    --bg-light: #F5F1F0;
    --text-mid: #444444;
    --border: rgba(0,0,0,0.08);
}

body {
    background: #EDE8E6;
    font-family: 'DM Sans', sans-serif;
}

/* =========================================
   HERO — slider full-bleed con fade izq→der
========================================= */
.hero-pro {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--off-white);
    display: flex;
    align-items: center;
}

.hero-slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-fade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, var(--off-white) 0%, var(--off-white) 28%, rgba(245,241,240,0.90) 44%, rgba(245,241,240,0.50) 60%, rgba(245,241,240,0.08) 78%, transparent 100% );
    z-index: 1;
    pointer-events: none;
}

/* Botones slider — rectOS, sombra offset */
.hero-slider-bg .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    font-size: 14px;
    border: none;
    background: rgba(245,241,240,0.88);
    color: var(--brown-dark);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
    box-shadow: 3px 3px 0 rgba(66,50,44,0.15);
}

    .hero-slider-bg .slider-btn:hover {
        background: #fff;
    }

.hero-slider-bg .prev {
    left: 20px;
}

.hero-slider-bg .next {
    right: 20px;
}

.hero-content-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

/* Texto */
.hero-text {
    max-width: 560px;
    padding: 40px 32px;
}

.hero-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hero-subtitle::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 1px;
        background: var(--gold);
        opacity: 0.6;
    }

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 420px;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.hero-logo {
    width: 110px;
    height: auto;
    flex-shrink: 0;
}

/* Botón — recto, sombra offset */
.hero-btn {
    display: inline-block;
    background: var(--brown);
    color: #fff !important;
    text-decoration: none;
    padding: 15px 38px;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: background .2s, box-shadow .2s, transform .2s;
    box-shadow: 5px 5px 0 rgba(66,50,44,0.25);
}

    .hero-btn:hover {
        background: var(--brown-dark);
        box-shadow: 7px 7px 0 rgba(66,50,44,0.18);
        transform: translate(-2px,-2px);
        color: #fff !important;
    }

/* =========================================
   STATS
========================================= */
.stats-section {
    background: var(--brown-dark);
    padding: 56px 0;
    position: relative;
    clip-path: polygon(0 10px, 70px 0, 100% 0, 100% 100%, 0 100%);
}

.stat-box {
    padding: 14px 28px;
    position: relative;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.stat-box + .stat-box {
    border-left: 1px solid rgba(255,255,255,0.10);
}

/* =========================================
   SERVICIOS
========================================= */
.services-section {
    background: var(--bg);
    padding: 110px 0 100px;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.eyebrow-rule {
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.services-mini-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.services-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--brown-d);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

    .services-main-title em {
        font-style: italic;
        font-weight: 300;
    }

/* Grid — gap mínimo, efecto mosaico */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(66,50,44,0.08);
}

/* Card — sin border-radius */
.service-card {
    background: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
    transition: background .22s;
    cursor: pointer;
    text-decoration: none;
}

    .service-card:hover {
        background: #fff;
    }

    .service-card,
    .service-card:hover,
    .service-card:focus,
    .service-card:active {
        text-decoration: none !important;
    }

.service-image-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f4f2;
}

    .service-image-box::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 30%, rgba(43,32,29,0.6) 100%);
        opacity: 0;
        transition: opacity .3s ease;
    }

.service-card:hover .service-image-box::after {
    opacity: 1;
}

.service-img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
    filter: grayscale(15%) brightness(93%) contrast(105%);
}

.service-img-fiscal {
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.service-card:hover .service-img {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(100%) contrast(108%);
}

.service-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    z-index: 2;
    line-height: 1;
    transition: color .25s;
}

.service-card:hover .service-num {
    color: var(--gold-l);
}

.service-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    border-top: 2px solid transparent;
    transition: border-color .22s;
}

.service-card:hover .service-body {
    border-top-color: var(--gold);
}

.service-tag {
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--brown-d);
    line-height: 1.3;
    margin: 0 0 auto;
    transition: color .22s;
}

.service-card:hover .service-title {
    color: var(--brown);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .22s, gap .22s;
}

.service-card:hover .service-link {
    color: var(--brown-d);
    gap: 10px;
}

.service-link svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .25s;
}

.service-card:hover .service-link svg {
    transform: translateX(3px);
}

/* =========================================
   HERO CONTACTO
========================================= */
.contact-hero {
    height: 380px;
    background: url('/img/justicia.png');
    background-attachment: fixed;
    position: relative;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,12,10,0.88) 0%, rgba(66,50,44,0.70) 100%);
    display: flex;
    align-items: center;
}

.contact-hero-content {
    text-align: center;
}

.contact-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.eyebrow-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.contact-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

    .contact-hero-title em {
        font-style: italic;
        color: var(--gold-l);
    }

.contact-hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

/* =========================================
   SECCIÓN CONTACTO
========================================= */
.contact-section {
    padding: 90px 0 80px;
    background: var(--bg-light);
}

/* Card — recto, acento superior dorado */
.contact-form-card {
    background: #fff;
    border-radius: 0;
    padding: 44px 40px;
    box-shadow: 6px 6px 0 rgba(66,50,44,0.08);
    border: 1px solid rgba(66,50,44,0.08);
    border-top: 3px solid var(--gold);
}

.contact-form-header {
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(66,50,44,0.08);
}

.form-eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 300;
    color: var(--brown-d);
    line-height: 1.15;
    margin: 0;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

    .contact-field:last-of-type {
        margin-bottom: 26px;
    }

    .contact-field label {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--text-dark);
        text-transform: uppercase;
    }

.required {
    color: var(--brown-d);
    margin-left: 2px;
}

.optional {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

/* Input — énfasis en borde inferior */
.contact-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #C8BAB6;
    border-radius: 0;
    border-bottom: 2px solid #C8BAB6;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-bottom-color .2s, background .2s;
    outline: none;
    appearance: none;
}

    .contact-input::placeholder {
        color: #C0AFA9;
    }

    .contact-input:focus {
        border-bottom-color: var(--gold);
        background: #fff;
    }

.select-wrapper {
    position: relative;
}

    .select-wrapper .contact-input {
        cursor: pointer;
        padding-right: 36px;
    }

.select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

    .select-chevron svg {
        width: 15px;
        height: 15px;
    }

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Botón contacto — recto, sombra offset */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brown);
    color: #fff;
    padding: 13px 30px;
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 4px 4px 0 rgba(66,50,44,0.25);
    transition: background .2s, box-shadow .2s, transform .2s;
}

    .btn-contact svg {
        width: 14px;
        height: 14px;
        stroke: #fff;
        transition: transform .25s;
    }

    .btn-contact:hover {
        background: var(--brown-d);
        box-shadow: 6px 6px 0 rgba(66,50,44,0.18);
        transform: translate(-2px,-2px);
    }

        .btn-contact:hover svg {
            transform: translateX(4px);
        }

    .btn-contact:active {
        transform: translate(1px,1px);
        box-shadow: 2px 2px 0 rgba(66,50,44,0.25);
    }

    .btn-contact:focus, .btn-contact:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 2px;
        box-shadow: none !important;
    }

/* Panel info */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tarjeta firma */
.contact-firm-card {
    background: var(--brown-d);
    border-radius: 0;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

    .contact-firm-card::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 180px;
        height: 180px;
        background: rgba(201,161,74,0.06);
        transform: rotate(45deg);
        pointer-events: none;
    }

.firm-card-accent {
    display: none;
}

.firm-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

    .firm-name span {
        color: var(--gold-l);
        display: block;
    }

.firm-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.58);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

    .firm-location svg {
        width: 12px;
        height: 12px;
        stroke: var(--gold);
        flex-shrink: 0;
    }

.firm-tagline {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    opacity: 0.72;
}

.contact-data-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-data-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: #fff;
    border-radius: 0;
    border: 1px solid rgba(66,50,44,0.08);
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: border-left-color .18s, box-shadow .18s, transform .18s;
}

    .contact-data-item:hover {
        border-left-color: var(--gold);
        box-shadow: 3px 0 0 rgba(201,161,74,0.1);
        transform: translateX(3px);
    }

.contact-data-icon {
    width: 34px;
    height: 34px;
    border-radius: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brown-d);
    transition: background .18s;
}

.contact-data-item:hover .contact-data-icon {
    background: rgba(66,50,44,0.08);
}

.contact-data-icon svg {
    width: 15px;
    height: 15px;
}

.contact-data-icon--wa {
    color: #25D366;
    background: rgba(37,211,102,0.08);
}

.contact-data-item:hover .contact-data-icon--wa {
    background: rgba(37,211,102,0.14);
}

.contact-data-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-data-value {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 0;
    border: 1px solid rgba(66,50,44,0.08);
}

.socials-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.socials-icons {
    display: flex;
    gap: 5px;
    margin-left: auto;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 1px solid rgba(66,50,44,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-d);
    text-decoration: none;
    transition: background .18s, color .18s;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 88% 100%, 0 100%);
}

    .social-icon svg {
        width: 12px;
        height: 12px;
    }

    .social-icon:hover {
        background: var(--brown-d);
        color: #fff;
    }

/* =========================================
   MAPA
========================================= */
.contact-map-section {
    background: var(--bg-light);
    padding: 0 0 90px;
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-bottom: 28px;
}

.map-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-map {
    overflow: hidden;
    border-radius: 0;
    background: #fafafa;
    border: 1px solid rgba(66,50,44,0.08);
    box-shadow: 6px 6px 0 rgba(66,50,44,0.06);
    padding: 6px;
    transition: box-shadow .25s;
}

    .contact-map:hover {
        box-shadow: 8px 8px 0 rgba(66,50,44,0.10);
    }

/* =========================================
   FADE-UP
========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================================
   PUBLICACIONES RECIENTES
========================================= */
.pubs-section {
    background: var(--brown-d);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 14px, 90px 0, 100% 0, 100% 100%, 0 100%);
}

    .pubs-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(-55deg, transparent, transparent 50px, rgba(201,161,74,0.02) 50px, rgba(201,161,74,0.02) 51px);
        pointer-events: none;
    }

    .pubs-section::after {
        display: none;
    }

.pubs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pubs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pubs-mini-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

.pubs-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

    .pubs-main-title em {
        font-style: italic;
        color: var(--gold-l);
    }

.pubs-ver-todas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding-bottom: 4px;
    transition: color .2s, gap .2s;
}

    .pubs-ver-todas svg {
        width: 12px;
        height: 12px;
        transition: transform .25s;
    }

    .pubs-ver-todas:hover {
        color: var(--gold);
        gap: 12px;
    }

        .pubs-ver-todas:hover svg {
            transform: translateX(3px);
        }

/* Grid — gap mínimo, mosaico */
.pubs-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

/* Card pubs — sin border-radius */
.pub-card {
    background: var(--brown-d);
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background .22s;
}

    .pub-card:hover {
        background: #1e1512;
    }

.pub-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.pub-card--featured .pub-card-img-wrap {
    height: 260px;
}

.pub-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(25%) brightness(0.65);
    transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

.pub-card:hover .pub-card-img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.75);
}

.pub-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(43,32,29,0.7) 100%);
    pointer-events: none;
}

/* Badge — recto */
.pub-card-categoria {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--brown-d);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 0;
    z-index: 2;
}

.pub-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.pub-card-fecha {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.pub-card-titulo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.08rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.35;
    margin: 0;
    flex: 1;
    transition: color .2s;
}

.pub-card--featured .pub-card-titulo {
    font-size: 1.3rem;
}

.pub-card:hover .pub-card-titulo {
    color: var(--gold-l);
}

.pub-card-extracto {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
    margin: 0;
}

.pub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: gap .2s, color .2s;
}

    .pub-card-link svg {
        width: 11px;
        height: 11px;
        transition: transform .25s;
    }

    .pub-card-link:hover {
        color: var(--gold-l);
        gap: 10px;
    }

        .pub-card-link:hover svg {
            transform: translateX(3px);
        }

/* =========================================
   MODAL — DETALLE DE SERVICIO
========================================= */
.service-card,
.service-card * {
    pointer-events: auto;
}

/* Fondo oscurecido */
.service-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43,32,29,0.68);
    /* Quitar blur para evitar lag */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, visibility 0s linear .16s;
    z-index: 1040;
}

    .service-panel-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity .16s ease, visibility 0s linear 0s;
    }

/* Ventana centrada */
.service-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(900px, 92vw);
    max-height: 92vh;
    background: var(--off-white);
    z-index: 1050;
    transform: translate3d(-50%, calc(-50% + 12px), 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .18s ease-out, opacity .15s ease, visibility 0s linear .18s;
    box-shadow: 8px 8px 0 rgba(43,32,29,0.2), 0 24px 48px rgba(43,32,29,0.24);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

    .service-panel.active {
        transform: translate3d(-50%, -50%, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform .18s ease-out, opacity .15s ease, visibility 0s linear 0s;
    }

/* Encabezado */
.service-panel-header {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    background: var(--brown-d);
    padding: 32px 40px 28px;
}

    .service-panel-header::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 180px;
        height: 180px;
        background: rgba(201,161,74,0.06);
        transform: rotate(45deg);
        pointer-events: none;
    }

    .service-panel-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 40px;
        width: 40px;
        height: 2px;
        background: var(--gold);
        opacity: .7;
    }

.service-panel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.65);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background .18s, color .18s, transform .25s;
}

    .service-panel-close:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--brown-d);
        transform: rotate(90deg);
    }

.service-panel-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    opacity: .85;
}

.service-panel-title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding-right: 60px;
    color: #fff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.02em;
}

/* Contenido: crece según el texto y solo usa scroll vertical si supera la pantalla */
.service-panel-content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px 40px 36px;
}

.service-panel-divider {
    width: 32px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--gold);
    opacity: .65;
}

.service-panel-text {
    margin: 0 0 22px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

/* Lista estable: dos columnas en escritorio, una en móvil */
.service-panel-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin: 0 0 28px;
}

    .service-panel-list[style*="display: none"] {
        display: none !important;
    }

    .service-panel-list span {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
        background: #5A3E2B; /* Café */
        color: #fff; /* Letra blanca */

        border-left: 3px solid var(--gold);
        border-radius: 0;
        font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
        font-size: 1rem;
        line-height: 1.65;
        font-weight: 500;
        transition: .25s ease;
    }

        .service-panel-list span:hover {
            box-shadow: 4px 0 0 rgba(201,161,74,.15);
        }

        .service-panel-list span::before {
            content: "✓";
            flex: 0 0 auto;
            margin-top: 1px;
            color: var(--gold);
            font-size: .8rem;
            font-weight: 800;
        }

.service-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--brown);
    color: #fff !important;
    text-decoration: none;
    border-radius: 0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 rgba(66,50,44,.25);
    transition: transform .2s, box-shadow .2s, background .2s;
}

    .service-panel-btn::after {
        content: '→';
        font-size: .9rem;
        transition: transform .2s;
    }

    .service-panel-btn:hover {
        background: var(--brown-d);
        color: #fff !important;
        transform: translate(-2px,-2px);
        box-shadow: 6px 6px 0 rgba(66,50,44,.18);
    }

        .service-panel-btn:hover::after {
            transform: translateX(4px);
        }

@media (max-width: 767.98px) {
    .service-panel {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .service-panel-header {
        padding: 26px 22px 22px;
    }

        .service-panel-header::after {
            left: 22px;
        }

    .service-panel-title {
        padding-right: 42px;
        font-size: clamp(1.65rem, 8vw, 2.2rem);
    }

    .service-panel-content {
        padding: 24px 22px 30px;
    }

    .service-panel-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .service-panel {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
    }

    .service-panel-header {
        padding: 24px 18px 20px;
    }

        .service-panel-header::after {
            left: 18px;
        }

    .service-panel-content {
        padding: 22px 18px 26px;
    }

    .service-panel-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   DESPACHO Y SOCIOS
========================================= */
.firm-section {
    background: var(--bg);
    padding: 100px 0 30px;
    position: relative;
}

.firm-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 42px;
    align-items: stretch;
}

/* Contenido firma — recto, acento dorado interior */
.firm-content {
    background: #fff;
    border: 1px solid rgba(66,50,44,0.10);
    border-radius: 0;
    border-top: 3px solid var(--gold);
    padding: 48px 46px;
    box-shadow: 6px 6px 0 rgba(66,50,44,0.07);
    position: relative;
    overflow: hidden;
}

    /* Marco interior dorado — se mantiene */
    .firm-content::before {
        content: "";
        position: absolute;
        inset: 12px;
        border: 1px solid rgba(201,161,74,0.22);
        pointer-events: none;
    }

.firm-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 300;
    color: var(--brown-d);
    line-height: 1.08;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

    .firm-title em {
        font-style: italic;
        color: var(--brown);
    }

.firm-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Partners card — recto */
.partners-card {
    background: var(--brown-d);
    border-radius: 0;
    padding: 46px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0 rgba(43,32,29,0.3);
}

    .partners-card::before {
        content: "";
        position: absolute;
        inset: 12px;
        border: 1px solid rgba(201,161,74,0.28);
        pointer-events: none;
    }

.partners-card-accent {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 210px;
    height: 210px;
    background: rgba(201,161,74,0.07);
    transform: rotate(45deg); /* rombo */
    border-radius: 0;
}

.partners-label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.partner-item {
    position: relative;
    z-index: 1;
}

.partner-role {
    display: block;
    font-size: .75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
    margin-bottom: 8px;
}

.partner-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.partner-item p {
    font-size: .88rem;
    color: rgba(255,255,255,.58);
    line-height: 1.7;
    margin: 0;
}

.partner-divider {
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 28px 0;
}

/* =========================================
   VIDEO / SOCIAL CARDS
========================================= */
.pub-card-video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.pub-video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.pub-video-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: var(--gold);
    color: var(--brown-d);
    padding: 5px 10px;
    border-radius: 0; /* recto */
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 3;
}

.pub-social-video-card {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    background: radial-gradient(circle at top right, rgba(201,161,74,.14), transparent 35%), linear-gradient(135deg, rgba(66,50,44,.92), rgba(43,32,29,.98));
}

    .pub-social-video-card::before {
        content: "";
        position: absolute;
        inset: 12px;
        border: 1px solid rgba(201,161,74,.22);
    }

.pub-social-video-icon {
    width: 70px;
    height: 70px;
    border-radius: 0; /* cuadrado */
    border: 1px solid rgba(201,161,74,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
    z-index: 2;
}

/* =========================================
   FEEDBACK CONTACTO
========================================= */
.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(34,197,94,0.07);
    border-left: 3px solid #22c55e;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.contact-success-icon {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: rgba(34,197,94,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #16a34a;
}

    .contact-success-icon svg {
        width: 16px;
        height: 16px;
    }

.contact-success-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #15803d;
    margin: 0 0 4px;
}

.contact-success-sub {
    font-size: 0.8rem;
    color: #166534;
    margin: 0;
    line-height: 1.5;
}

.contact-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(66,50,44,0.05);
    border-left: 3px solid var(--brown);
    padding: 11px 15px;
    font-size: 0.8rem;
    color: var(--brown);
    margin-bottom: 18px;
}

    .contact-error svg {
        width: 14px;
        height: 14px;
        stroke: var(--brown);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        flex-shrink: 0;
    }

.field-error {
    font-size: 0.7rem;
    color: var(--brown);
    margin-top: 3px;
    display: block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .contact-form-card {
        padding: 28px 22px;
    }

    .contact-info-panel {
        margin-top: 8px;
    }

    .hero-pro {
        min-height: 480px;
    }

    .hero-content-layer {
        padding: 48px 0;
    }

    .hero-fade-overlay {
        background: linear-gradient(to right, var(--off-white) 0%, var(--off-white) 55%, rgba(245,241,240,0.80) 72%, rgba(245,241,240,0.20) 88%, transparent 100%);
    }

    .hero-text {
        padding: 28px 20px;
        text-align: center;
        max-width: 100%;
    }

    .hero-description {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--gold);
        padding-top: 14px;
        margin: 0 auto 28px;
    }

    .hero-subtitle::before {
        display: none;
    }

    .stat-box + .stat-box {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .services-section {
        padding: 64px 0;
    }

    .pubs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pub-card--featured {
        grid-column: 1 / -1;
    }

    .pubs-section {
        padding: 72px 0;
        clip-path: none;
    }

    .stats-section {
        clip-path: none;
    }

    .firm-grid {
        grid-template-columns: 1fr;
    }

    .firm-section {
        padding: 72px 0 20px;
    }

    .firm-content, .partners-card {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image-box {
        height: 130px;
    }

    .services-section {
        padding: 60px 0;
    }

    .contact-hero {
        height: 280px;
    }

    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section {
        padding: 56px 0;
    }

    .contact-map-section {
        padding-bottom: 56px;
    }
}

@media (max-width: 575.98px) {
    .pubs-grid {
        grid-template-columns: 1fr;
    }

    .pubs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .contact-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .hero-fade-overlay {
        background: linear-gradient(to bottom, rgba(245,241,240,0.96) 0%, rgba(245,241,240,0.96) 60%, rgba(245,241,240,0.60) 100%);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {

    .service-panel-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICIOS — LISTA SIMPLE
========================================= */

.services-simple-section {
    padding: 110px 0;
    background: #f4f1ef;
}

.services-simple-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* Encabezado */
.services-simple-header {
    max-width: 780px;
    margin: 0 auto 65px;
    text-align: center;
}

.services-simple-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 18px;
}

    .services-simple-eyebrow span {
        width: 42px;
        height: 1px;
        background: #b68a3f;
    }

    .services-simple-eyebrow p {
        margin: 0;
        color: #9a732f;
        font-family: "Century Gothic", CenturyGothic, Arial, sans-serif;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

.services-simple-header h2 {
    margin: 0;
    color: #30231f;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.05;
}

    .services-simple-header h2 em {
        display: block;
        color: #9a732f;
        font-weight: 500;
    }

/* Lista */
.services-simple-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 70px;
    border-top: 1px solid rgba(48, 35, 31, .18);
}

.services-simple-column {
    min-width: 0;
}

.services-simple-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 88px;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(48, 35, 31, .18);
    transition: padding-left .22s ease, background-color .22s ease;
}

    .services-simple-item:hover {
        padding-left: 16px;
        background: rgba(182, 138, 63, .06);
    }

    .services-simple-item > span {
        color: #b68a3f;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .services-simple-item h3 {
        margin: 0;
        color: #30231f;
        font-size: clamp(.95rem, 1.4vw, 1.12rem);
        font-weight: 500;
        line-height: 1.45;
    }

/* Botón */
.services-simple-footer {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.services-simple-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 190px;
    padding: 16px 24px;
    background: #3b2a23;
    color: #fff;
    font-family: "Century Gothic", CenturyGothic, Arial, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #3b2a23;
    transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

    .services-simple-button svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .22s ease;
    }

    .services-simple-button:hover {
        background: transparent;
        color: #3b2a23;
        transform: translateY(-2px);
    }

        .services-simple-button:hover svg {
            transform: translateX(4px);
        }

/* Responsive */
@media (max-width: 768px) {
    .services-simple-section {
        padding: 80px 0;
    }

    .services-simple-container {
        width: min(100% - 32px, 1180px);
    }

    .services-simple-header {
        margin-bottom: 45px;
    }

    .services-simple-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .services-simple-column:first-child
    .services-simple-item:last-child {
        border-bottom: 1px solid rgba(48, 35, 31, .18);
    }

    .services-simple-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        min-height: 68px;
        padding: 15px 4px;
    }

        .services-simple-item:hover {
            padding-left: 8px;
        }

    .services-simple-footer {
        margin-top: 42px;
    }

    .services-simple-button {
        width: 100%;
    }
}

.services-simple-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #b68a3f;
    padding: 6px;
    box-shadow: 0 3px 10px rgba(48, 35, 31, .08);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

    .services-simple-icon img {
        display: block;
        width: 56px;
        height: 56px;
        object-fit: contain;
        object-position: center;
        mix-blend-mode: multiply;
        transition: transform .22s ease;
    }

.services-simple-item:hover .services-simple-icon {
    border-color: #5a3e2b;
    box-shadow: 0 6px 18px rgba(48, 35, 31, .16);
    transform: translateY(-2px);
}

.services-simple-item:hover .services-simple-icon img {
    transform: scale(1.07);
}

@media (max-width: 768px) {

    .services-simple-item {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 14px;
        min-height: 82px;
        padding: 12px 4px;
    }

    .services-simple-icon {
        width: 56px;
        height: 56px;
        padding: 5px;
    }

        .services-simple-icon img {
            width: 46px;
            height: 46px;
        }
}

/* =========================================
   HERO PRINCIPAL — CORRECCIÓN MÓVIL
========================================= */

@media (max-width: 767.98px) {

    .hero-pro {
        position: relative;
        width: 100%;
        min-height: 680px;
        height: auto;
        display: flex;
        align-items: center;
        padding: 0;
        overflow: hidden;
    }

    /* Slider de fondo */
    .hero-slider-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 680px;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /*
       En móvil usamos una capa oscura uniforme.
       Así el texto siempre será legible.
    */
    .hero-fade-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient( 180deg, rgba(34, 24, 20, .60) 0%, rgba(34, 24, 20, .78) 45%, rgba(34, 24, 20, .92) 100% );
        pointer-events: none;
    }

    /* Capa del contenido */
    .hero-content-layer {
        position: relative;
        z-index: 5;
        width: 100%;
        min-height: 680px;
        display: flex;
        align-items: center;
        padding: 110px 22px 75px !important;
    }

        .hero-content-layer .row {
            width: 100%;
            min-height: auto !important;
            display: block;
            margin: 0 !important;
        }

        /*
       La columna del texto ocupa todo el ancho.
    */
        .hero-content-layer .col-md-6:first-child {
            width: 100%;
            max-width: 100%;
            display: block !important;
            padding: 0;
        }

        /*
       Oculta la columna vacía de escritorio.
       Esta era una de las causas del espacio extraño.
    */
        .hero-content-layer .col-md-6:last-child {
            display: none !important;
        }

    /* Contenedor del texto */
    .hero-text {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding: 0;
        color: #ffffff;
        text-align: center;
    }

    /* Logo y título */
    .hero-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-bottom: 22px;
    }

    .hero-logo {
        display: block;
        width: 88px;
        height: 88px;
        margin: 0 auto;
        object-fit: contain;
        background: rgba(255, 255, 255, .95);
        border: 1px solid rgba(201, 161, 74, .7);
        padding: 7px;
    }

    .hero-subtitle {
        margin: 0 0 10px;
        color: #d2aa59;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-align: center;
        text-transform: uppercase;
    }

    .hero-title {
        margin: 0;
        color: #ffffff;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(2.8rem, 13vw, 4.2rem);
        font-weight: 600;
        line-height: .9;
        letter-spacing: -.5px;
        text-align: center;
    }

    .hero-description {
        max-width: 460px;
        margin: 24px auto 30px;
        color: rgba(255, 255, 255, .86);
        font-size: .9rem;
        line-height: 1.75;
        text-align: center;
    }

    .hero-btn {
        position: relative;
        z-index: 10;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 190px;
        min-height: 52px;
        padding: 15px 25px;
        background: #c9a14a;
        border: 1px solid #c9a14a;
        color: #2f211d;
        text-decoration: none;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        pointer-events: auto;
        touch-action: manipulation;
    }

        .hero-btn:hover,
        .hero-btn:focus,
        .hero-btn:active {
            background: #ffffff;
            border-color: #ffffff;
            color: #30231f;
            text-decoration: none;
        }

    /* Flechas del slider */
    .hero-pro .slider-btn {
        position: absolute;
        top: 50%;
        z-index: 8;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: rgba(48, 35, 31, .72);
        border: 1px solid rgba(201, 161, 74, .7);
        color: #ffffff;
        transform: translateY(-50%);
    }

        .hero-pro .slider-btn.prev {
            left: 10px;
        }

        .hero-pro .slider-btn.next {
            right: 10px;
        }
}

/* =========================================
   ICONOS DE REDES EN PUBLICACIONES
========================================= */

.pub-social-video-card,
.pub-social-video-card:visited {
    color: #ffffff;
    text-decoration: none;
}

.pub-social-video-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(201, 161, 74, .65);
    background: rgba(255, 255, 255, .02);
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

/* Instagram */
.pub-instagram-icon {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    transition: stroke .22s ease, transform .22s ease;
}

/* Facebook */
.pub-facebook-icon {
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

/* Otros videos */
.pub-play-icon {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    pointer-events: none;
}

/* Hover general */
.pub-social-video-card:hover,
.pub-social-video-card:focus,
.pub-social-video-card:active {
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

    .pub-social-video-card:hover .pub-social-video-icon,
    .pub-social-video-card:focus .pub-social-video-icon {
        color: #ffffff;
        background: rgba(201, 161, 74, .1);
        border-color: #c9a14a;
        transform: translateY(-2px);
    }

    .pub-social-video-card:hover .pub-instagram-icon,
    .pub-social-video-card:focus .pub-instagram-icon {
        stroke: #ffffff;
        transform: scale(1.06);
    }

    .pub-social-video-card:hover .pub-facebook-icon,
    .pub-social-video-card:focus .pub-facebook-icon,
    .pub-social-video-card:hover .pub-play-icon,
    .pub-social-video-card:focus .pub-play-icon {
        color: #ffffff;
    }

/* Evita el azul del navegador */
.pub-social-video-card svg,
.pub-social-video-card span {
    text-decoration: none;
}

.pub-social-video-card:focus-visible {
    outline: 2px solid #c9a14a;
    outline-offset: 4px;
}

.pub-video-badge {
    color: #30231f;
    text-decoration: none;
}

.pub-social-video-card:hover .pub-video-badge,
.pub-social-video-card:focus .pub-video-badge {
    color: #30231f;
    text-decoration: none;
}