/* ===== TIKILAND - ESTILO DIVERTIDO ===== */
:root {
    --jungle: #8BC34A;
    --fun: #FF8A5C;
}

#tikilandPage .section-title {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center; /* Centrado */
}

/* ===== HERO (PROPORCIÓN FIJA 16:9) ===== */
.tl-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.tl-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 20, 14, 0.55), rgba(13, 20, 14, 0.9)),
        url('https://image.qwenlm.ai/public_source/f709ca96-6971-439e-b692-29212dd036d5/061d69f18-f524-41b6-b99e-1d909e8ddbc09531.png') center/cover no-repeat;
    z-index: -1;
}
.tl-hero-content { position: relative; z-index: 2; padding: 0 5%; max-width: 900px; }
.tl-kicker {
    color: var(--jungle);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.tl-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--text-light);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin-bottom: 0.3rem;
}
.tl-title span { color: #ff8800; } /* Naranja para "Land" */
.tl-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff; /* Blanco puro para que resalte */
    margin-bottom: 1rem;
}
.tl-sub {
    font-weight: 200;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.2rem;
}

/* Botón verde de TikiLand */
.tl-btn-fun { background: var(--jungle); border-color: var(--jungle); color: #10240a; font-weight: 900; }
.tl-btn-fun:hover { background: transparent; color: var(--jungle); }

/* Emojis flotantes (ocultos por política del PDF) */
.float-emoji {
    position: absolute;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    z-index: 1;
    animation: floaty 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    pointer-events: none;
    display: none; 
}
@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-18px) rotate(4deg); }
}

/* ===== CINTA ANIMADA ===== */
.ticker {
    background: #ff8800; /* Naranja de marca */
    overflow: hidden;
    padding: 0.9rem 0;
    transform: rotate(-1.2deg) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 24s linear infinite;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1.05rem;
    color: #10240a;
    width: max-content;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===== CARDS ATRACCIONES ===== */
.tl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem; 
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tl-card {
    border-radius: 18px;
    overflow: hidden;
    background: #16211a;
    border: 1px solid rgba(139, 195, 74, 0.25);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tl-card.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.tl-card:hover {
    transform: translateY(-8px);
    border-color: var(--jungle);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.tl-img { 
    position: relative; 
    aspect-ratio: 1 / 1; /* Cuadrado 1:1 (recomendado subir 900x900) */
    overflow: hidden;
}

.tl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tl-card:hover .tl-img img { 
    transform: scale(1.06); 
}

.tl-badge {
    position: absolute;
    top: 1rem; 
    left: 50%; /* Centrado horizontalmente */
    transform: translateX(-50%);
    background: #ff8800; /* Naranja de marca, SIN emojis */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tl-body { 
    padding: 1.5rem 1.2rem 1.8rem;
    text-align: center; /* TODO centrado */
}

.tl-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.3;
    text-align: center; /* Títulos centrados */
}

/* Palabras clave en dorado con font-weight 500 */
.tl-body h3 strong {
    color: var(--accent); /* #C9A86C */
    font-weight: 500; 
}

.tl-body p { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    line-height: 1.6; 
    margin: 0;
    text-align: center; /* Párrafos centrados */
}

/* ===== INFO FAMILIAS ===== */
.tl-info-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.tl-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}
.tl-info-item { 
    text-align: center;
    opacity: 0; 
    transform: translateY(20px); 
    transition: all 0.8s ease; 
}
.tl-info-item.visible { opacity: 1; transform: translateY(0); }
.tl-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; 
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 136, 0, 0.1);
    border: 2px solid #ff8800;
    margin-bottom: 1.2rem;
}
.tl-info-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ff8800;
}
.tl-info-item h3 {
    font-family: 'Baloo 2', cursive;
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-weight: 700;
    text-align: center;
}
.tl-info-item p { 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    line-height: 1.6;
    text-align: center;
}

/* ===== CTA VISITA (Botones proporcionales y blindados) ===== */
.tl-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.tl-cta .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    min-width: 260px !important;
    text-align: center !important;
    border: 2px solid transparent !important;
    line-height: 1.2 !important;
}

/* Botón WhatsApp (Verde sólido) */
.tl-cta .btn-wpp-solid {
    background: #25D366 !important;
    color: #ffffff !important;
    border-color: #25D366 !important;
}
.tl-cta .btn-wpp-solid:hover {
    background: transparent !important;
    color: #25D366 !important;
}

/* Botón Reserva (Naranja sólido de marca #ff8800) */
.tl-cta .btn-reserva-solid {
    background: #ff8800 !important;
    color: #ffffff !important;
    border-color: #ff8800 !important;
}
.tl-cta .btn-reserva-solid:hover {
    background: transparent !important;
    color: #ff8800 !important;
}

.tl-cta .btn svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

.tl-note { margin-top: 1.8rem; font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    /* Hero fullscreen como el video del index: la imagen abarca toda la pantalla */
    .tl-hero {
        height: 100vh;
        height: 100dvh;
        aspect-ratio: auto;
    }
    .tl-hero-content {
        width: 100%;
        padding: 0 1.2rem;
        align-items: center;
        justify-content: center;
    }
    .float-emoji { display: none; }
    .ticker { transform: rotate(0) scale(1); }
    .tl-cta .btn { width: 100%; margin-top: 0.8rem; }
    .tl-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .tl-script { font-size: clamp(1.4rem, 6vw, 1.8rem); margin-bottom: 0.6rem; }
    .tl-sub { font-size: 0.85rem; max-width: 90%; }
    .tl-kicker { font-size: 0.6rem; margin-bottom: 0.8rem; }
}
/* Botón de TikiLand con fondo naranja y efecto transparente en hover */
a.btn.tl-btn-fun {
    background-color: #E85D04 !important; /* Naranja vibrante base */
    border-color: #E85D04 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

a.btn.tl-btn-fun:hover {
    background-color: transparent !important; /* Fondo transparente al pasar el cursor */
    border-color: #ffffff !important;         /* Borde blanco para mantener visibilidad */
    color: #ffffff !important;
}