/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.2.0
 Description:  Estilos optimizados con Variables CSS y Diseño Web Premium (Animaciones fluidas y Glassmorphism)
*/

/* ==========================================================================
   0. VARIABLES GLOBALES (Design System)
   ========================================================================== */
:root {
    /* Colores Principales */
    --color-bg-dark: #0b0f14;
    /* Negro Oxford */
    --color-bg-light: #f8f8f8;
    /* Gris muy claro (bloques) */
    --color-bg-white: #ffffff;
    /* Blanco puro */

    /* Acentos / Dorados */
    --color-accent: #c5a880;
    /* Oro viejo (claro) */
    --color-accent-dark: #8c735d;
    /* Oro viejo (oscuro) */
    --color-accent-bronze: #a67c52;
    /* Bronce / Dorado para fondo blanco */

    /* Textos */
    --color-text-light: #e5e2da;
    /* Texto sobre oscuros */
    --color-text-dark: #0b0f14;
    /* Títulos oscuros */
    --color-text-gray: #4a4a4a;
    /* Color texto general bloque claro */
    --color-text-gray-dark: #666666;
    /* Descripciones secundarias */

    /* Tipografía */
    --font-heading: ui-serif, Georgia, "Times New Roman", serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    /* Estilos globales */
    --radius-card: 12px;
    --radius-btn: 4px;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* 🌟 MEJORA 4: Sombra enriquecida 3D teñida de oro */
    --shadow-hover: 0 15px 40px rgba(197, 168, 128, 0.12);

    /* Espaciados */
    --section-padding: 120px 0;
    --container-max: 1240px;
    --container-width: 90%;
}

/* ==========================================================================
   1. RESET Y CONFIGURACIÓN GLOBAL
   ========================================================================== */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

.home .entry-content,
.home .site-content .ast-container,
.home .site-content,
.home #primary,
.home main#main,
.home .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ==========================================================================
   2. TIPOGRAFÍA Y KICKERS
   ========================================================================== */
.chl-hero h1,
.chl-card__title {
    color: var(--color-bg-white) !important;
    font-family: var(--font-heading) !important;
    letter-spacing: -0.01em;
    font-weight: 600;
}

