.dcl {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #333;
    max-width: 100%;
    overflow-x: hidden;
}

/* HERO */
.dcl-hero {
    text-align: center;
    padding: 80px 24px 70px;
    background: linear-gradient(170deg, #f9f7f4 0%, #eef5f0 100%);
}

.dcl-tag {
    display: inline-block;
    background: #2d5c4f;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 20px;
    margin: 0 0 24px;
}

.dcl-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2d5c4f;
    line-height: 1.15;
    margin: 0 0 20px;
}

.dcl-hero-sub {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 32px;
}

/* BOTONES */
.dcl-btn {
    display: inline-block;
    background: #2d5c4f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.dcl-btn:hover {
    background: #234a3f;
    color: #fff;
}

.dcl-btn-lg {
    font-size: 18px;
    padding: 16px 44px;
}

/* SECCIONES */
.dcl-section {
    padding: 64px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.dcl-section-alt {
    background: #f9f7f4;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.dcl-section-alt > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dcl-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d5c4f;
    text-align: center;
    margin: 0 0 8px;
}

.dcl-section-sub {
    font-size: 17px;
    color: #888;
    text-align: center;
    margin: 0 0 40px;
}

/* CARDS PREMIO */
.dcl-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dcl-card {
    background: #fff;
    border: 1px solid #e8e4de;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.dcl-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dcl-card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.dcl-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2d5c4f;
    margin: 0 0 8px;
}

.dcl-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* PASOS */
.dcl-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.dcl-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 24px 16px;
}

.dcl-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #2d5c4f;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.dcl-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.dcl-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.dcl-step-arrow {
    font-size: 24px;
    color: #ccc;
    padding-top: 36px;
    flex-shrink: 0;
}

/* TABLA */
.dcl-table-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.dcl-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.dcl-table thead th {
    background: #2d5c4f;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    text-align: left;
}

.dcl-table thead th:last-child {
    text-align: center;
}

.dcl-table tbody td {
    padding: 14px 20px;
    font-size: 15px;
    background: #fff;
    border-bottom: 1px solid #f0ede8;
}

.dcl-table tbody td:last-child {
    text-align: center;
    font-size: 18px;
    color: #2d5c4f;
}

/* TIMELINE */
.dcl-timeline {
    max-width: 480px;
    margin: 0 auto;
}

.dcl-timeline-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e8e4de;
}

.dcl-timeline-item:last-child {
    border-bottom: none;
}

.dcl-timeline-date {
    flex-shrink: 0;
    width: 90px;
    font-size: 14px;
    font-weight: 700;
    color: #2d5c4f;
    text-transform: uppercase;
}

.dcl-timeline-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.dcl-timeline-highlight {
    background: #eaf5ee;
    border-radius: 8px;
    padding: 16px 20px;
    border-bottom: none;
}

/* CTA FINAL */
.dcl-cta-final {
    text-align: center;
    padding: 70px 24px 60px;
}

.dcl-cta-final h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.dcl-cta-final > p {
    font-size: 17px;
    color: #666;
    margin: 0 0 28px;
}

.dcl-legal {
    font-size: 12px !important;
    color: #aaa !important;
    max-width: 500px;
    margin: 24px auto 0 !important;
    line-height: 1.5;
}

.dcl-legal a {
    color: #888;
}

/* POPUP */
.dcl-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.dcl-popup-overlay.dcl-popup-visible {
    background: rgba(0, 0, 0, 0.45);
}

.dcl-popup {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dcl-popup-visible .dcl-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.dcl-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.dcl-popup-close:hover {
    color: #333;
}

.dcl-popup-tag {
    display: inline-block;
    background: #eaf5ee;
    color: #2d5c4f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.dcl-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d5c4f;
    line-height: 1.2;
    margin: 0 0 14px;
}

.dcl-popup-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
}

.dcl-popup-prize {
    background: #f9f7f4;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 24px;
}

.dcl-popup-prize span {
    margin-right: 6px;
}

.dcl-popup-btn {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.dcl-popup-sub {
    font-size: 12px;
    color: #aaa;
    margin: 14px 0 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .dcl-hero {
        padding: 56px 20px 50px;
    }

    .dcl-hero h1 {
        font-size: 32px;
    }

    .dcl-hero-sub {
        font-size: 16px;
    }

    .dcl-section h2 {
        font-size: 26px;
    }

    .dcl-cards {
        grid-template-columns: 1fr;
    }

    .dcl-steps {
        flex-direction: column;
        align-items: center;
    }

    .dcl-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .dcl-step {
        max-width: 100%;
    }

    .dcl-popup {
        padding: 36px 24px 28px;
        margin: 12px;
    }

    .dcl-popup-title {
        font-size: 24px;
    }
}
