/* ============================================================
   PROMEYZA — index.css  (section-level styles for new landing page)
   ============================================================ */

/* -- Shared helpers ------------------------------------------------ */
.section-subtitle {
    font-size: 16px;
    color: #5a4e72;
    margin-bottom: 30px;
    text-align: center;
}

/* ================================================================
   QUIÉNES SOMOS
   ================================================================ */

/* global icon helper for cards */
.card-icon {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

#quienes-somos {
    background: var(--color-bg-light);
}
#quienes-somos .qs-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}
#quienes-somos .qs-text {
    flex: 1 1 320px;
    max-width: 520px;
    text-align: center;
}
#quienes-somos .qs-text h1 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-main);
    margin-bottom: 20px;
}
#quienes-somos .qs-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a4e72;
    margin-bottom: 16px;
}
#quienes-somos .qs-img-wrapper {
    flex: 0 1 360px;
    max-width: 360px;
}
#quienes-somos .qs-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
#quienes-somos .qs-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}
#quienes-somos .qs-card {
    background: white;
    padding: 24px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
}
#quienes-somos .qs-card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
#quienes-somos .qs-card h3 {
    font-size: 20px;
    color: var(--color-main);
    margin-bottom: 8px;
}

/* ================================================================
   TALLERES
   ================================================================ */
#talleres h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-main);
    text-align: center;
    margin-bottom: 8px;
}
#talleres .section-subtitle {
    margin-bottom: 36px;
}
#talleres .talleres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.taller-card {
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 24px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--ease), box-shadow var(--ease);
}
.taller-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.taller-card .card-icon {
    font-size: 36px;
    text-align: center;
}
.taller-card h3 {
    font-size: 20px;
    color: var(--color-main);
}
.taller-card .taller-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-purple-mid);
}
.taller-card .taller-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.taller-card .taller-details li {
    font-size: 14px;
    margin-bottom: 4px;
}
.taller-card .taller-btn {
    margin-top: auto;
    text-align: center;
}
.taller-card .taller-btn-secondary {
    background: transparent;
    color: var(--color-main);
    border: 2px solid var(--color-main);
    transition: all var(--ease);
}
.taller-card .taller-btn-secondary:hover {
    background: var(--color-main);
    color: white;
}
.taller-card.taller-featured {
    border: 3px solid var(--color-accent);
}
.taller-card .taller-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--color-accent);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}
.taller-card .taller-free {
    font-weight: 600;
    color: var(--color-accent-dark);
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 12px;
}
.cal-month {
    background: #f7f3ff;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
}
.cal-month.active {
    background: var(--color-accent);
    color: white;
}
.cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    display: inline-block;
    margin-right: 6px;
}
.cal-dot.upcoming {
    background: rgba(0,0,0,0.2);
}

/* Talleres Estelares */
.talleres-estelares {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.taller-estelar {
    background: linear-gradient(135deg, #f7f3ff 0%, #faf9fc 100%);
    padding: 16px 14px;
    border-radius: 12px;
    border-left: 4px solid var(--color-purple-mid);
    transition: all var(--ease);
}
.taller-estelar:hover {
    background: linear-gradient(135deg, #f0e9fe 0%, #f5f2fb 100%);
    border-left-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(147, 114, 190, 0.15);
}
.taller-estelar h4 {
    font-size: 14px;
    color: var(--color-main);
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.4;
}
.taller-mes {
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.taller-objetivo {
    font-size: 13px;
    color: #5a4e72;
    line-height: 1.5;
    margin: 0;
}
.taller-objetivo strong {
    color: var(--color-main);
    font-weight: 600;
}

/* Sección de Precios */
.talleres-precios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    border-top: 2px solid rgba(59, 41, 93, 0.1);
}
.precio-item {
    background: linear-gradient(135deg, #f8f6fc 0%, #faf9fc 100%);
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    border-left: 4px solid var(--color-accent);
    transition: all var(--ease);
}
.precio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-purple-mid);
}
.precio-item h4 {
    font-size: 16px;
    color: var(--color-main);
    margin-bottom: 12px;
    font-weight: 600;
}
.precio-valor {
    font-size: 28px;
    color: var(--color-purple-mid);
    font-weight: 700;
    margin: 8px 0;
}
.precio-desc {
    font-size: 14px;
    color: #5a4e72;
    line-height: 1.6;
    margin: 0;
}
.precio-item.destacado {
    border-left-color: var(--color-main);
    background: linear-gradient(135deg, #f0e9fe 0%, #f5f2fb 100%);
}
.precio-item.destacado .precio-valor {
    color: var(--color-main);
}
.precio-item.oferta-exclusiva {
    grid-column: 1 / -1;
    border-left-color: #25D366;
    background: linear-gradient(135deg, #f0fef4 0%, #f5fcfa 100%);
}
.precio-item.oferta-exclusiva h4 {
    color: #25D366;
}
.precio-item.oferta-exclusiva .precio-valor {
    color: #25D366;
}

/* ================================================================
   AROMATERAPIA
   ================================================================ */
#aromaterapia .split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0 20px; /* small horizontal padding so content never touches edge */
}
#aromaterapia .split-text {
    flex: 1 1 320px;
    max-width: 520px;
    text-align: center;
}
#aromaterapia .split-text h2 {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--color-main);
}
#aromaterapia .aroma-product-card {
    background: white;
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    flex: 0 1 360px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#aromaterapia .aroma-img-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}
#aromaterapia .aroma-img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    border-radius: 14px;
    object-fit: cover;
}
#aromaterapia .aroma-product-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    padding: 6px;
    font-size: 28px;
    line-height: 1;
}