/* 🌟 MEJORA 2: Títulos con Degradado Metálico en el Hero */
.chl-hero__title span {
    background: linear-gradient(135deg, #c5a880 0%, #f6e6cd 50%, #8c735d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.chl-services h2,
.chl-services h3,
.chl-method h2,
.chl-method h3,
.chl-faq h2,
.chl-faq h3,
.chl-panel__title,
.chl-profile h2,
.chl-profile h3,
.chl-profile__name {
    color: var(--color-text-dark) !important;
    font-family: var(--font-heading) !important;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.chl-hero__kicker,
.chl-card__eyebrow,
.chl-services__kicker,
.chl-method__kicker,
.chl-faq__kicker,
.chl-panel__tag,
.chl-profile__kicker,
.chl-service__num,
.chl-step__num,
.chl-areas__kicker,
.chl-contact__kicker {
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 10px;
}

.chl-hero__kicker,
.chl-card__eyebrow {
    color: var(--color-accent) !important;
    display: block;
}

.chl-services__kicker,
.chl-method__kicker,
.chl-faq__kicker,
.chl-profile__kicker {
    color: var(--color-accent-dark) !important;
    display: block;
}

.chl-areas__kicker,
.chl-contact__kicker {
    color: var(--color-accent-bronze) !important;
    display: block;
}

.chl-service__num,
.chl-step__num,
.chl-panel__tag {
    color: var(--color-accent-dark) !important;
    display: inline-block !important;
    margin-bottom: 15px;
}

/* ==========================================================================
   3. BOTONES Y FORMULARIOS
   ========================================================================== */
.chl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

/* 🌟 MEJORA 3: Resplandor animado (Shine Effect) en botón primario */
.chl-btn--primary {
    background: var(--color-accent);
    color: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.chl-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.chl-btn--primary:hover {
    background: var(--color-bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chl-btn--ghost {
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--color-accent);
    background: transparent;
}

.chl-btn--ghost:hover {
    border-color: var(--color-accent);
    background: rgba(197, 168, 128, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chl-btn__icon {
    font-size: 1.2em;
}

.chl-form {
    margin-top: 30px;
}

.chl-field {
    display: block;
    margin-bottom: 18px;
}

.chl-field__label {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--color-accent);
    font-weight: 600;
}

/* 🌟 MEJORA 1: Efecto Glassmorphism en Formularios Dark */
.chl-field__input,
.chl-field__textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-bg-white);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.chl-field__input:focus,
.chl-field__textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.15);
    outline: none;
}

.chl-field__input::placeholder,
.chl-field__textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chl-field__textarea {
    resize: vertical;
}

.chl-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.chl-form__legal {
    font-size: 12px;
    color: rgba(229, 226, 218, 0.5);
    margin-top: 20px;
    line-height: 1.4;
}

/* ==========================================================================
   4. ANIMACIONES GENERALES (Micro-animaciones)
   ========================================================================== */
/* 🌟 MEJORA 5: Entradas Flotantes para Tarjetas */
@keyframes fadeInUpSubtle {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chl-service,
.chl-area,
.chl-step,
.chl-qa {
    animation: fadeInUpSubtle 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chl-services__grid .chl-service:nth-child(2) {
    animation-delay: 0.15s;
}

.chl-services__grid .chl-service:nth-child(3) {
    animation-delay: 0.3s;
}

/* ==========================================================================
   5. BLOQUES ESTRUCTURALES
   ========================================================================== */

/* --- HERO DARK --- */
.chl-hero {
    position: relative;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    padding: 120px 0;
}

.chl-hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://cuevasholdinglegal.cl/wp-content/uploads/2026/02/Screenshot_20250907_180518-1.jpg') no-repeat right 10% center;
    background-size: contain;
    opacity: 0.8;
    z-index: 1;
}

.chl-hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 15, 20, 0.7);
    /* 🌟 MEJORA 6: Manchas orgánicas de oro fluyendo */
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(140, 115, 93, 0.05) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: flowMesh 15s ease infinite alternate;
    z-index: 2;
}

@keyframes flowMesh {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.chl-hero__wrap {
    position: relative;
    z-index: 3;
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(85vh - 240px);
}

.chl-hero__content {
    max-width: 680px;
    margin-right: auto;
    margin-left: 0;
}

.chl-hero__lead {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(229, 226, 218, 0.9);
    margin-bottom: 35px;
}

.chl-hero__bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.chl-hero__bullets li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(229, 226, 218, 0.7);
}

.chl-hero__bullets li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.chl-hero__cta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.chl-hero__note {
    font-size: 13px;
    color: rgba(229, 226, 218, 0.6);
    margin-top: 20px;
}

/* --- BLOQUES CLAROS COMPARTIDOS --- */
.chl-services,
.chl-method,
.chl-faq,
.chl-profile {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text-gray);
    position: relative;
}

.chl-services__wrap,
.chl-method__wrap,
.chl-faq__wrap,
.chl-profile__wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    width: var(--container-width);
    position: relative;
    z-index: 1;
}

.chl-services__head,
.chl-method__head,
.chl-faq__head,
.chl-profile__head {
    max-width: 75ch;
    margin: 0 auto 45px auto;
    text-align: center;
}

.chl-services__lead,
.chl-method__lead,
.chl-faq__lead,
.chl-profile__lead {
    color: var(--color-text-gray-dark);
    line-height: 1.8;
    font-size: 16px;
    max-width: 70ch;
    margin: 0 auto;
}

