/* --- LANDING PROGRAMAS KAIROSER PREMIUM --- */

:root {
    --premium-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --organic-cream: #f9f7f2;
    --organic-gray: #f0f0f0;
}

/* Hero Section Premium */
.program-hero-premium {
    padding: 140px 0 100px;
    background-color: var(--secondary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-hero-premium h1 {
    font-size: 4.5rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.program-hero-premium h2 {
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.4;
}

.premium-badge-floating {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: var(--premium-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #4a3708;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: rotate(15deg);
    z-index: 20;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-premium-cta {
    display: inline-block;
    padding: 20px 45px;
    background: var(--premium-gold);
    color: #4a3708;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-premium-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Bloque de Conexión Emocional */
.emotional-connection {
    padding: 100px 20px;
    background-color: var(--organic-cream);
    text-align: center;
}

.emotional-container {
    max-width: 850px;
    margin: 0 auto;
}

.emotional-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.emotional-text strong {
    color: var(--secondary);
    font-weight: 700;
}

/* El Viaje (Timeline) */
.transformation-journey {
    padding: 100px 0;
    background-color: white;
}

.timeline-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    padding: 0 20px;
}

/* Estilo Vertical para Desktop y Mobile */
.timeline-premium {
    position: relative;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #eee;
    top: 0;
}

.timeline-milestone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
}

.milestone-content {
    width: 42%;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.milestone-point {
    width: 20px;
    height: 20px;
    background: var(--verde);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #eee;
}

.timeline-milestone:nth-child(even) {
    flex-direction: row-reverse;
}

.milestone-week {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--verde);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.milestone-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.milestone-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Detalles del Programa (Acordeón) */
.program-details-premium {
    padding: 100px 0;
    background-color: var(--organic-gray);
}

.details-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.program-visual-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.accordion-minimal {
    list-style: none;
    padding: 0;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #666;
    line-height: 1.7;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 30px;
}

.accordion-item i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.accordion-item.active i {
    transform: rotate(180deg);
}

/* Footer Action */
.program-final-cta {
    padding: 100px 20px;
    text-align: center;
    background-color: white;
}

/* Responsive Premium */
@media (max-width: 992px) {
    .program-hero-premium h1 { font-size: 3rem; letter-spacing: 6px; }
    .details-grid-premium { grid-template-columns: 1fr; }
    .timeline-premium::before { left: 30px; }
    .milestone-point { left: 30px; }
    .milestone-content { width: calc(100% - 80px); margin-left: 80px; }
    .timeline-milestone, .timeline-milestone:nth-child(even) { flex-direction: row; }
}

@media (max-width: 768px) {
    .premium-badge-floating { width: 90px; height: 90px; top: 20px; right: 20px; font-size: 0.6rem; }
    .program-hero-premium h1 { font-size: 2.5rem; letter-spacing: 4px; }
}
