/* ============================================================
   HOUSE OF PADEL — CSS PREMIUM 2025 (VERSIÓN OPTIMIZADA)
   ============================================================ */

/* ==========================
   VARIABLES OPTIMIZADAS
   ========================== */
:root {
    --black: #050814;
    --black-soft: #0d0f1a;
    --white: #ffffff;

    --gold: #ffc928;
    --gold-soft: rgba(255, 201, 40, 0.18);

    --red: #e30613;
    --red-light: #ff4d57;

    --text-light: #d7d7d7;
    --text-muted: #9ca3af;

    --radius: 14px;
    --transition: 0.25s ease;

    --section-height-desktop: 100vh;
}

/* ==========================
   RESET MEJORADO
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Compensa navbar fijo */
}

body {
    background: var(--black);
    color: var(--text-light);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ==========================
   CONTENEDOR GLOBAL
   ========================== */
.hop-container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================
   NAVBAR OPTIMIZADA
   ========================== */
.hop-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 201, 40, 0.08);
    transition: var(--transition);
    padding: 12px 0;
}

.hop-navbar.scrolled {
    background: rgba(5, 8, 20, 0.95);
    padding: 8px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    line-height: 1;
    text-decoration: none;
    display: inline-block;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* MENÚ MÓVIL FUNCIONAL */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(5, 8, 20, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 16px 24px;
    text-align: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 201, 40, 0.05);
}

.mobile-menu a:hover {
    background: rgba(255, 201, 40, 0.12);
    color: var(--gold);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ==========================
   SECCIONES OPTIMIZADAS
   ========================== */
.section {
    padding: clamp(60px, 10vh, 110px) 0;
    min-height: auto;
}

/* En móvil: altura automática */
@media (max-width: 768px) {
    .section {
        height: auto !important;
        padding: 80px 0;
    }
}

/* Fondo oscuro */
.section-dark {
    background: var(--black);
}

/* Fondo claro */
.section-light {
    background: #0c1020;
}

/* Fondo especial CTA */
.section-cta {
    background:
        radial-gradient(circle at top left, rgba(255, 201, 40, 0.12), transparent 55%),
        linear-gradient(135deg, #050814, #0b1220);
}

/* TÍTULOS */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.4rem);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* ==========================
   HERO COMPLETO
   ========================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slides img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.9)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    margin-bottom: 30px;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-light);
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-bullets {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-bullets span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-bullets span.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ==========================
   BOTONES
   ========================== */
.btn-red {
    display: inline-block;
    padding: 14px 28px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 140px;
}

.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 70, 80, 0.6);
}

.btn-red-outline {
    display: inline-block;
    padding: 12px 26px;
    border: 2px solid var(--red);
    color: var(--red);
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 140px;
}

.btn-red-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================
   EVENTOS OPTIMIZADOS
   ========================== */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-soft);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(255, 201, 40, 0.15);
}

.event-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 8px 0 16px;
    line-height: 1.3;
}

.event-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.event-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================
   CTA WHATSAPP
   ========================== */
.cta-whatsapp {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    border: 1px solid var(--gold-soft);
    transition: 0.4s ease;
}

.cta-whatsapp:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 201, 40, 0.1);
}

.cta-icon {
    font-size: 3.8rem;
    color: #25D366;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.cta-whatsapp:hover .cta-icon {
    transform: scale(1.08);
}

.cta-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-text {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ==========================
   EXPERIENCIA
   ========================== */
.exp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exp-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.exp-container p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.exp-img-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exp-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================
   CTA INSTAGRAM
   ========================== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 10px;
    margin-top: 30px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    filter: brightness(0.85);
}

.insta-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.insta-cta {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    background: rgba(255, 201, 40, 0.08);
    border: 1px solid var(--gold-soft);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.insta-cta h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* ==========================
   MERCHANDISING
   ========================== */
#merchandising {
    background: #070b18;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.merch-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 201, 40, 0.12);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.merch-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(255, 201, 40, 0.1);
}

.merch-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.merch-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.text-muted {
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==========================
   HISTÓRICO
   ========================== */
.historico {
    background: var(--black); /* Cambiado de section-light a oscuro */
}

.historic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.historic-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gold-soft);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.historic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 201, 40, 0.1);
}

.historic-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.historic-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.historic-date {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* ==========================
   COLABORADORES
   ========================== */
#colaboradores {
    background: #0c1020;
}

.collab-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.collab-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scroll-left 22s linear infinite;
}

.collab-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-item img {
    height: 70px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.3s ease;
    filter: grayscale(100%);
}