/* --- TARJETAS COMPARTIDAS (Servicios / Pasos) --- */
.chl-service,
.chl-step,
.chl-qa,
.chl-panel,
.chl-profile__card {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    background: var(--color-bg-white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

/* 🌟 MEJORA 7: Hover Enriquecido + Efecto Magnetic 3D */
.chl-service:hover,
.chl-step:hover,
.chl-qa[open] {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

.chl-services__grid,
.chl-method__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    perspective: 1000px;
}

.chl-service,
.chl-step {
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.chl-step {
    padding: 35px;
}

.chl-service__desc,
.chl-step__desc {
    color: var(--color-text-gray-dark);
    font-size: 14.5px;
    line-height: 1.7;
    flex-grow: 1;
}

.chl-service__desc {
    margin-bottom: 25px;
}

.chl-service__cta {
    color: var(--color-accent-dark) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.5);
    padding-bottom: 2px;
    display: inline-flex !important;
    align-self: flex-start;
}

.chl-service__cta:hover {
    border-color: var(--color-accent-dark);
    color: var(--color-text-dark);
}

.chl-method__steps {
    margin-bottom: 60px;
}

.chl-method__cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
}

.chl-faq__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: start;
}

.chl-qa {
    margin-bottom: 15px;
}

.chl-qa[open] {
    background: #fdfdfd;
}

.chl-qa__q {
    padding: 22px;
    cursor: pointer;
    color: var(--color-text-dark);
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
}

.chl-qa__q::-webkit-details-marker {
    display: none;
}

.chl-qa__a {
    padding: 0 22px 22px;
    color: var(--color-text-gray-dark);
    font-size: 15px;
    line-height: 1.8;
}

.chl-qa__icon {
    color: var(--color-accent-dark) !important;
    display: inline-flex !important;
}

