/* VARIABLES DE DISEÑO INSTITUCIONAL */
:root {
    --color-verde-encina: #14271d;  /* Verde dehesa profundo */
    --color-verde-ribera: #2d523e;  /* Verde medio de galería */
    --color-tierra: #8c6d53;        /* Tono arcilla/tierra */
    --color-piedra: #575f5a;        /* Granito/Piedra seca */
    --color-blanco-roto: #fcfbfa;    /* Fondo de lectura limpio */
    --color-dorado-suave: #c39e5c;   /* Oro sutil de miel */
    --color-charcoal: #242926;       /* Texto oscuro de alta legibilidad */
    
    --shadow-soft: 0 4px 20px -2px rgba(20, 39, 29, 0.05);
    --shadow-medium: 0 10px 30px -5px rgba(20, 39, 29, 0.08);
}

/* ESTILOS GENERALES Y RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-blanco-roto);
    color: var(--color-charcoal);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* ESTRUCTURAS DE CUADRÍCULA (RESPONSIVE GRID) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-1 { grid-template-cols: 1fr; }
.grid-2 { grid-template-cols: 1fr; }
.grid-3 { grid-template-cols: 1fr; }
.grid-4 { grid-template-cols: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-cols: repeat(2, 1fr); }
    .grid-3 { grid-template-cols: repeat(2, 1fr); }
    .grid-4 { grid-template-cols: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-cols: repeat(3, 1fr); }
    .grid-4 { grid-template-cols: repeat(4, 1fr); }
}

.items-center { align-items: center; }
.gap-large { gap: 60px; }
.gap-medium { gap: 40px; }
.text-center { text-align: center; }

/* CABECERA ESTILO GLASSMORPHISM (COMO LOVABLE) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 39, 29, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-b: 1px solid rgba(195, 158, 92, 0.2);
    color: white;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-verde-ribera);
    border: 1px solid rgba(195, 158, 92, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dorado-suave);
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-dorado-suave);
    font-weight: 600;
}

.main-navigation {
    display: flex;
    gap: 4px;
}

.nav-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-btn:hover, .nav-btn.active {
    color: white;
}

.nav-btn.active {
    border-bottom-color: var(--color-dorado-suave);
    color: var(--color-dorado-suave);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* NAVEGACIÓN MÓVIL DESPLEGABLE */
.mobile-navigation {
    display: none;
    background: var(--color-verde-encina);
    border-top: 1px solid rgba(195, 158, 92, 0.1);
    padding: 20px;
}

.mobile-navigation button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #94a3b8;
    padding: 10px 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mobile-navigation button:hover {
    color: white;
    background: var(--color-verde-ribera);
    border-radius: 6px;
}

.hidden { display: none; }

@media (max-width: 1024px) {
    .main-navigation { display: none; }
    .mobile-menu-toggle { display: block; }
}

/* SECCIONES SPA (TAB CONTROL) */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* HERO SECTION EDITORIAL */
.hero-section {
    position: relative;
    background-color: var(--color-verde-encina);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    padding: 100px 20px;
    background: linear-gradient(rgba(20, 39, 29, 0.85), rgba(20, 39, 29, 0.93));
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-dorado-suave);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 60px; }
}

.hero-highlight {
    color: var(--color-dorado-suave);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOTONES PREMIUM */
.btn {
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-verde-ribera);
    border: 1px solid rgba(195, 158, 92, 0.3);
    color: white;
}

.btn-primary:hover {
    background-color: #3b664e;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* SECCIÓN MÉTRICAS */
.metrics-section {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    padding: 40px 0;
    box-shadow: var(--shadow-soft);
}

.metrics-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-cols: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-cols: repeat(5, 1fr);
    }
}

.metric-card {
    text-align: center;
    padding: 10px;
}

.metric-card:not(:first-child) {
    border-left: 1px solid #f1f5f9;
}

@media (max-width: 767px) {
    .metric-card {
        border-left: none !important;
    }
}

.metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-verde-encina);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-piedra);
    font-weight: 600;
}

