/* ============================================
   AITANA TOUR - ESTILOS IDÉNTICOS
   Clases exactas de www.aitanatour.com
   ============================================ */

/* ============================================
   VARIABLES DE COLOR OFICIALES AITANA TOUR
   ============================================ */
:root {
    /* COLORES PRINCIPALES */
    --aitana-primary: #cc0000;        /* ROJO PRINCIPAL de Aitana Tour */
    --aitana-primary-light: #ff0000;  /* Rojo brillante (variaciones/efectos) */
    --aitana-primary-dark: #aa0000;   /* Rojo más oscuro (hover/activo) */
    
    /* COLORES SECUNDARIOS */
    --aitana-orange: #ff6b35;         /* Naranja complementario */
    --aitana-orange-dark: #e55a2b;    /* Naranja oscuro */
    --aitana-orange-light: #ff7f4d;   /* Naranja claro */
    --aitana-amber: #f39c12;          /* Dorado/ámbar */
    
    /* SUSTITUTOS DEL AZUL PROBLEMÁTICO */
    --aitana-success: #27ae60;        /* Verde para éxito/confirmación */
    --aitana-info: #16a085;           /* Verde azulado para información */
    --aitana-warning: #f39c12;        /* Ámbar para advertencias */
    
    /* COLORES NEUTROS */
    --aitana-dark: #2d3436;           /* Gris muy oscuro */
    --aitana-gray: #636e72;           /* Gris medio */
    --aitana-light-gray: #ddd;        /* Gris claro */
    --aitana-white: #ffffff;          /* Blanco */
    --aitana-black: #000000;          /* Negro */
}

/* RESET & ESTILOS BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* ============================================
   SISTEMA DE IMÁGENES DE FONDO OPTIMIZADO
   ============================================ */

