/*
 * CSS extraído de patterns/digital-latino-page-completa.php
 * Generado en S3 (2026-05-13). Carga condicional via functions.php (is_page).
 */

/* ===========================================
   DIGITAL LATINO - ESTILOS UNICOS
   Prefijo: dl- (Digital Latino)
   =========================================== */

:root {
    --dl-yellow: #ffe10c;
    --dl-orange: #ff8a00;
    --dl-purple: var(--wp--preset--color--primary);
    --dl-pink: var(--wp--preset--color--secondary);
    --dl-dark: #0a0a0a;
    --dl-card-bg: rgba(255,255,255,0.03);
    --dl-border: rgba(255,255,255,0.08);
    --dl-text: rgba(255,255,255,0.7);
}

.dl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HERO 2-COL (mockup + trust logos) ============ */
.dl-hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.dl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 225, 12, 0.1) 0%, transparent 40%);
    animation: dl-mesh 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes dl-mesh {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 5%) rotate(5deg); }
}

.dl-hero-content {
    position: relative;
    z-index: 1;
}

.dl-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.dl-hero-overline {
    font-size: 14px;
    font-weight: 700;
    color: var(--dl-yellow);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dl-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.dl-hero-title span {
    background: linear-gradient(135deg, var(--dl-yellow) 0%, var(--dl-orange) 50%, var(--dl-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dl-hero-subtitle {
    font-size: 19px;
    color: var(--dl-text);
    max-width: 540px;
    margin: 0 0 36px;
    line-height: 1.6;
}

.dl-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.dl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--dl-yellow) 0%, var(--dl-orange) 100%);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 225, 12, 0.3);
    color: #000;
}

.dl-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.dl-btn-secondary:hover {
    border-color: var(--dl-yellow);
    color: var(--dl-yellow);
}

/* trust logos row */
.dl-hero-trust-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 16px;
    letter-spacing: 0.3px;
}

.dl-hero-trust-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dl-hero-trust-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 96px;
    padding: 0 14px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dl-hero-trust-logo:hover {
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,225,12,0.45);
    background: rgba(255,225,12,0.05);
}

/* mockup - right column */
.dl-hero-mockup {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(255,225,12,0.08));
    animation: dl-mockup-float 6s ease-in-out infinite;
}

.dl-hero-mockup img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

@keyframes dl-mockup-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .dl-hero-mockup { animation: none; }
}

/* ============ SECTION HEADERS ============ */
.dl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dl-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 225, 12, 0.1);
    border: 1px solid rgba(255, 225, 12, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--dl-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dl-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.dl-section-desc {
    font-size: 18px;
    color: var(--dl-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ PROBLEMA SECTION ============ */
.dl-problema-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.dl-problema-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dl-problema-card {
    background: var(--dl-card-bg);
    border: 1px solid var(--dl-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dl-problema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dl-problema-card:hover::before {
    opacity: 1;
}

.dl-problema-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
}

.dl-problema-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,225,12,0.15) 0%, rgba(255,138,0,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.dl-problema-card:hover .dl-problema-icon {
    background: linear-gradient(135deg, var(--dl-yellow) 0%, var(--dl-orange) 100%);
}

.dl-problema-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--dl-yellow);
    transition: stroke 0.3s ease;
}

.dl-problema-card:hover .dl-problema-icon svg {
    stroke: #000;
}

.dl-problema-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.dl-problema-desc {
    font-size: 15px;
    color: var(--dl-text);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.dl-problema-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--dl-border);
    position: relative;
    z-index: 1;
}

.dl-problema-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--dl-yellow);
}

.dl-problema-solution {
    font-size: 14px;
    color: var(--dl-yellow);
    font-weight: 600;
}

/* ============ EJES SECTION ============ */
.dl-ejes-section {
    padding: 80px 0;
}

.dl-eje-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.dl-eje-block:last-child {
    margin-bottom: 0;
}

.dl-eje-block.reverse {
    direction: rtl;
}

.dl-eje-block.reverse > * {
    direction: ltr;
}

.dl-eje-visual {
    position: relative;
}

.dl-eje-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--dl-border);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-eje-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dl-eje-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}

.dl-eje-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: rgba(255,255,255,0.3);
}

.dl-eje-placeholder span {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
}

.dl-eje-content {
    padding: 20px 0;
}

.dl-eje-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--dl-purple);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.dl-eje-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.dl-eje-desc {
    font-size: 17px;
    color: var(--dl-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.dl-eje-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dl-eje-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dl-eje-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--dl-yellow), var(--dl-orange));
    border-radius: 50%;
    flex-shrink: 0;
}

.dl-eje-platforms {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.dl-eje-platform-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ============ DIFERENCIADORES SECTION ============ */
.dl-diff-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(236, 72, 153, 0.03) 50%, transparent 100%);
}

.dl-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dl-diff-card {
    background: var(--dl-card-bg);
    border: 1px solid var(--dl-border);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dl-diff-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dl-purple), var(--dl-pink), var(--dl-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dl-diff-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.15);
}

.dl-diff-card:hover::before {
    opacity: 1;
}

.dl-diff-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.dl-diff-card:hover .dl-diff-icon {
    background: linear-gradient(135deg, var(--dl-purple), var(--dl-pink));
    transform: scale(1.1) rotate(-5deg);
}

.dl-diff-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--dl-purple);
    transition: stroke 0.3s ease;
}