/* ENCABEZADOS EDITORIALES */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-verde-encina);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .editorial-title { font-size: 38px; }
}

.editorial-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-dorado-suave);
    margin: 20px auto;
}

.section-desc {
    font-size: 13px;
    color: var(--color-piedra);
    line-height: 1.6;
}

.section-tag {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-verde-ribera);
    font-weight: 700;
    margin-bottom: 10px;
}

/* TARJETAS DE INFORMACIÓN (GRID INICIO) */
.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.info-card-icon {
    font-size: 24px;
    color: var(--color-verde-ribera);
    margin-bottom: 24px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-verde-encina);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 12px;
    color: var(--color-piedra);
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-action {
    background: none;
    border: none;
    color: var(--color-verde-ribera);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.card-action:hover {
    color: var(--color-verde-encina);
}

.border-accent {
    border-left: 4px solid var(--color-dorado-suave);
}

/* TEXTO PÁRRAFOS EDITORIALES */
.paragraph-lead {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-verde-encina);
    margin-bottom: 20px;
    line-height: 1.6;
}

.paragraph {
    font-size: 13px;
    color: var(--color-piedra);
    margin-bottom: 15px;
    line-height: 1.65;
}

/* CUADROS DE ACENTO EDITORIAL */
.accent-box {
    background: var(--color-verde-encina);
    color: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(195, 158, 92, 0.2);
    box-shadow: var(--shadow-medium);
}

.accent-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dorado-suave);
    font-size: 22px;
    margin-bottom: 24px;
}

.step-list p {
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.step-list p strong {
    color: white;
    display: block;
}

/* CARTA FUNDACIONAL (ESTILO PERGAMINO ELEGANTE) */
.carta-fundacional-container {
    background: #FAF8F5;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    max-width: 800px;
    margin: 80px auto 0 auto;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.carta-header {
    background: var(--color-verde-encina);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(195, 158, 92, 0.25);
}

.carta-header span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-dorado-suave);
    display: block;
    margin-bottom: 8px;
}

.carta-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

.carta-body {
    padding: 40px md:80px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: #334155;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .carta-body { padding: 60px 80px; }
}

.carta-lead {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-verde-encina);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.carta-body p {
    margin-bottom: 24px;
}

.carta-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
}

.signature-title {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-verde-encina);
}

.signature-loc {
    font-size: 10px;
    color: var(--color-piedra);
    margin-top: 4px;
}

/* TARJETAS CONSERVACIÓN */
.conservation-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
}

.card-category {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dorado-suave);
    display: block;
    margin-bottom: 10px;
}

.conservation-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-verde-encina);
    margin-bottom: 12px;
}

.conservation-card p {
    font-size: 12px;
    color: var(--color-piedra);
    line-height: 1.6;
}

.alert-card {
    background-color: #FAF5F5;
    border-left: 4px solid #b91c1c;
}

.text-alert {
    color: #b91c1c;
}

.text-alert-title {
    color: #7f1d1d !important;
}

.text-alert-desc {
    color: #450a0a !important;
}

/* CONTROLES DE LA BASE DE DATOS DE BIODIVERSIDAD */
.db-controls {
    margin-bottom: 40px;
}

.search-input-container {
    max-width: 500px;
    margin: 0 auto 30px auto;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 15px;
    color: #94a3b8;
}

.search-input-container input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    background-color: white;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.search-input-container input:focus {
    outline: none;
    border-color: var(--color-verde-ribera);
    box-shadow: 0 0 0 3px rgba(45, 82, 62, 0.15);
}

.filter-pills-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-pill {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--color-piedra);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--color-verde-encina);
    color: white;
    border-color: var(--color-verde-encina);
}

/* FICHA CIENTÍFICA DE ESPECIE */
.species-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.species-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.sp-class {
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-tierra);
    display: block;
    margin-bottom: 2px;
}

.sp-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-verde-encina);
}

.sp-scientific {
    font-size: 11px;
    font-style: italic;
    color: var(--color-piedra);
    margin-bottom: 12px;
}

.sp-status {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
    margin-bottom: 12px;
}

