/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #333;
}

/* HEADER - HERO MEJORADO */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23000" opacity=".1"/></svg>');
    background-repeat: repeat-x;
    animation: wave 15s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(1200px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(199, 154, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-header {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    color: #c79a4a;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-top {
    max-width: 220px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    animation: slideDown 0.8s ease-out;
}

@media (max-width: 768px) {
    .hero {
        min-height: 220px;
        padding: 35px 20px;
    }
    
    .logo-header {
        max-height: 150px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .logo-header {
        max-height: 120px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* CONTENEDOR */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

@media (max-width: 600px) {
    .container {
        padding: 0 12px;
        margin: 30px auto;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 8px;
        margin: 20px auto;
    }
}

/* SECCIÓN INTRODUCCIÓN MEJORADA */
.introduccion {
    padding: 50px 40px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #c79a4a;
}

.introduccion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-left {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.titulo-introduccion {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #c79a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.texto-introduccion {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    text-align: justify;
}

.intro-right {
    background: linear-gradient(135deg, #c79a4a 0%, #d4a574 100%);
    min-height: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(199, 154, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.presentado {
    font-size: 0.9rem;
    color: #999;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .introduccion {
        padding: 40px 30px;
        margin-bottom: 40px;
    }
    
    .introduccion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .titulo-introduccion {
        font-size: 1.9rem;
    }
    
    .intro-right {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .introduccion {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .titulo-introduccion {
        font-size: 1.6rem;
    }
    
    .texto-introduccion {
        font-size: 1rem;
        text-align: left;
    }
    
    .intro-right {
        min-height: 180px;
    }
}

/* SECCIÓN HOMBRES DESTACADOS MEJORADA */
.hombres-destacados {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.titulo-destacados {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.titulo-destacados::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c79a4a, transparent);
    margin: 20px auto 0;
}

.revista-visor {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 0 auto 40px;
}

.revista-iframe {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Revistas / flipbook iframe */
.pdf-flip {
    text-align: center;
}

.pdf-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
}

.pdf-controls button {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-controls button:hover {
    background: linear-gradient(135deg, #c79a4a, #d4a574);
}

.pdf-controls #pageInfo {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.pdf-canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

/* Flip animation */
.pdf-canvas {
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.pdf-canvas.flip-out {
    transform: perspective(900px) rotateY(-90deg) scale(0.98);
    opacity: 0.0;
}

.pdf-canvas.flip-in {
    transform: perspective(900px) rotateY(0deg) scale(1);
    opacity: 1;
}

/* Sección de título */
.seccion-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 40px;
    padding-left: 0;
    position: relative;
}

.seccion-titulo::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #c79a4a;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hombres-destacados {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .titulo-destacados {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .revista-iframe {
        height: 440px;
    }
    
    .seccion-titulo {
        font-size: 1.6rem;
        margin-top: 35px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .titulo-destacados {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .revista-iframe {
        height: 360px;
    }
    
    .seccion-titulo {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 20px;
    }
}

/* GALERÍA Y GRID */
.galeria,
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* GALERÍA GRUPOS */
.galeria-grupos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* RESPONSIVE GALERÍA */
@media (max-width: 1200px) {
    .galeria,
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .galeria-grupos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .galeria,
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .galeria-grupos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .galeria,
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .galeria-grupos {
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }
}

@media (max-width: 380px) {
    .galeria,
    .grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    
    .galeria-grupos {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

/* TARJETA MEJORADA */
.perfil,
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
}

.perfil::before,
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c79a4a, #d4a574);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.perfil:hover::before,
.card:hover::before {
    transform: scaleX(1);
}

.perfil:hover,
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(199, 154, 74, 0.25);
}

.perfil img,
.card img {
    width: 100%;
    /* reduce image height slightly so text area gets more room when descriptions are short */
    max-height: 420px;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0;
    transition: transform 0.4s ease;
    background: #ffffff;
}

.perfil:hover img,
.card:hover img {
    transform: scale(1.05);
}

/* TARJETA GRUPOS */
.grupo {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.grupo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c79a4a, #d4a574);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.grupo:hover::before {
    transform: scaleX(1);
}

.grupo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(199, 154, 74, 0.25);
}

.grupo img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.4s ease;
}

.grupo:hover img {
    transform: scale(1.05);
}

/* NOMBRE */
.perfil h3,
.card h3,
.grupo h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    /* tighten vertical spacing to reduce empty gaps */
    padding: 8px 8px 6px 8px;
    margin: 0;
    color: #1a1a1a;
}

@media (max-width: 600px) {
    .perfil h3,
    .card h3,
    .grupo h3 {
        font-size: 1rem;
        padding: 8px 6px 4px 6px;
    }
}

@media (max-width: 380px) {
    .perfil h3,
    .card h3,
    .grupo h3 {
        font-size: 0.9rem;
        padding: 6px 4px 3px 4px;
    }
}

/* ACTIVIDAD EN TARJETA */
.actividad-card {
    font-size: 0.85rem;
    color: #c79a4a;
    /* reduce bottom padding to avoid large whitespace */
    padding: 0 8px 6px 8px;
    margin: 0;
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
}

/* DESCRIPCIÓN GRUPOS */
.descripcion-grupo {
    font-size: 0.8rem;
    color: #888;
    padding: 0 8px 10px 8px;
    margin: 0;
    font-style: italic;
    line-height: 1.3;
}

/* DESCRIPCIÓN PERFILES */
.descripcion-perfil {
    font-size: 0.75rem;
    color: #999;
    /* keep compact padding; allow description block to size naturally */
    padding: 0 8px 8px 8px;
    margin: 0;
    font-style: italic;
    line-height: 1.2;
}

/* Make card contents flow vertically so short descriptions don't leave awkward gaps */
.perfil {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* push short text blocks toward the bottom to avoid visual gaps */
    height: 100%;
}

.perfil > h3, .perfil > .actividad-card, .perfil > .descripcion-perfil {
    /* ensure text blocks take only needed space */
    flex: 0 0 auto;
}

.perfil > img {
    /* allow image to shrink if needed while keeping width */
    flex: 0 0 auto;
}

.perfil .card-footer {
    margin-top: auto; /* any footer elements will stick to bottom */
}

/* SECCIÓN HOMBRES DESTACADOS */
.hombres-destacados {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.titulo-destacados {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.titulo-destacados::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c79a4a, transparent);
    margin: 20px auto 0;
}

/* Eliminado: estilos de "destacados" y "perfil-destacado" no usados.
   Si en el futuro se requiere una sección de destacados, recrear las reglas
   o reutilizar las clases existentes `.perfil` y `.galeria`.
*/

/* MODAL MEJORADO */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    width: 95%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: slideIn 0.3s ease;
    margin: 0;
    border: none;
    overflow: hidden;
}

@keyframes slideIn {
    from { 
        transform: scale(0.95);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.cerrar {
    color: #999;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(199, 154, 74, 0.1);
    margin: -5px -5px 0 0;
}

.cerrar:hover {
    color: #c79a4a;
    background: rgba(199, 154, 74, 0.2);
}

#modal img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 0;
    margin: 0 0 20px 0;
    animation: zoomIn 0.4s ease;
    display: block;
    box-shadow: none;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#modal h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.actividad {
    font-size: 1rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.actividad strong {
    color: #c79a4a;
    font-weight: 600;
}

.enlace {
    margin-top: 20px;
    text-align: center;
}

.enlace a,
.btn-perfil {
    display: inline-block;
    background: linear-gradient(135deg, #c79a4a, #d4a574);
    color: #fff;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(199, 154, 74, 0.3);
}

.enlace a:hover,
.btn-perfil:hover {
    background: linear-gradient(135deg, #d4a574, #c79a4a);
    box-shadow: 0 8px 25px rgba(199, 154, 74, 0.4);
    transform: translateY(-2px);
}

/* RESPONSIVE MODAL */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 25px;
        margin: 50% auto;
    }

    #modal h2 {
        font-size: 1.4rem;
    }

    .cerrar {
        font-size: 24px;
    }
}

/* RESPONSIVE EXTRA */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .card img {
        height: 180px;
    }
}

/* FOOTER MEJORADO */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #aaa;
    padding: 60px 20px 35px;
    margin-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid rgba(199, 154, 74, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

/* LOGO SECTION */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, rgba(199, 154, 74, 0.1), rgba(199, 154, 74, 0.05));
    border: 2px solid rgba(199, 154, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #999;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: #c79a4a;
    background: linear-gradient(135deg, rgba(199, 154, 74, 0.15), rgba(199, 154, 74, 0.08));
}

.logo-placeholder img.footer-logo-img {
    max-width: 95%;
    max-height: 100px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo-placeholder {
        width: 160px;
        height: 90px;
    }
    .logo-placeholder img.footer-logo-img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        width: 140px;
        height: 80px;
    }
    .logo-placeholder img.footer-logo-img {
        max-height: 70px;
    }
}

/* FOOTER SECTIONS */
.footer-contacto h4,
.footer-redes h4,
.footer-video-placeholder h4 {
    color: #c79a4a;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contacto p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #999;
}

/* VIDEO PLACEHOLDER */
.footer-video-placeholder .video-box {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(199, 154, 74, 0.1), rgba(199, 154, 74, 0.05));
    border: 2px solid rgba(199, 154, 74, 0.3);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-video-placeholder .video-box:hover {
    border-color: #c79a4a;
    background: linear-gradient(135deg, rgba(199, 154, 74, 0.15), rgba(199, 154, 74, 0.08));
}

@media (max-width: 768px) {
    .footer-video-placeholder .video-box {
        height: 100px;
    }
}

/* REDES SOCIALES MEJORADAS */
.footer-redes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c79a4a, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    flex-shrink: 0;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(199, 154, 74, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(199, 154, 74, 0.35);
    border-color: #fff;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* LINKS SECTION */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '▸';
    margin-right: 8px;
    color: #c79a4a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: #c79a4a;
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(199, 154, 74, 0.2);
    padding-top: 35px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-description {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-credit {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-redes {
        align-items: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer {
        padding: 45px 20px 25px;
        margin-top: 60px;
    }

    .logo-placeholder {
        width: 150px;
        height: 85px;
    }
    
    .footer-redes {
        align-items: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .social-icons {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .footer-contacto h4,
    .footer-redes h4,
    .footer-video-placeholder h4 {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
}

@media (max-width: 380px) {
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .social-icons {
        gap: 8px;
    }
}