.aroma-product-icon {
    font-size: 40px;
    margin-bottom: 12px;
    text-align: center;
}
.aroma-desc {
    font-size: 15px;
    margin-bottom: 14px;
    color: #5a4e72;
}
.aroma-sizes {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
}
.aroma-size {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.size-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    margin-right: 6px;
}
.aroma-btn {
    display: block;
    text-align: center;
}

/* ================================================================
   REGALOS CORPORATIVOS
   ================================================================ */
#regalos {
    background: linear-gradient(135deg, var(--color-purple-mid) 0%, var(--color-accent) 100%);
    color: white;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}
#regalos::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: rotate(25deg);
    pointer-events: none;
}#regalos h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: white;
    text-align: center;
    margin-bottom: 12px;
}
#regalos .section-subtitle {
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}
#regalos .regalos-content {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: left;
    background: rgba(255,255,255,0.92);
    color: var(--color-text-dark);
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}
#regalos h3 {
    font-size: 20px;
    color: var(--color-main);
    margin-bottom: 12px;
}
#regalos .regalos-proceso {
    list-style: decimal inside;
    margin-bottom: 16px;
}
#regalos .regalos-proceso li {
    margin-bottom: 8px;
}
#regalos .regalos-note {
    font-style: italic;
    margin-bottom: 18px;
}
#regalos .regalos-list {
    list-style: none;
    margin-bottom: 24px;
}
#regalos .regalos-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
}
#regalos .regalos-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-dark);
    font-weight: 700;
}
.cta-center {
    text-align: center;
    margin-top: 30px;
}
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 18px 42px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: background var(--ease), box-shadow var(--ease);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ================================================================
   FIRMAS / APOYO
   ================================================================ */
#firmas {
    max-width: 640px;
    margin: 0 auto 24px;
    text-align: center;
}
#firmas h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-main);
    line-height: 1.5;
}
#sum-firmas {
    background: linear-gradient(135deg, var(--color-main), var(--color-purple-mid));
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 22px;
    display: inline-block;
}
#formulario {
    max-width: 440px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(148, 114, 190, 0.13);
    text-align: center;
}
#formulario p {
    font-size: 16px;
    color: #5a4e72;
    margin-bottom: 22px;
}
#formulario form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#formulario button[type="submit"] {
    width: 100%;
    margin-top: 6px;
}

/* ================================================================
   CONTACTO
   ================================================================ */
#contact {
    padding: 80px 40px;
    background: linear-gradient(160deg, var(--color-main) 0%, #2e1f50 100%);
    color: white;
}
#contact .contact-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
#contact form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#contact .input,
#contact input,
#contact textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    background: rgba(255,255,255,0.15);
    color: white;
}
#contact button[type="submit"] {
    background: var(--color-button);
    color: white;
    padding: 14px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--ease);
}
#contact button[type="submit"]:hover {
    background: var(--color-button-hover);
}

/* ================================================================
   VALORES Y FUNDADORA
   ================================================================ */
#valores {
    background: linear-gradient(135deg, #f8f6fc 0%, #faf9fc 100%);
}
#valores h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-main);
    text-align: center;
    margin-bottom: 40px;
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.valor-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease);
}
.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.valor-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.valor-card h3 {
    font-size: 20px;
    color: var(--color-main);
    margin-bottom: 12px;
    font-weight: 600;
}
.valor-card p {
    font-size: 15px;
    color: #5a4e72;
    line-height: 1.7;
}

.valores-base {
    text-align: center;
    padding: 28px 20px;
    margin-bottom: 50px;
    font-size: 16px;
    color: #5a4e72;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.valores-base p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-main);
}
.valores-base strong {
    color: var(--color-main);
    font-weight: 600;
}

.fundadora-section h3 {
    font-size: 26px;
    color: var(--color-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}
.fundadora-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.fundadora-text {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}
.fundadora-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a4e72;
}
.fundadora-text strong {
    color: var(--color-main);
    font-weight: 600;
}
.fundadora-img-wrapper {
    flex: 0 1 280px;
    max-width: 280px;
}
.fundadora-img-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}
.fundadora-quote {
    font-size: 14px;
    font-style: italic;
    color: var(--color-purple-mid);
    text-align: center;
    line-height: 1.7;
    padding: 0 12px;
}

/* ================================================================
   RESPONSIVE TWEAKS
   ================================================================ */
@media screen and (max-width: 800px) {
    #quienes-somos .qs-top {
        flex-direction: column;
        text-align: center;
    }
    #quienes-somos .qs-top img {
        width: 80%;
        max-width: 420px;
    }
    #talleres .talleres-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    #aromaterapia .split-content {
        flex-direction: column;
    }
    #regalos .cards-grid {
        grid-template-columns: 1fr;
    }
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fundadora-content {
        flex-direction: column;
        gap: 30px;
    }
    .fundadora-img-wrapper {
        max-width: 100%;
    }
    .fundadora-img-wrapper img {
        height: 280px;
    }
    .talleres-precios {
        grid-template-columns: 1fr;
    }
    .precio-item.oferta-exclusiva {
        grid-column: 1;
    }
    section {
        padding: 60px 20px;
    }
}