/* ═══════════════════════════════════════════════════════
   Depurarte – Secciones Adicionales de la Home
   (Manifiesto, Reseñas 5*, FAQ Accordion, Newsletter)
   ═══════════════════════════════════════════════════════ */

:root {
    --dp-violeta: #340E49;
    --dp-purpura-subtle: #461C4F;
    --dp-oro: #D0A761;
    --dp-oro-claro: #EAD095;
    --dp-marfil: #FCFAF4;
    --dp-body: #2A1806;
    --dp-radius: 20px;
    --dp-radius-sm: 12px;
    --dp-font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --dp-font-body: 'Montserrat', sans-serif;
}

/* ═══════════════════════════════════════════════════════
   1. MANIFIESTO & ARTESANÍA DEPURARTE
   ═══════════════════════════════════════════════════════ */
.depurarte-manifesto-section {
    background: #FFFFFF;
    padding: 96px 0;
    border-top: 1px solid rgba(208, 167, 97, 0.18);
    border-bottom: 1px solid rgba(208, 167, 97, 0.18);
    position: relative;
    overflow: hidden;
}

.depurarte-manifesto-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.depurarte-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.depurarte-manifesto-media {
    position: relative;
}

.depurarte-manifesto-img-wrapper {
    position: relative;
    border-radius: var(--dp-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(52, 14, 73, 0.12);
    border: 1px solid rgba(208, 167, 97, 0.25);
}

.depurarte-manifesto-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.depurarte-manifesto-kicker {
    font-family: var(--dp-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dp-oro);
    margin-bottom: 16px;
}

.depurarte-manifesto-title {
    font-family: var(--dp-font-serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--dp-violeta);
    line-height: 1.2;
    margin: 0 0 20px;
}

.depurarte-manifesto-text {
    font-family: var(--dp-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(42, 24, 6, 0.78);
    margin: 0 0 28px;
}

.depurarte-manifesto-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(208, 167, 97, 0.2);
}

.depurarte-manifesto-feature-item {
    text-align: left;
}

.depurarte-manifesto-feature-item h4 {
    font-family: var(--dp-font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 0 0 4px;
}

.depurarte-manifesto-feature-item p {
    font-family: var(--dp-font-body);
    font-size: 12px;
    color: rgba(42, 24, 6, 0.55);
    margin: 0;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   2. PRUEBA SOCIAL / RESEÑAS DE CLIENTES
   ═══════════════════════════════════════════════════════ */
.depurarte-reviews-section {
    background: var(--dp-marfil);
    padding: 88px 0;
}

.depurarte-reviews-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.depurarte-reviews-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.depurarte-reviews-rating-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(208, 167, 97, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--dp-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin-bottom: 16px;
}

.depurarte-reviews-stars {
    color: #F1C40F;
    font-size: 14px;
    letter-spacing: 2px;
}

.depurarte-reviews-title {
    font-family: var(--dp-font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 0 0 12px;
}

.depurarte-reviews-subtitle {
    font-family: var(--dp-font-body);
    font-size: 15px;
    color: rgba(42, 24, 6, 0.6);
    margin: 0;
}

.depurarte-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.depurarte-review-card {
    background: #FFFFFF;
    border: 1px solid rgba(208, 167, 97, 0.22);
    border-radius: var(--dp-radius-sm);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(52, 14, 73, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.depurarte-review-card:hover {
    transform: translateY(-4px);
    border-color: var(--dp-oro);
}

.depurarte-review-stars {
    color: #F1C40F;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.depurarte-review-text {
    font-family: var(--dp-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(42, 24, 6, 0.82);
    font-style: italic;
    margin: 0 0 24px;
}

.depurarte-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(208, 167, 97, 0.15);
    padding-top: 16px;
}

.depurarte-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dp-marfil);
    color: var(--dp-violeta);
    font-family: var(--dp-font-serif);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(208, 167, 97, 0.3);
}

.depurarte-author-info h4 {
    font-family: var(--dp-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--dp-body);
    margin: 0 0 2px;
}

.depurarte-author-badge {
    font-family: var(--dp-font-body);
    font-size: 11px;
    color: #27AE60;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   3. PREGUNTAS FRECUENTES (FAQ ACCORDION)
   ═══════════════════════════════════════════════════════ */
.depurarte-faq-section {
    background: #FFFFFF;
    padding: 96px 0;
}

.depurarte-faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.depurarte-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.depurarte-faq-title {
    font-family: var(--dp-font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 0 0 12px;
}

.depurarte-faq-subtitle {
    font-family: var(--dp-font-body);
    font-size: 15px;
    color: rgba(42, 24, 6, 0.6);
    margin: 0;
}

.depurarte-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.depurarte-faq-item {
    background: var(--dp-marfil);
    border: 1px solid rgba(208, 167, 97, 0.25);
    border-radius: var(--dp-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.depurarte-faq-item.is-open {
    border-color: var(--dp-oro);
    background: #FFFFFF;
    box-shadow: 0 6px 20px rgba(52, 14, 73, 0.04);
}

.depurarte-faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--dp-font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--dp-violeta);
}

.depurarte-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(208, 167, 97, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--dp-violeta);
    transition: transform 0.25s ease;
}

.depurarte-faq-item.is-open .depurarte-faq-icon {
    transform: rotate(45deg);
    background: var(--dp-violeta);
    color: #FFFFFF;
}

.depurarte-faq-panel {
    padding: 0 28px 22px;
    display: none;
    font-family: var(--dp-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(42, 24, 6, 0.78);
}

.depurarte-faq-item.is-open .depurarte-faq-panel {
    display: block;
}

/* ═══════════════════════════════════════════════════════
   4. CÍRCULO DEPURARTE (NEWSLETTER + 10% DTO)
   ═══════════════════════════════════════════════════════ */
.depurarte-newsletter-section {
    background: var(--dp-violeta);
    color: #FFFFFF;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.depurarte-newsletter-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(208, 167, 97, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.depurarte-newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.depurarte-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(208, 167, 97, 0.15);
    border: 1px solid rgba(208, 167, 97, 0.35);
    border-radius: 20px;
    font-family: var(--dp-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dp-oro-claro);
    margin-bottom: 20px;
}

.depurarte-newsletter-title {
    font-family: var(--dp-font-serif);
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 14px;
}

.depurarte-newsletter-text {
    font-family: var(--dp-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.depurarte-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.depurarte-newsletter-input {
    flex: 1;
    padding: 16px 20px;
    font-family: var(--dp-font-body);
    font-size: 14px;
    color: var(--dp-body);
    background: #FFFFFF;
    border: 1px solid rgba(208, 167, 97, 0.3);
    border-radius: var(--dp-radius-sm);
    outline: none;
}

.depurarte-newsletter-submit {
    padding: 16px 32px;
    font-family: var(--dp-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #12071B;
    background: var(--dp-oro);
    border: none;
    border-radius: var(--dp-radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

.depurarte-newsletter-submit:hover {
    background: var(--dp-oro-claro);
    transform: translateY(-1px);
}

.depurarte-newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 14px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .depurarte-manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .depurarte-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .depurarte-newsletter-form {
        flex-direction: column;
    }

    .depurarte-newsletter-submit {
        width: 100%;
    }
}
