/* ========== SECCIÓN DIETA (REDISEÑO PRO) ========== */
.dieta {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f1f17 100%);
    padding: 5rem 2rem;
    position: relative;
    text-align: center;
}

/* TITULO */
.dieta .section-title {
    color: #f2fff7;
    font-family: var(--font-subtitle);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
}

.dieta .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #2dcc35;
    margin: 1.5rem auto 3rem;
}

/* CONTENEDOR COMO GRID */
.dieta-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* TARJETAS AUTOMÁTICAS DESDE <p> */
.dieta-content p {
    background: #141414;
    padding: 2rem;
    border-radius: 16px;
    color: #f2fff7;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    border: 1px solid rgba(45, 204, 53,0.1);
    transition: 0.4s;
    position: relative;
}

/* EFECTO HOVER */
.dieta-content p:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 204, 53,0.4);
}

/* ICONO AUTOMÁTICO */
.dieta-content p::before {
    content: "✦";
    color: #2dcc35;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.8rem;
}

/* ÚLTIMO TEXTO MÁS ANCHO (DESTACADO) */
.dieta-content p:last-child {
    grid-column: span 2;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    color: #cfc3a9;
}

/* ANIMACIÓN SUAVE */
.dieta-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.dieta-content p:nth-child(1) { animation-delay: 0.2s; }
.dieta-content p:nth-child(2) { animation-delay: 0.4s; }
.dieta-content p:nth-child(3) { animation-delay: 0.6s; }
.dieta-content p:nth-child(4) { animation-delay: 0.8s; }
.dieta-content p:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .dieta {
        padding: 4rem 1.25rem;
    }

    .dieta-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dieta .section-title {
        font-size: 2.2rem;
    }

    .dieta-content p:last-child {
        grid-column: span 1;
    }

    .page-hero {
        height: 350px;
    }

    .page-hero--dieta,
    .page-hero.page-hero--ceremonia {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .dieta {
        padding: 3rem 1rem;
    }

    .dieta .section-title {
        font-size: 1.8rem;
    }

    .dieta-content p {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .page-hero {
        height: 280px;
    }

    .page-hero--dieta,
    .page-hero.page-hero--ceremonia {
        height: 280px;
    }
}

/* ========== ESTILOS PARA PÁGINAS INDEPENDIENTES ========== */
.dieta-page, .ceremonia-page {
    background-color: var(--color-black);
    color: var(--color-text-light);
}

.page-hero {
    height: 500px;
    width: 100%;
    background: url('../img/headerpages.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.page-hero .page-header {
    padding-top: 0;
    margin-bottom: 0;
}

.page-hero .page-overline,
.page-hero .page-title {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.page-hero--dieta {
    height: 450px;
}

.page-hero.page-hero--ceremonia {
    height: 450px;
}

.container-wide {
    max-width: 1286px;
}

.content-wrapper {
    max-width: 1286px;
    margin: 0 auto;
}

.content-wrapper-large {
    max-width: 1286px;
    margin: 0 auto;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.custom-list-bullet {
    color: var(--color-gold);
    margin-right: 15px;
    font-size: 18px;
    line-height: 1.2;
}

.custom-box {
    margin-top: 40px;
    padding: 30px;
    border-left: 2px solid var(--color-gold);
    background: rgba(45, 204, 53, 0.05);
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dieta-page, .ceremonia-page { padding-top: 0 !important; }
    
    .custom-box {
        padding: 20px;
    }

    .page-hero-content {
        padding: 0 1.25rem;
    }

    .page-overline {
        letter-spacing: 2px;
    }
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-overline {
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
    font-family: var(--font-title);
}

.page-title {
    margin-bottom: 0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-box {
    padding: 30px;
    background: rgba(255, 101, 0, 0.03);
    border: 1px solid rgba(217, 120, 60, 0.1);
    height: 100%;
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 32px;
        margin-bottom: 30px;
    }
    
    .intro-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .info-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero-content {
        padding: 0 1rem;
    }

    .centered-btn-container {
        margin: 40px 0;
    }
}

.list-icon-x {
    color: #e74c3c;
    margin-right: 12px;
}

.list-icon-exclamation {
    color: var(--color-gold);
    margin-right: 12px;
}

.centered-btn-container {
    text-align: center;
    margin: 60px 0;
}

.footer-decor {
    width: 60px;
    height: 2px;
    margin: 20px auto;
    background: var(--color-gold);
    opacity: 0.3;
}

.footer-copy {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

/* ========== SECCIÓN CEREMONIAS PRO ========== */
.ceremonias {
    background: linear-gradient(180deg, #0a0a0a 0%, #14180f 100%);
    padding: 5rem 2rem;
    text-align: center;
}

/* TITULO */
.ceremonias .section-title {
    color: #f2fff7;
    font-family: var(--font-subtitle);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.ceremonias .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #2dcc35;
    margin: 1.5rem auto 3rem;
}

/* TEXTO PRINCIPAL */
.intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #cfc3a9;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* SUBTEXTO */
.subtext {
    color: #f2fff7;
    margin-bottom: 2rem;
}

/* SUBTITULOS */
.ceremonias-content h3 {
    color: #2dcc35;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

/* GRID TIPO CAPSULAS */
.lista-grid {
    max-width: 900px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ITEMS */
.item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(45, 204, 53,0.2);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: #f2fff7;
    font-size: 0.95rem;
    text-align: left;
    transition: 0.3s;
    position: relative;
}

/* ICONO */
.item::before {
    content: "✦";
    color: #2dcc35;
    margin-right: 10px;
}

/* HOVER */
.item:hover {
    background: rgba(45, 204, 53,0.08);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lista-grid {
        grid-template-columns: 1fr;
    }

    .ceremonias .section-title {
        font-size: 2.5rem;
    }
}

/* ========== EXPERIENCIA INCLUYE ========== */
.experiencia-section {
    margin: 3rem 0 2rem;
    text-align: center;
}

.experiencia-title {
    font-family: var(--font-subtitle);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.experiencia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.experiencia-icon-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #d9783c;
    background: rgba(217, 120, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 1px rgba(45, 204, 53, 0.2),
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(217, 120, 60, 0.34);
    transition: all 0.3s ease;
}

.experiencia-icon-wrap i {
    font-size: 2.45rem;
    color: var(--color-orange);
    filter: drop-shadow(0 0 10px rgba(217, 120, 60, 0.36));
    transition: transform 0.3s ease;
}

.experiencia-item:hover .experiencia-icon-wrap {
    border-color: var(--color-gold);
    background: rgba(45, 204, 53, 0.12);
}

.experiencia-item:hover .experiencia-icon-wrap i {
    transform: scale(1.15);
}

.experiencia-item span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.4;
    text-align: center;
    max-width: 120px;
}

@media (max-width: 600px) {
    .experiencia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .experiencia-icon-wrap {
        width: 90px;
        height: 90px;
    }

    .experiencia-icon-wrap i {
        font-size: 1.8rem;
    }
}
