/* === VARIABLES & RESET === */
:root {
    /* Paleta Premium Sureña */
    --primary-dark: #022c22;   /* Emerald 950 - Fondo oscuro / Texto principal */
    --primary: #065f46;        /* Emerald 800 - Botones / Detalles */
    --primary-light: #ecfdf5;  /* Emerald 50 - Fondos suaves */

    --accent: #b45309;         /* Amber 700 - Madera / Cobre (Acentos) */
    --accent-hover: #92400e;

    --bg-body: #fafaf9;        /* Stone 50 - Blanco cálido, no clínico */
    --bg-card: #ffffff;

    --text-main: #1c1917;      /* Stone 900 */
    --text-muted: #57534e;     /* Stone 600 */
    --text-light: #a8a29e;     /* Stone 400 */

    --whatsapp-green: #25D366;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --radius: 12px;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Work Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* === TIPOGRAFÍA === */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.2;
}

/* === NAVEGACIÓN === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(2, 44, 34, 0.95); /* Semi-transparente */
    backdrop-filter: blur(10px); /* Efecto Glass */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover { color: #fff; }

.btn-nav-contact {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.btn-nav-contact:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.menu-toggle { display: none; cursor: pointer; }

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh; /* Pantalla completa */
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2, 44, 34, 0.4), rgba(2, 44, 34, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    animation: fadeIn 1.2s ease-out;
}

.hero-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem; /* Texto Gigante */
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BOTONES === */
.btn-primary {
    background-color: var(--accent);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-ghost:hover {
    background-color: var(--whatsapp-green);
    color: #fff;
    border-color: var(--whatsapp-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-ghost svg {
    flex-shrink: 0;
}

/* === SECCIONES GENERALES === */
.section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.separator { width: 60px; height: 3px; background-color: var(--accent); margin: 0 auto 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; }

/* === CATALOGO CARDS === */
.swipe-indicator {
    display: none;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image img { transform: scale(1.08); }

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.badge.popular { background-color: var(--primary); }
.badge.new { background-color: var(--accent); }

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-header h3 { font-size: 1.25rem; font-weight: 700; }

.capacity-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-amenities {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.card-amenities span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* === FEATURES === */
.features-section { background-color: var(--primary-light); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.feature-item:hover { transform: translateY(-5px); }

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-muted); }

.important-note {
    background: #fff;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.note-icon { color: var(--accent); flex-shrink: 0; }

/* === ENTORNO SECTION === */
.entorno-section {
    background-color: #fff;
}
.entorno-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.entorno-item {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    transition: all 0.3s;
}
.entorno-item:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}



/* === CONTACTO & MAPA === */
.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contacto-info {
    padding: 0 1rem;
}

.contacto-info h2 { 
    margin-bottom: 0.75rem; 
    font-size: 2rem;
}

.contact-intro { 
    margin-bottom: 2rem; 
    color: var(--text-muted); 
    font-size: 0.95rem;
}

.contact-list { 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem; 
    margin-bottom: 2rem; 
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.contact-item:hover { transform: translateX(5px); }

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-whatsapp-color {
    background-color: #25D366;
    color: white;
}

.label { 
    display: block; 
    font-size: 0.7rem; 
    color: var(--text-light); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.value { 
    display: block; 
    font-size: 0.95rem; 
    color: var(--primary-dark); 
    font-weight: 500; 
}

.social-links-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.social-links-contact h4 {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #145dbf;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-btn.instagram:hover {
    opacity: 0.9;
}

.contacto-map-card {
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #eee;
}

.btn-maps { width: 100%; justify-content: center; background: #fff; color: var(--text-main); border: 1px solid #ddd; padding: 0.8rem; border-radius: 6px; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; font-weight: 600; transition: all 0.2s; }
.btn-maps:hover { background: #f5f5f5; }

/* === FOOTER === */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 4rem;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent); }

.social-row-footer { display: flex; gap: 1rem; }
.social-row-footer a { color: #fff; transition: color 0.3s; }
.social-row-footer a:hover { color: var(--accent); }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}
.developer-credit a { color: #fff; text-decoration: none; font-weight: bold; }

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active { display: flex; opacity: 1; }

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: grid;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}

.modal-gallery {
    background: #000;
    position: relative;
    min-height: 400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Indicador de swipe en modal móvil */
.swipe-hint-modal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: center;
    pointer-events: none;
    animation: fadeOut 3s ease-out forwards;
}

@media (max-width: 768px) {
    .swipe-hint-modal {
        display: block;
    }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Spinner de carga */
.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
}
.loading-spinner.active { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-gallery img.loaded { opacity: 1; }

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 5;
}

.gallery-nav.prev { left: 0; }
.gallery-nav.next { right: 0; }
.gallery-nav:hover { background: rgba(0,0,0,0.8); }

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.modal-info {
    padding: 2rem;
    overflow-y: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-subtitle { color: var(--accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.modal-info h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.modal-info p { font-size: 0.95rem; line-height: 1.6; }

.modal-includes-box {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.modal-includes-box h4 { font-size: 1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.full-width { width: 100%; justify-content: center; margin-top: 1rem; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: #fff;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.8rem; }
    .modal-content { display: flex; flex-direction: column; height: 100vh; max-height: 100vh; width: 100%; border-radius: 0; }
    .modal-body { grid-template-columns: 1fr; grid-template-rows: 50vh 1fr; }
    .modal-gallery { height: 100%; min-height: auto; padding: 1rem; }
    .modal-info { padding: 1.5rem; }
    .contacto-wrapper { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-row-footer { justify-content: center; }
    .social-buttons { flex-direction: column; }
    .social-btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .menu-toggle { display: block; }

    /* Contenedor general más estrecho en móvil */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Centrar contenido de secciones */
    .section {
        padding: 3rem 0;
        text-align: center;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Mostrar indicador de deslizamiento */
    .swipe-indicator {
        display: flex;
        margin-bottom: 1rem;
    }

    /* Optimización para tarjetas en móvil */
    .cabanas-section {
        padding: 3rem 0;
    }

    .catalogo {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 1rem 2rem 1rem;
        gap: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -1rem; /* Compensar padding del container */
    }

    .catalogo::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: calc(100vw - 3rem); /* Ancho de pantalla menos márgenes */
        max-width: calc(100vw - 3rem);
        scroll-snap-align: center;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        margin: 0;
    }

    .card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .card-content {
        text-align: left; /* Contenido de tarjeta alineado a izquierda */
    }

    /* Mejorar visibilidad de badges en móvil */
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* Asegurar que los botones sean fáciles de presionar */
    .card-footer {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    /* Features grid en móvil */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Entorno grid en móvil */
    .entorno-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    /* Mejorar navegación del modal en móvil */
    .gallery-nav {
        padding: 1.5rem 1rem;
        font-size: 1.5rem;
        opacity: 0.7;
    }

    .gallery-nav:active {
        opacity: 1;
        background: rgba(0,0,0,0.9);
    }

    .gallery-nav.prev { left: 0; border-radius: 0 8px 8px 0; }
    .gallery-nav.next { right: 0; border-radius: 8px 0 0 8px; }

    /* Mejorar botones del modal */
    .btn-primary.full-width {
        padding: 1.2rem;
        font-size: 1.1rem;
        min-height: 48px;
    }

    .modal-close {
        width: 44px;
        height: 44px;
        top: 1rem;
        right: 1rem;
    }

    /* WhatsApp float más accesible en móvil */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    /* Contacto en móvil */
    .contacto-info {
        padding: 0;
    }

    .contact-list {
        text-align: left;
    }

    .contacto-info h2 {
        font-size: 1.6rem;
    }

    .contact-intro {
        font-size: 0.9rem;
    }

    /* Hero responsivo */
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }