/* ═══════════════════════════════════════════════════════
   Depurarte – Página Estándar / Legal / Contacto
   ═══════════════════════════════════════════════════════ */

:root {
    --dp-violeta: #340E49;
    --dp-oro: #D0A761;
    --dp-marfil: #FCFAF4;
    --dp-body: #2A1806;
    --dp-radius: 18px;
    --dp-radius-sm: 12px;
    --dp-font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --dp-font-body: 'Montserrat', sans-serif;
}

/* ── Hero Section (Left-aligned + Ornaments) ── */
.depurarte-page-hero {
    background: linear-gradient(135deg, #FCFAF4 0%, #F5EFE0 100%);
    border-bottom: 1px solid rgba(208, 167, 97, 0.22);
    padding: 48px 0 52px;
    margin-bottom: 56px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.depurarte-page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(208, 167, 97, 0.14) 0%, rgba(252, 250, 244, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.depurarte-page-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.depurarte-page-hero-content {
    max-width: 760px;
    text-align: left;
}

/* Badge Tag */
.depurarte-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(208, 167, 97, 0.12);
    border: 1px solid rgba(208, 167, 97, 0.35);
    border-radius: 20px;
    font-family: var(--dp-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dp-violeta);
    margin-bottom: 16px;
}

.depurarte-page-hero-badge .sparkle {
    color: var(--dp-oro);
    font-size: 9px;
}

/* Breadcrumbs */
.depurarte-page-breadcrumbs {
    font-family: var(--dp-font-body);
    font-size: 13px;
    margin-bottom: 14px;
    color: rgba(42, 24, 6, 0.45);
    text-align: left;
}

.depurarte-page-breadcrumbs a {
    color: rgba(42, 24, 6, 0.45);
    text-decoration: none;
    transition: color 0.16s ease;
}

.depurarte-page-breadcrumbs a:hover {
    color: var(--dp-oro);
}

.depurarte-page-crumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* H1 Title */
.depurarte-page-title {
    font-family: var(--dp-font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 0 0 12px;
    line-height: 1.2;
    text-align: left;
}

/* Subtitle / Excerpt */
.depurarte-page-subtitle {
    font-family: var(--dp-font-body);
    font-size: 15px;
    color: rgba(42, 24, 6, 0.65);
    margin: 0;
    max-width: 68ch;
    line-height: 1.6;
    text-align: left;
}

/* Celestial SVG Ornament */
.depurarte-page-hero-ornament {
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease;
    animation: depurartePulseGlow 6s infinite alternate ease-in-out;
}

@keyframes depurartePulseGlow {
    0% { transform: scale(1) rotate(0deg); opacity: 0.75; }
    100% { transform: scale(1.06) rotate(6deg); opacity: 0.95; }
}

/* ── Main Content Container ── */
.depurarte-page-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
    font-family: var(--dp-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--dp-body);
}

/* Typography Inside Content */
.depurarte-page-content h2 {
    font-family: var(--dp-font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.depurarte-page-content h2:first-child {
    margin-top: 0;
}

.depurarte-page-content h3 {
    font-family: var(--dp-font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 32px 0 12px;
    line-height: 1.35;
}

.depurarte-page-content h4 {
    font-family: var(--dp-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dp-body);
    margin: 24px 0 8px;
    line-height: 1.4;
}

.depurarte-page-content p {
    margin: 0 0 20px;
    color: rgba(42, 24, 6, 0.82);
}

.depurarte-page-content a {
    color: var(--dp-oro);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.16s ease;
}

.depurarte-page-content a:hover {
    color: var(--dp-violeta);
}

.depurarte-page-content strong,
.depurarte-page-content b {
    color: var(--dp-body);
    font-weight: 600;
}

/* Lists */
.depurarte-page-content ul,
.depurarte-page-content ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.depurarte-page-content li {
    margin-bottom: 8px;
    color: rgba(42, 24, 6, 0.82);
}

/* Blockquotes */
.depurarte-page-content blockquote,
.depurarte-page-content .wp-block-quote {
    background: var(--dp-marfil);
    border-left: 3px solid var(--dp-oro);
    border-radius: 0 var(--dp-radius-sm) var(--dp-radius-sm) 0;
    padding: 20px 24px;
    margin: 32px 0;
    font-family: var(--dp-font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--dp-violeta);
    line-height: 1.6;
}

.depurarte-page-content blockquote cite,
.depurarte-page-content .wp-block-quote cite {
    display: block;
    font-family: var(--dp-font-body);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(42, 24, 6, 0.45);
    margin-top: 12px;
}

/* Tables */
.depurarte-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
}

.depurarte-page-content th {
    font-family: var(--dp-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(42, 24, 6, 0.5);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(208, 167, 97, 0.25);
    background: var(--dp-marfil);
}

.depurarte-page-content td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(208, 167, 97, 0.12);
    color: rgba(42, 24, 6, 0.8);
}

.depurarte-page-content tr:hover td {
    background: rgba(208, 167, 97, 0.04);
}

/* Forms (Contact Form 7 / Gutenberg Forms) */
.depurarte-page-content form input[type="text"],
.depurarte-page-content form input[type="email"],
.depurarte-page-content form input[type="tel"],
.depurarte-page-content form textarea,
.depurarte-page-content form select {
    width: 100%;
    padding: 12px 16px;
    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;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.depurarte-page-content form input:focus,
.depurarte-page-content form textarea:focus,
.depurarte-page-content form select:focus {
    border-color: var(--dp-oro);
    box-shadow: 0 0 0 3px rgba(208, 167, 97, 0.12);
}

.depurarte-page-content form label {
    font-family: var(--dp-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(42, 24, 6, 0.55);
    margin-bottom: 6px;
    display: block;
}

.depurarte-page-content form button[type="submit"],
.depurarte-page-content form input[type="submit"] {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--dp-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--dp-violeta);
    border: none;
    border-radius: var(--dp-radius-sm);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.depurarte-page-content form button[type="submit"]:hover,
.depurarte-page-content form input[type="submit"]:hover {
    background: #4A1D65;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   PÁGINA DE CONTACTO (Específico)
   ═══════════════════════════════════════════════════════ */

.depurarte-contact-main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 80px;
    font-family: var(--dp-font-body);
}

.depurarte-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: start;
}

.depurarte-contact-info-title,
.depurarte-contact-form-title {
    font-family: var(--dp-font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--dp-violeta);
    margin: 0 0 10px;
}

.depurarte-contact-info-text,
.depurarte-contact-form-subtitle {
    font-size: 15px;
    color: rgba(42, 24, 6, 0.7);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* Contact Cards */
.depurarte-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.depurarte-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(208, 167, 97, 0.22);
    border-radius: var(--dp-radius-sm);
    padding: 20px;
    transition: transform 0.16s ease, border-color 0.16s ease;
}

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

.depurarte-contact-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dp-marfil);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.depurarte-contact-card-body h3 {
    font-family: var(--dp-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--dp-body);
    margin: 0 0 4px;
}

.depurarte-contact-card-body p {
    font-size: 14px;
    color: rgba(42, 24, 6, 0.85);
    margin: 0 0 4px;
}

.depurarte-contact-card-body a {
    color: var(--dp-violeta);
    font-weight: 600;
    text-decoration: none;
}

.depurarte-contact-card-body a:hover {
    color: var(--dp-oro);
}

.depurarte-contact-card-note {
    font-size: 12px;
    color: rgba(42, 24, 6, 0.5);
    display: block;
}

.depurarte-contact-card-highlight {
    background: var(--dp-marfil);
    border-color: rgba(208, 167, 97, 0.35);
}

/* Contact Form Wrapper */
.depurarte-contact-form-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(208, 167, 97, 0.22);
    border-radius: var(--dp-radius);
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(52, 14, 73, 0.04);
}

.depurarte-form-row {
    margin-bottom: 20px;
}

.depurarte-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.depurarte-form-group label {
    font-family: var(--dp-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(42, 24, 6, 0.7);
    margin-bottom: 6px;
    display: block;
}

.depurarte-form-group label .required {
    color: #C0392B;
}

.depurarte-form-group input,
.depurarte-form-group select,
.depurarte-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--dp-font-body);
    font-size: 14px;
    color: var(--dp-body);
    background: #FAFAFA;
    border: 1px solid rgba(208, 167, 97, 0.3);
    border-radius: var(--dp-radius-sm);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.depurarte-form-group input:focus,
.depurarte-form-group select:focus,
.depurarte-form-group textarea:focus {
    background: #FFFFFF;
    border-color: var(--dp-oro);
    box-shadow: 0 0 0 3px rgba(208, 167, 97, 0.12);
}

.depurarte-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(42, 24, 6, 0.85);
    cursor: pointer;
    user-select: none;
    margin: 12px 0;
}

/* Accessible hidden input */
.depurarte-checkbox-label input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

/* Custom styled visible box */
.dp-checkbox-box {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid var(--dp-oro);
    border-radius: 4px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.dp-checkbox-box svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

/* Checked state */
.depurarte-checkbox-label input[type="checkbox"]:checked + .dp-checkbox-box {
    background: var(--dp-violeta);
    border-color: var(--dp-violeta);
}

.depurarte-checkbox-label input[type="checkbox"]:checked + .dp-checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

/* Focus state */
.depurarte-checkbox-label input[type="checkbox"]:focus + .dp-checkbox-box {
    box-shadow: 0 0 0 3px rgba(208, 167, 97, 0.3);
}

.dp-checkbox-text {
    line-height: 1.4;
}

.dp-checkbox-text a {
    color: var(--dp-oro);
    text-decoration: underline;
    font-weight: 500;
}

.depurarte-btn-contact-submit {
    width: 100%;
    padding: 16px 28px;
    font-family: var(--dp-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--dp-violeta);
    border: none;
    border-radius: var(--dp-radius-sm);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.depurarte-btn-contact-submit:hover {
    background: #4A1D65;
    transform: translateY(-1px);
}

.depurarte-btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.depurarte-contact-feedback {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--dp-radius-sm);
    font-size: 14px;
    line-height: 1.5;
}

.depurarte-contact-feedback.is-success {
    background: var(--dp-marfil);
    border: 1px solid var(--dp-oro);
    color: var(--dp-violeta);
    font-weight: 500;
}

.depurarte-contact-feedback.is-error {
    background: #FDF2F2;
    border: 1px solid #F8B4B4;
    color: #9B1C1C;
}

@media (max-width: 900px) {
    .depurarte-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .depurarte-contact-form-wrapper {
        padding: 24px 20px;
    }

    .depurarte-form-row-2col {
        grid-template-columns: 1fr;
    }
}
