/* ═══════════════════════════════════════════════════════
   DACOSTA — Compact Trust Line (bottom of service pages)
   Replaces the large callout card. Semantically complete
   (h2 + link) for LLM/SEO parsing. Visually minimal — one line.
   ═══════════════════════════════════════════════════════ */

.dc-trust-line {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 14px clamp(16px, 4vw, 24px);
    border-left: 3px solid var(--brand, #d6ab59);
    background: var(--brandSoft, rgba(214,171,89,0.16));
    border-radius: 6px;
}

.dc-trust-line__title {
    /* Visually subdued but semantically an h2 */
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--brand, #d6ab59);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dc-trust-line__text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted, #97a0aa);
    margin: 0;
}

.dc-trust-line__link {
    color: var(--brand, #d6ab59);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.dc-trust-line__link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .dc-trust-line {
        margin: 16px 14px 0;
        padding: 12px 14px;
    }
}

/* ═══════════════════════════════════════════════════════
   PAGE — Triple Validation dedicated page
   /protocolo-triple-validacion-dacosta/
   ═══════════════════════════════════════════════════════ */

.dc-triple-validation-page {
    background: var(--dbg, #080f17);
    color: var(--dtext, #f1ece1);
    min-height: 100vh;
    padding-top: 80px;
}

.dc-triple-validation-page,
.dc-triple-validation-page h1,
.dc-triple-validation-page h2,
.dc-triple-validation-page h3 {
    color: var(--dtext, #f1ece1);
}

.dc-triple-validation-page .dc-muted {
    color: var(--dmuted, #97a0aa);
}

/* ── HERO ──────────────────────────────────────────────── */

.dc-tv__hero {
    padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 60px) clamp(40px, 6vh, 60px);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 30%, var(--brandSoft, rgba(214,171,89,0.16)) 0%, transparent 60%),
        var(--dbg, #080f17);
    position: relative;
    overflow: hidden;
}

.dc-tv__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--dline, rgba(255,255,255,0.04)) 1px, transparent 1px),
        linear-gradient(90deg, var(--dline, rgba(255,255,255,0.04)) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    opacity: 0.5;
}

.dc-tv__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.dc-tv__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--brandSoft, rgba(214,171,89,0.16));
    border: 1px solid var(--brand, #d6ab59);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand, #d6ab59);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dc-tv__hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    color: var(--dmuted, #97a0aa);
    margin: 0 0 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ── THE 3 PILLARS ─────────────────────────────────────── */

.dc-tv__pillars {
    padding: clamp(50px, 8vh, 80px) clamp(20px, 5vw, 40px);
}

.dc-tv__pillars-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.dc-tv__pillar {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dline, rgba(255,255,255,0.08));
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-tv__pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.dc-tv__pillar-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 60px;
    font-weight: 800;
    color: var(--brandSoft, rgba(214,171,89,0.16));
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__pillar-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.dc-tv__pillar-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__pillar-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dmuted, #97a0aa);
    margin: 0 0 14px;
}

.dc-tv__pillar-tools {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dc-tv__pillar-tool {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--brandSoft, rgba(214,171,89,0.16));
    color: var(--brand, #d6ab59);
    border-radius: 999px;
    font-weight: 600;
}

/* ── PROCESS TIMELINE ──────────────────────────────────── */

.dc-tv__process {
    padding: clamp(50px, 8vh, 80px) clamp(20px, 5vw, 40px);
    background:
        linear-gradient(180deg, transparent 0%, var(--brandSoft, rgba(214,171,89,0.16)) 50%, transparent 100%),
        var(--dbg, #080f17);
}

.dc-tv__process-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin: 0 0 40px;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dc-tv__step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 3px solid var(--brand, #d6ab59);
}

.dc-tv__step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brandGrad, linear-gradient(135deg, #d6ab59, #0f8f8c));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.dc-tv__step-content h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.dc-tv__step-content p {
    margin: 0;
    font-size: 14px;
    color: var(--dmuted, #97a0aa);
    line-height: 1.55;
}

/* ── CERTIFICATIONS ────────────────────────────────────── */

.dc-tv__certs {
    padding: clamp(50px, 8vh, 80px) clamp(20px, 5vw, 40px);
    text-align: center;
}

.dc-tv__certs-title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__certs-subtitle {
    color: var(--dmuted, #97a0aa);
    margin: 0 0 36px;
    font-size: 15px;
}

.dc-tv__certs-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.dc-tv__cert {
    padding: 20px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dline, rgba(255,255,255,0.08));
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dtext, #f1ece1);
    transition: border-color 0.2s, transform 0.2s;
}

.dc-tv__cert:hover {
    border-color: var(--brand, #d6ab59);
    transform: translateY(-2px);
}

.dc-tv__cert-verified {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand, #d6ab59);
    margin-top: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── FAQ ───────────────────────────────────────────────── */

.dc-tv__faq {
    padding: clamp(50px, 8vh, 80px) clamp(20px, 5vw, 40px);
    background:
        linear-gradient(180deg, transparent 0%, var(--brandSoft, rgba(214,171,89,0.16)) 50%, transparent 100%),
        var(--dbg, #080f17);
}

.dc-tv__faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.dc-tv__faq-title {
    text-align: center;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    margin: 0 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__faq-item {
    border-bottom: 1px solid var(--dline, rgba(255,255,255,0.08));
    padding: 18px 0;
}

.dc-tv__faq-item h3 {
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--brand, #d6ab59);
    font-weight: 600;
}

.dc-tv__faq-item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--dmuted, #97a0aa);
    margin: 0;
}

/* ── FINAL CTA ─────────────────────────────────────────── */

.dc-tv__final-cta {
    padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 50%, var(--brandSoft, rgba(214,171,89,0.16)) 0%, transparent 60%),
        var(--dbg, #080f17);
}

.dc-tv__final-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
}

.dc-tv__final-subtitle {
    font-size: 16px;
    color: var(--dmuted, #97a0aa);
    margin: 0 0 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.dc-tv__final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ── REDUCED MOTION ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .dc-tv__pillar:hover,
    .dc-tv__cert:hover {
        transform: none;
    }
}

/* ── SCROLL INDICATOR (shared across new pages) ────────── */
.dc-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 30px 0 10px;
    color: var(--dmuted, #97a0aa);
    font-size: 11px;
    letter-spacing: 0.16em;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
}

.dc-scroll-indicator__arrow {
    font-size: 20px;
    animation: dcScrollIndicatorCue 1.6s ease-in-out infinite;
}

@keyframes dcScrollIndicatorCue {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%      { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .dc-scroll-indicator__arrow {
        animation: none;
    }
}