/* Variables CSS para gestión centralizada de backgrounds */
:root {
    /* Rutas locales por defecto */
    --bg-hero: url('/static/img/backgrounds/hero-bg.jpg');
    --bg-evento: url('/static/img/backgrounds/evento-bg.jpg');
    --bg-formulario: url('/static/img/backgrounds/inscripcion-bg.jpg');
    --bg-success: url('/static/img/backgrounds/success-bg.jpg');
    --bg-fallback: linear-gradient(135deg, #000000, #1a1a1a);
    
    /* Fallback CDN (si se necesita) */
    --cdn-hero: url('https://i.imgur.com/CR14jBA.jpg');
    --cdn-evento: url('https://i.imgur.com/HKpcnp1.jpg');
    --cdn-formulario: url('https://i.imgur.com/55AXDPr.jpg');
    --cdn-success: url('https://i.imgur.com/brVWSwF.jpg');
}

/* Clase base para backgrounds con fallback automático */
.bg-hero {
    background-image: var(--bg-hero);
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.bg-evento {
    background-image: var(--bg-evento);
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.bg-formulario {
    background-image: var(--bg-formulario);
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.bg-success {
    background-image: var(--bg-success);
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Overlay para mejorar legibilidad del texto */
.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Tipografía - Títulos y elementos CTA usan Barlow Condensed */
h1, h2, h3, h4, h5, h6,
.hero__title,
.hero__cta,
.story-section__title,
.story-section__subtitle,
.event-card__title,
.award-card__title,
.cta-title,
.cta-button {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* Texto del cuerpo usa Poppins */
body,
p,
.story-section__text,
.event-card__description,
.award-card__description,
.hero__subtitle,
.hero__promo {
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector__current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: none;
    cursor: pointer;
}

.language-selector__current:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-selector__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-selector.active .language-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-selector__dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff;
    transition: background-color 0.3s ease;
}

.language-selector__dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav__links {
    list-style: none;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
}

.mobile-nav__links li {
    margin: 1rem 0;
}

.mobile-nav__links a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.mobile-nav__links a:hover {
    color: var(--aitana-primary-light, #ff0000);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Solo color de fallback, no imagen */
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero__date {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--aitana-primary-light, #ff0000), var(--aitana-primary, #cc0000));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.hero__promo {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   HERO FASE INFO - Información de fases de inscripción
   ============================================ */
.hero__fase-info {
    margin-top: 1.5rem;
}

.fase-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fase-badge--vip {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(218, 165, 32, 0.9));
    color: #000;
    border-color: rgba(255, 215, 0, 0.5);
}

.fase-badge--veteranos {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.9), rgba(30, 144, 255, 0.9));
    color: #fff;
    border-color: rgba(0, 150, 255, 0.5);
}

.fase-badge--general {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
    color: #fff;
    border-color: rgba(34, 197, 94, 0.5);
}

/* ============================================
   STORY SECTIONS
   ============================================ */
.story-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.story-section__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.story-section__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.story-section__title--large {
    font-size: clamp(3rem, 8vw, 7rem);
}

.story-section__subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.story-section__text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    color: #fff;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--aitana-primary-light, #ff0000);
}

.event-card__description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Estilos específicos para elementos select y textarea */
.form-input[type="date"],
select.form-input,
textarea.form-input {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
}

/* Específico para textarea */
textarea.form-input {
    resize: vertical;
    min-height: 100px;
    cursor: text;
}

/* Estilos para las opciones de los select */
select.form-input option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
    border: none;
}

/* Estilos mejorados para el select y textarea en diferentes estados */
select.form-input:hover,
textarea.form-input:hover {
    background: rgba(255, 255, 255, 0.15);
}

select.form-input:focus,
textarea.form-input:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* Asegurar contraste en navegadores que no respetan los estilos del option */
@supports (-moz-appearance: none) {
    select.form-input option {
        background-color: #000;
        color: #fff;
    }
}

/* Estilos para Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    select.form-input option {
        background-color: #1a1a1a;
        color: #fff;
    }
}

.form-input:focus {
    outline: none;
    border-color: var(--aitana-primary-light, #ff0000);
    background: rgba(255, 255, 255, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Estilos para campos con error */
.form-input.error {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

/* Alertas de error mejoradas */
.error-alert {
    background: rgba(255, 102, 0, 0.1) !important;
    border: 1px solid #ff6600 !important;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #ff6600 !important;
    text-align: center;
    animation: shake 0.5s ease-in-out;
}

/* Estilos específicos para errores de Django */
.errorlist {
    background: rgba(255, 102, 0, 0.1) !important;
    border: 1px solid #ff6600 !important;
    border-radius: 6px;
    padding: 0.75rem !important;
    margin-top: 0.5rem !important;
    list-style: none !important;
    color: #ff6600 !important;
    font-weight: 600 !important;
}

.errorlist li {
    color: #ff6600 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Estilos para campos con error */
.form-input.error,
.form-input:invalid {
    border-color: #ff6600 !important;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2) !important;
}

/* Estilos para botón de logout */
.logout-btn {
    background: none !important;
    border: none !important;
    color: inherit !important;
    font: inherit !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
    width: 100% !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.mobile-nav .logout-btn {
    padding: 1rem !important;
    color: #ffffff !important;
}

.mobile-nav .logout-btn:hover {
    background: rgba(255, 0, 0, 0.1) !important;
}

/* Estilos específicos para página de inscripciones */
.inscripciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .inscripciones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.inscripcion-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.inscripcion-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,102,0,0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .inscripcion-card {
        padding: 1.5rem;
    }
}

/* Estados de inscripción */
.estado-pagada {
    background: rgba(0,255,0,0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.estado-pendiente {
    background: rgba(255,165,0,0.2);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.estado-cancelada {
    background: rgba(255,102,0,0.2);
    color: #ff6600;
    border: 1px solid #ff6600;
}

.error-field {
    background: rgba(255, 102, 0, 0.1) !important;
    border: 1px solid #ff6600 !important;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    animation: fadeInError 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-text {
    color: #ff6600 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.error-icon {
    color: #ff6600 !important;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Clases de texto para errores */
.text-error {
    color: #ff6600 !important;
}

.text-success {
    color: #00ff00 !important;
}

.text-warning {
    color: #ffaa00 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--aitana-primary-light, #ff0000), var(--aitana-primary, #cc0000));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header__container {
        padding: 0.75rem 1rem;
    }
    
    .header__logo {
        position: static;
        transform: none;
    }
    
    .story-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }
    
    .event-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__content {
        padding: 0 1rem;
    }
    
    .story-section {
        padding: 2rem 1rem;
    }
    
    .form-container {
        padding: 1rem;
        margin: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer__logo img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.footer__text {
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer__bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER - BLOQUES DE ENLACES
   ============================================ */
.footer__links-section {
    margin-bottom: 3rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer__column h3 {
    color: var(--aitana-orange, #ff6b35);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer__column ul {
    list-style: none;
    padding: 0;
}

.footer__column ul li {
    margin-bottom: 0.8rem;
}

.footer__column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__column ul li a:hover {
    color: var(--aitana-orange, #ff6b35);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--aitana-orange, #ff6b35);
    color: var(--aitana-white, #fff);
    transform: translateY(-2px);
}

.footer__section-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 2rem 0;
}

/* Responsive para bloques de enlaces */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer__links-section {
        margin-bottom: 2rem;
    }
}
