/**
 * Homepage Styles - Kenkatsu
 * Clonado exacto de referencia-wellness-hero.html
 * 
 * @package KenkatsuTheme
 * @version 1.0
 */

/* ============================================
   VARIABLES DE COLOR (exactas de referencia)
   ============================================ */
:root {
    --kenkatsu-teal: #0d9488;
    --kenkatsu-teal-dark: #124E4A;
    --kenkatsu-teal-darker: #0f766e;
    --kenkatsu-beige: #E6DCCF;
    --kenkatsu-taupe: #8C8174;
    --kenkatsu-dark: #1f2937;
    --kenkatsu-gray: #666666;
    --kenkatsu-white: #FFFFFF;
}

/* ============================================
   HERO SECTION
   ============================================ */

/* Asegurar que el hero section empiece desde top: 0 para que la imagen esté detrás del header */
.kenkatsu-homepage #main-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.kenkatsu-homepage .kenkatsu-hero-section {
    position: relative;
    height: 100vh !important; /* Altura exacta del viewport */
    min-height: 100vh !important;
    max-height: 100vh !important; /* Máximo también 100vh para evitar que se extienda */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important; /* Ocultar cualquier overflow */
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero background: absolute dentro del hero section, cubre exactamente 100vh */
.kenkatsu-homepage .hero-background {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

/* Hero overlay: cubre exactamente el hero section (100vh) */
.kenkatsu-homepage .hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    /* Sobrescribir inset: 0 de hero-unified.css */
    inset: 0 !important;
}

/* Asegurar que el hero-content esté por encima del background y overlay */
.kenkatsu-homepage .hero-content {
    position: relative;
    z-index: 10;
}

/* Fallback para hero section general (otras páginas) */
.kenkatsu-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    /* Opacidad y filtros se controlan desde hero-unified.css para unificación */
}

/* Home: imagen cubre exactamente el 100% del hero */
.kenkatsu-homepage .hero-bg-image {
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Overlay se controla desde hero-unified.css para unificación */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3.2vw, 3rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--kenkatsu-teal) 0%, #0f766e 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--kenkatsu-teal) 0%, #14b8a6 100%);
    color: #FFFFFF !important;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.6), 
                0 0 50px rgba(13, 148, 136, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3), 
                0 0 35px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover::before {
    width: 350px;
    height: 350px;
}

.btn-secondary:hover::after {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}
.scroll-indicator:hover {
    opacity: 0.9;
}

.scroll-arrow {
    width: 1.5rem;
    height: 1.5rem;
    color: #FFFFFF;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* ============================================
   INTRO SECTION (bg-[#E6DCCF])
   ============================================ */

/* Sección ocupa 100% del viewport al llegar con la flecha del hero */
.kenkatsu-intro-section {
    min-height: 100vh;
    padding: 4rem 0 6rem;
    background-color: var(--kenkatsu-beige);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.kenkatsu-intro-section .container {
    width: 100%;
}

.kenkatsu-intro-section .section-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 2.5vw, 2.5rem);
    font-weight: 600;
    color: var(--kenkatsu-taupe);
    text-align: center;
    margin-bottom: 1rem;
}

.kenkatsu-intro-section .text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.kenkatsu-intro-section .w-24 {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--kenkatsu-teal);
    opacity: 0.5;
    margin: 0 auto;
}

.intro-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .intro-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.intro-card {
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.intro-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kenkatsu-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intro-card p {
    color: var(--kenkatsu-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   WHY KENKATSU SECTION (bg-white)
   ============================================ */

.kenkatsu-why-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

/* En la home: scroll por secciones para que un scroll pase a la siguiente */
body.kenkatsu-homepage {
    scroll-snap-type: y proximity;
}

/* ¿Por qué Kenkatsu? — contenedor parallax 90vh, contenido centrado */
.kenkatsu-why-section-parallax {
    position: relative;
    height: 90vh;
    min-height: 90vh;
    max-height: 90vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Mismo overlay que la sección Entorno (parallax): teal + multiply */
.kenkatsu-why-section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 78, 74, 0.5);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.kenkatsu-why-section-parallax .container {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tarjetas más anchas y compactas en la sección parallax */
.kenkatsu-why-section-parallax .why-grid {
    max-width: 98%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 992px) {
    .kenkatsu-why-section-parallax .why-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .kenkatsu-why-section-parallax .why-grid {
        max-width: 1520px;
        gap: 1.5rem;
    }
}

/* Título más arriba y más grande */
.kenkatsu-why-section-parallax .text-center {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.kenkatsu-why-section-parallax .section-title {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-size: clamp(1.75rem, 2.8vw, 2.75rem) !important;
    margin-bottom: 0.35rem !important;
    margin-top: 0 !important;
}

.kenkatsu-why-section-parallax .w-24.h-1 {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

/* Tarjetas ligeramente más grandes, transparentes — aspecto premium */
.kenkatsu-why-section-parallax .why-item {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.35rem 1.4rem 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.kenkatsu-why-section-parallax .why-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    border-color: rgba(255, 255, 255, 0.4);
}

.kenkatsu-why-section-parallax .why-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.6rem;
    background: linear-gradient(135deg, var(--kenkatsu-teal) 0%, #0f766e 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 3px 12px rgba(13, 148, 136, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.kenkatsu-why-section-parallax .why-icon svg {
    width: 1.65rem;
    height: 1.65rem;
    stroke: #FFFFFF;
}

.kenkatsu-why-section-parallax .why-item h3 {
    color: #FFFFFF !important;
    font-size: 0.875rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.kenkatsu-why-section-parallax .why-item p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.875rem !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .kenkatsu-why-section-parallax {
        background-attachment: scroll !important;
    }
}

/* En pantallas pequeñas permitir que la sección crezca si el contenido no cabe */
@media (max-width: 991px) {
    .kenkatsu-why-section-parallax {
        height: auto;
        min-height: 90vh;
        max-height: none;
        overflow: visible;
        padding: 3rem 0;
    }
}

.kenkatsu-why-section .section-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 2.5vw, 2.5rem);
    font-weight: 600;
    color: var(--kenkatsu-taupe);
    text-align: center;
    margin-bottom: 1rem;
}

.kenkatsu-why-section .text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

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

.why-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--kenkatsu-teal) 0%, #0f766e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.why-icon svg {
    width: 2rem;
    height: 2rem;
}

.why-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--kenkatsu-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-item p {
    color: var(--kenkatsu-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   TECHNOLOGY SECTION (bg-white)
   ============================================ */

.kenkatsu-tech-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.kenkatsu-tech-section .section-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 3vw, 3.125rem);
    font-weight: 600;
    color: var(--kenkatsu-taupe);
    text-align: center;
    margin-bottom: 4rem;
}

.kenkatsu-tech-section .container {
    margin-bottom: 4rem;
}

.tech-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .tech-card {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-card-reverse {
        direction: rtl;
    }
    
    .tech-card-reverse > * {
        direction: ltr;
    }
}

.tech-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.tech-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 78, 74, 0.1), transparent);
    pointer-events: none;
}