.dl-diff-card:hover .dl-diff-icon svg {
    stroke: #fff;
}

.dl-diff-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.dl-diff-desc {
    font-size: 15px;
    color: var(--dl-text);
    line-height: 1.7;
}

/* PRECIOS CSS OCULTO
/* ============ PRECIOS SECTION ============ */
.dl-pricing-section {
    padding: 80px 0;
}

.dl-pricing-label {
    text-align: center;
    margin-bottom: 32px;
}

.dl-pricing-label h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.dl-pricing-label p {
    font-size: 16px;
    color: var(--dl-text);
}

.dl-pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.dl-pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dl-pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dl-border), rgba(139,92,246,0.3), var(--dl-border), transparent);
    margin: 60px 0;
}

.dl-pricing-card {
    background: var(--dl-card-bg);
    border: 1px solid var(--dl-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dl-pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.04) 100%);
}

.dl-pricing-card.featured::after {
    content: "Popular";
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--dl-purple), var(--dl-pink));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dl-pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
}

.dl-pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.dl-pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.1;
}

.dl-pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--dl-text);
}

.dl-pricing-note {
    font-size: 13px;
    color: var(--dl-text);
    margin-bottom: 24px;
}

.dl-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.dl-pricing-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dl-pricing-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--dl-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.dl-pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dl-pricing-cta:hover {
    border-color: var(--dl-yellow);
    color: var(--dl-yellow);
    box-shadow: 0 4px 20px rgba(255,225,12,0.15);
}

.dl-pricing-card.featured .dl-pricing-cta {
    background: linear-gradient(135deg, var(--dl-yellow) 0%, var(--dl-orange) 100%);
    border-color: transparent;
    color: #000;
}

.dl-pricing-card.featured .dl-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,225,12,0.3);
}

.dl-pricing-discount {
    display: inline-block;
    background: rgba(236,72,153,0.15);
    color: var(--dl-pink);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}
PRECIOS CSS OCULTO */

/* ============ BUYERS SECTION ============ */
.dl-buyers-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%, rgba(236, 72, 153, 0.03) 100%);
}

.dl-buyers-header {
    text-align: center;
    margin-bottom: 60px;
}

.dl-buyers-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--dl-purple);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.dl-buyers-subtitle {
    font-size: 18px;
    color: var(--dl-text);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.dl-buyers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dl-buyer-card {
    background: var(--dl-card-bg);
    border: 1px solid var(--dl-border);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dl-buyer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dl-purple), var(--dl-pink), var(--dl-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dl-buyer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.dl-buyer-card:hover::before {
    opacity: 1;
}

.dl-buyer-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dl-buyer-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--dl-purple);
}

.dl-buyer-card:hover .dl-buyer-icon {
    background: linear-gradient(135deg, var(--dl-purple), var(--dl-pink));
    transform: scale(1.1) rotate(-5deg);
}

.dl-buyer-card:hover .dl-buyer-icon svg {
    stroke: #fff;
}

.dl-buyer-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.dl-buyer-desc {
    font-size: 14px;
    color: var(--dl-text);
    line-height: 1.6;
}

/* ============ CTA FINAL ============ */
.dl-cta-section {
    padding: 80px 0 100px;
}

.dl-cta-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(255, 225, 12, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 32px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dl-cta-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background:
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 30%);
    animation: dl-cta-bg 15s linear infinite;
}

@keyframes dl-cta-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dl-cta-content {
    position: relative;
    z-index: 1;
}

.dl-cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.dl-cta-desc {
    font-size: 18px;
    color: var(--dl-text);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.dl-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.dl-cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dl-cta-trust span {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dl-cta-trust span svg {
    width: 14px;
    height: 14px;
    stroke: var(--dl-yellow);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .dl-problema-grid {
        grid-template-columns: 1fr;
    }
    .dl-eje-block,
    .dl-eje-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
    .dl-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* PRECIOS CSS OCULTO
    .dl-pricing-grid-3 {
        grid-template-columns: 1fr;
    }
    .dl-pricing-grid-2 {
        grid-template-columns: 1fr;
    }
    PRECIOS CSS OCULTO */
    .dl-buyers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .dl-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .dl-hero-mockup {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dl-hero-title {
        font-size: 42px;
    }
    .dl-hero-subtitle {
        font-size: 17px;
    }
    .dl-section-title {
        font-size: 32px;
    }
    .dl-diff-grid {
        grid-template-columns: 1fr;
    }
    .dl-cta-box {
        padding: 48px 24px;
    }
    .dl-cta-title {
        font-size: 28px;
    }
    .dl-eje-features {
        grid-template-columns: 1fr;
    }
    .dl-eje-title {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .dl-hero {
        padding: 60px 0;
    }
    .dl-hero-overline {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .dl-hero-title {
        font-size: 36px;
    }
    .dl-hero-buttons,
    .dl-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .dl-hero-trust-logo {
        min-width: 0;
        flex: 1 1 calc(50% - 7px);
    }
    .dl-buyers-grid {
        grid-template-columns: 1fr;
    }
    .dl-buyers-section {
        padding: 60px 0;
    }
    .dl-trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    /* PRECIOS CSS OCULTO
    .dl-pricing-card {
        padding: 32px 24px;
    }
    PRECIOS CSS OCULTO */
}

/* Ocultar montos de precio */
.dl-pricing-price { display: none !important; }
.dl-pricing-note { display: none !important; }
.dl-pricing-discount { display: none !important; }