.sp-desc {
    font-size: 11px;
    color: var(--color-piedra);
    line-height: 1.5;
}

/* COLORES ESTADO CONSERVACIÓN */
.status-lesrpe {
    background-color: rgba(45, 82, 62, 0.08);
    color: var(--color-verde-ribera);
    border-color: rgba(45, 82, 62, 0.15);
}

.status-vulnerable {
    background-color: rgba(195, 158, 92, 0.1);
    color: #926922;
    border-color: rgba(195, 158, 92, 0.25);
}

.status-danger {
    background-color: rgba(185, 28, 28, 0.08);
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.15);
}

.status-lc {
    background-color: rgba(87, 95, 90, 0.08);
    color: var(--color-piedra);
    border-color: rgba(87, 95, 90, 0.15);
}

.status-dd {
    background-color: rgba(100, 116, 139, 0.08);
    color: #475569;
    border-color: rgba(100, 116, 139, 0.15);
}

/* RECURSOS GENÉTICOS Y RAZAS */
.genetic-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.genetic-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dorado-suave);
    display: block;
    margin-bottom: 12px;
}

.genetic-label.danger {
    color: #b91c1c;
}

.border-tierra {
    border-top: 4px solid var(--color-tierra);
}

.genetic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-verde-encina);
    margin-bottom: 16px;
}

.genetic-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--color-piedra);
}

/* SECCIÓN MARCAS */
.brand-panel {
    background: white;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    padding: 40px;
}

@media (min-width: 1024px) {
    .brand-panel { padding: 60px; }
}

.bullet-list {
    margin-top: 24px;
    list-style: none;
}

.bullet-list li {
    font-size: 12px;
    color: var(--color-piedra);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.bullet-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--color-dorado-suave);
    font-size: 20px;
    line-height: 0.8;
}

.brand-flow-card {
    background: #FAF8F5;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.brand-flow-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--color-verde-encina);
    margin-bottom: 24px;
}

.flow-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-badge {
    width: 24px;
    height: 24px;
    background: var(--color-verde-ribera);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.flow-step p {
    font-size: 11px;
    color: var(--color-piedra);
    line-height: 1.5;
}

.flow-step p strong {
    color: var(--color-verde-encina);
    display: block;
}

/* TIMELINE ACTUACIONES */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: rgba(45, 82, 62, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 13px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-verde-ribera);
    border: 2px solid var(--color-blanco-roto);
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-verde-encina);
}

.timeline-date {
    display: block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dorado-suave);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 12px;
    color: var(--color-piedra);
    line-height: 1.6;
}

.heritage-panel {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 80px auto 0 auto;
}

.heritage-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--color-verde-encina);
    margin-bottom: 15px;
}

.heritage-panel p {
    font-size: 12px;
    color: var(--color-piedra);
    line-height: 1.65;
}

/* BITÁCORA DIARIO DE CAMPO */
.diary-post {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
}

.diary-date {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dorado-suave);
    margin-bottom: 15px;
}

.diary-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-verde-encina);
    margin-bottom: 15px;
}

/* TRANSPARENCIA */
.transparency-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.transparency-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--color-verde-encina);
    text-align: center;
}

.transparency-block {
    text-align: center;
    padding: 20px 10px;
}

.transparency-block .percent {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--color-verde-ribera);
    margin-bottom: 8px;
}

.transparency-block h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-verde-encina);
    margin-bottom: 12px;
}

.transparency-block p {
    font-size: 11px;
    color: var(--color-piedra);
    line-height: 1.5;
}

.transparency-box-secondary {
    background: var(--color-verde-encina);
    color: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(195, 158, 92, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.box-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dorado-suave);
    display: block;
    margin-bottom: 8px;
}

.transparency-box-secondary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.transparency-box-secondary p {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* PIE DE PÁGINA */
.site-footer {
    background-color: var(--color-verde-encina);
    border-top: 1px solid rgba(195, 158, 92, 0.2);
    color: #94a3b8;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--color-dorado-suave);
    font-weight: 600;
    margin-top: 10px;
}