.tech-content {
    padding: 2.5rem;
}

@media (min-width: 992px) {
    .tech-content {
        padding: 3rem;
    }
}

.tech-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--kenkatsu-teal);
    margin-bottom: 1rem;
}

.tech-content h3 {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--kenkatsu-dark);
    margin-bottom: 1rem;
}

.tech-content p {
    color: var(--kenkatsu-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-link {
    color: var(--kenkatsu-taupe);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tech-link:hover {
    color: var(--kenkatsu-teal-dark);
    text-decoration: underline;
}

/* ============================================
   PACKAGES SECTION (bg-teal-900/teal oscuro)
   ============================================ */

/* Sección paquetes: min 100vh, contenido centrado; puede crecer con elegancia */
.kenkatsu-packages-section {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
    background-color: var(--kenkatsu-teal-dark);
    scroll-snap-align: start;
}

.kenkatsu-packages-section .container {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kenkatsu-packages-section .section-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 2.8vw, 2.75rem);
    font-weight: 600;
    color: var(--kenkatsu-beige);
    text-align: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.kenkatsu-packages-section .text-center {
    text-align: center;
    margin-bottom: 0;
}

.kenkatsu-packages-section .mb-16 {
    margin-bottom: 1.5rem;
}

/* Párrafo principal: espacio claro antes de las tarjetas, nunca se comprime */
.kenkatsu-packages-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: stretch;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* En móvil: más espacio entre tarjetas apiladas y sección puede crecer */
@media (max-width: 767px) {
    .kenkatsu-packages-section {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
    }

    .packages-grid {
        gap: 2rem;
    }
}

.package-card {
    background: #FFFFFF;
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem 1.5rem 1.75rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.package-card-featured,
.package-card.package-featured {
    background: var(--kenkatsu-beige);
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--kenkatsu-teal);
    position: relative;
    padding: 1.75rem 1.5rem 2rem;
}

.package-card-featured:hover,
.package-card.package-featured:hover {
    transform: translateY(-0.75rem);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.package-badge {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    background: var(--kenkatsu-teal);
    color: #FFFFFF;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.package-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--kenkatsu-taupe);
    margin-bottom: 0.35rem;
}

.package-name {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kenkatsu-dark);
    margin-bottom: 0.75rem;
}

.package-price {
    margin-bottom: 0.75rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--kenkatsu-gray);
    display: block;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 300;
    color: var(--kenkatsu-teal-dark);
    display: block;
}

.price-label {
    font-size: 1.125rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    width: 100%;
    flex-grow: 1;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--kenkatsu-gray);
    font-size: 0.8125rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-card .btn-primary {
    width: 100%;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.kenkatsu-packages-section .packages-cta-wrapper {
    text-align: center;
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.kenkatsu-packages-section .packages-cta-wrapper .btn-secondary {
    font-size: 0.9375rem !important;
    padding: 0.9rem 2.25rem !important;
}

/* ============================================
   ENVIRONMENT SECTION
   ============================================ */

.kenkatsu-environment-section {
    position: relative;
    padding: 6rem 0 5rem 0;
    /* background-image inyectado desde page-home.php (uploads/kenkatsu/) */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    margin-bottom: 0 !important;
}

.kenkatsu-environment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 78, 74, 0.5);
    mix-blend-mode: multiply;
}

.environment-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.kenkatsu-environment-section .section-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 3vw, 3.125rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.kenkatsu-environment-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.kenkatsu-environment-section .btn-secondary:hover {
    background: #FFFFFF;
    color: var(--kenkatsu-teal-dark);
    text-shadow: none;
}


/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   SECTION TITLE (genérico)
   ============================================ */

.section-title {
    font-family: 'Lora', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