.chl-panel {
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chl-panel__desc {
    color: var(--color-text-gray-dark);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.chl-profile__card {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.chl-profile__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 3px solid var(--color-accent-dark);
}

.chl-profile__position {
    font-size: 15px;
    color: var(--color-text-gray-dark);
    margin-bottom: 25px;
}

.chl-profile__desc {
    color: var(--color-text-gray-dark);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.chl-profile__notes {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.chl-profile__notes li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-gray-dark);
    font-size: 14.5px;
}

.chl-profile__notes li::before {
    color: var(--color-accent-dark) !important;
}

/* ==========================================================================
   6. ÁREAS DE PRÁCTICA (Blanco)
   ========================================================================== */
.chl-areas {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid #eeeeee;
}

.chl-areas__wrap {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
}

.chl-areas__head {
    max-width: 800px;
    margin-bottom: 60px;
}

.chl-areas__title {
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.1;
    margin-bottom: 15px !important;
    color: #000000 !important;
    font-family: var(--font-heading) !important;
}

.chl-areas__lead {
    color: #444444;
    font-size: 18px;
    line-height: 1.6;
}

.chl-areas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    perspective: 1000px;
}

.chl-area {
    padding: 40px;
    background: var(--color-bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

/* 🌟 Hover enriquecido para áreas (3D Magnetic) */
.chl-area:hover {
    border-color: var(--color-accent-bronze);
    background: #fcfaf8;
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

.chl-area__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.chl-area__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-bronze);
    border-radius: 50%;
}

.chl-area__title {
    font-size: 22px !important;
    margin: 0 !important;
    color: #1a1a1a !important;
    font-family: var(--font-heading) !important;
}

.chl-area__desc {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================================================
   7. CONTACTO (Blanco)
   ========================================================================== */
.chl-contact {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-bg-white);
    overflow: hidden;
    border-top: 1px solid #eeeeee;
}

.chl-contact__wrap {
    position: relative;
    z-index: 3;
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.chl-contact__title {
    font-size: clamp(32px, 4vw, 48px) !important;
    line-height: 1.1;
    color: #000000 !important;
    font-family: var(--font-heading) !important;
    margin-bottom: 25px !important;
}

.chl-contact__lead {
    font-size: 18px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 35px;
}

.chl-card--contact {
    background: var(--color-bg-white);
    padding: clamp(20px, 5%, 50px);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.chl-card--contact .chl-form__row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.chl-card--contact .chl-field {
    flex: 1 1 200px;
    min-width: 0;
}

/* 🌟 MEJORA 1 adaptada: Inputs de contacto con animaciones elegantes */
.chl-card--contact .chl-field__input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 10px !important;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.02);
    font-size: 14px !important;
    color: #1a1a1a;
    transition: all 0.3s ease;
    display: block;
}

.chl-card--contact .chl-field__input:focus {
    border-color: var(--color-accent-bronze);
    background: var(--color-bg-white);
    box-shadow: 0 0 15px rgba(166, 124, 82, 0.15);
    /* Resplandor bronce */
    outline: none;
}

select.chl-field__input {
    padding-right: 25px !important;
    cursor: pointer;
}

.chl-card--contact .chl-field__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.chl-btn--submit {
    width: 100%;
    background: #1a1a1a;
    color: var(--color-bg-white);
    padding: 16px;
    margin-top: 10px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: var(--radius-btn);
}

.chl-btn--submit:hover {
    background: var(--color-accent-bronze);
}

.chl-card--contact .chl-form__legal {
    font-size: 11px;
    color: #999999;
    margin-top: 15px;
    text-align: center;
    line-height: 1.4;
}

/* ==========================================================================
   8. SECCIÓN APUNTES (Premium Cards)
   ========================================================================== */
.chl-papers-container {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.chl-papers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.nz-paper-item {
    background: var(--color-bg-white, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

/* 🌟 Efecto Hover 3D Magnetic para Apuntes */
.nz-paper-item:hover {
    border-color: var(--color-accent-bronze, #a67c52);
    box-shadow: 0 20px 40px rgba(166, 124, 82, 0.15);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

.nz-paper-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent, #c5a880) 0%, var(--color-accent-dark, #8c735d) 100%);
    transition: height 0.4s ease;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.nz-paper-item:hover::before {
    height: 100%;
}

.nz-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-dark, #8c735d);
    background: rgba(197, 168, 128, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.nz-paper-title {
    font-family: var(--font-heading, serif) !important;
    font-size: 24px !important;
    line-height: 1.3;
    color: #1a1a1a !important;
    margin: 0 0 10px 0 !important;
    font-weight: 600;
}

.nz-paper-autor {
    font-size: 13px;
    color: #888888;
    margin: 0 0 20px 0;
    font-style: italic;
}

.nz-paper-body {
    flex-grow: 1;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nz-paper-actions {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.nz-btn-link {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* 🌟 Botón "Leer Online" */
.view-link {
    color: var(--color-accent-dark, #8c735d);
    background: rgba(166, 124, 82, 0.05);
    border: 1px solid rgba(166, 124, 82, 0.2);
}

.view-link:hover {
    background: var(--color-accent-dark, #8c735d);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(140, 115, 93, 0.2);
}

/* 🌟 Botón "Descargar" (Primario) */
.download-link {
    color: #ffffff;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.download-link:hover {
    background: var(--color-accent-bronze, #a67c52);
    border-color: var(--color-accent-bronze, #a67c52);
    box-shadow: 0 8px 20px rgba(166, 124, 82, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   9. RESPONSIVE DESIGN (Móvil y Tablets)
   ========================================================================== */
@media (max-width: 980px) {
    .chl-hero {
        text-align: center;
        min-height: auto;
        padding: 80px 0;
    }

    .chl-hero__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }

    .chl-hero__bg {
        background-position: center bottom;
        background-size: cover;
        opacity: 0.2;
    }

    .chl-hero__overlay {
        background: linear-gradient(180deg, rgba(11, 15, 22, 0.8) 0%, rgba(11, 15, 22, 1) 100%);
    }

    .chl-hero__content {
        max-width: 100%;
        margin: 0 auto;
    }

    .chl-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .chl-services__grid,
    .chl-method__steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chl-services,
    .chl-method,
    .chl-faq,
    .chl-profile,
    .chl-areas,
    .chl-contact {
        padding: 80px 0;
    }

    .chl-faq__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chl-panel {
        position: relative;
        top: 0;
    }

    .chl-method__cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 30px;
    }

    .chl-profile__card {
        padding: 30px;
        margin-top: 20px;
    }

    .chl-contact__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chl-card--contact .chl-form__row {
        gap: 10px;
    }

    .chl-areas__grid {
        grid-template-columns: 1fr;
    }
}