.collab-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.collab-carousel:hover .collab-track {
    animation-play-state: paused;
}

/* ==========================
   FOOTER
   ========================== */
.hop-footer {
    padding: 80px 0 40px;
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 201, 40, 0.1);
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    width: 160px;
    margin: 0 auto 30px;
    display: block;
}

.footer-grid {
    margin-top: 30px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    text-align: left;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-copy {
    margin-top: 40px;
    opacity: 0.5;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================
   RESPONSIVE OPTIMIZADO
   ========================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .exp-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exp-img-wrapper {
        order: -1;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .insta-cta {
        grid-column: 1 / 3;
        grid-row: auto;
        padding: 20px;
    }
    
    .event-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .historic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 580px;
    }
    
    .exp-title {
        font-size: 2rem;
    }
    
    .exp-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .insta-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .insta-item {
        height: 200px;
    }
    
    .insta-cta {
        grid-column: 1;
        height: auto;
        min-height: 200px;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .hop-container {
        padding: 0 15px;
    }
    
    .cta-whatsapp {
        padding: 30px 20px;
    }
}

/* ==========================
   SCROLLREVEAL
   ========================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   GDPR – BANNER PREMIUM HOUSE OF PADEL
============================================================ */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 201, 40, 0.25);
    padding: 22px 0;
    z-index: 10000;
    display: none;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.gdpr-banner-inner {
    width: 92%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.gdpr-banner p {
    line-height: 1.5;
    opacity: 0.85;
    flex: 1;
}

.gdpr-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ===============================
   RESPONSIVE BANNER
=============================== */
@media (max-width: 768px) {
    .gdpr-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gdpr-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .gdpr-banner-buttons button {
        min-width: 120px;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .gdpr-banner {
        padding: 18px 0;
    }
    
    .gdpr-banner-inner {
        padding: 0 15px;
    }
}

/* ============================================================
   GDPR – MODAL PROFESIONAL PREMIUM
============================================================ */
.gdpr-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 15000;
}

.gdpr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.gdpr-modal-content {
    position: relative;
    width: 92%;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 201, 40, 0.18);
    border-radius: var(--radius);
    padding: 45px;
    margin: 140px auto;
    color: var(--text-light);
    backdrop-filter: blur(16px);
    box-shadow: 0 0 25px rgba(255, 201, 40, 0.15);
    animation: modalSlideDown 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

/* ===============================
   TÍTULOS
=============================== */
.gdpr-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.gdpr-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ===============================
   CATEGORÍAS
=============================== */
.gdpr-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 201, 40, 0.12);
    transition: 0.2s ease;
    gap: 20px;
}

.gdpr-category:hover {
    background: rgba(255, 201, 40, 0.05);
}

.gdpr-category > div {
    flex: 1;
}

.gdpr-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.gdpr-category p {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.85;
    line-height: 1.4;
}

/* Estilo checkboxes */
.gdpr-category input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 5px;
}

.gdpr-category input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===============================
   BOTONES MODAL
=============================== */
.gdpr-modal-buttons {
    margin-top: 35px;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.gdpr-modal-buttons button {
    min-width: 140px;
}

@media (max-width: 600px) {
    .gdpr-modal-content {
        padding: 30px 20px;
        margin: 90px auto;
        width: 95%;
    }
    
    .gdpr-modal-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    
    .gdpr-modal-buttons button {
        width: 100%;
        text-align: center;
    }
    
    .gdpr-title {
        font-size: 1.6rem;
    }
    
    .gdpr-category {
        flex-direction: column;
        gap: 10px;
    }
    
    .gdpr-category input[type="checkbox"] {
        align-self: flex-start;
    }
}

/* ============================================================
   BOTÓN FLOTANTE CONFIGURAR COOKIES (PREMIUM)
============================================================ */
.cookie-floating-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 58px;
    height: 58px;
    background: rgba(255, 201, 40, 0.15);
    border: 1px solid rgba(255, 201, 40, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    color: var(--gold);
    font-size: 1.5rem;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(255, 201, 40, 0.25);
    display: none; /* Oculto por defecto */
}

.cookie-floating-btn:hover {
    transform: scale(1.12);
    background: rgba(255, 201, 40, 0.28);
    box-shadow: 0 0 18px rgba(255, 201, 40, 0.4);
}

@media (max-width: 768px) {
    .cookie-floating-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ==========================
   UTILIDADES
   ========================== */
.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ==========================
   LOADING LAZY
   ========================== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}