/* ============================================
   LANDING PAGE (index.html) — Estilos
   Migrado desde styles.css original
   ============================================ */

body {
    background-color: #1f0020;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.fondo-container {
    position: relative;
    width: 100%;
}

.text-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #1f0020;
    text-align: left;
}

.section-text {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    max-width: 800px;
    text-align: left;
}

.section-description {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0 0 0;
    line-height: 1.5;
    max-width: 800px;
    text-align: left;
}

.section-button {
    background: linear-gradient(135deg, #e91e63, #d81b60);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.section-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.section-button:active {
    transform: translateY(0);
}

.overlay-card {
    position: absolute;
    top: 60px;
    left: 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-shadow: none;
}

.card-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    text-shadow: none;
}

.credit-button {
    position: absolute;
    top: 240px;
    left: 20px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.credit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.credit-button:active {
    transform: translateY(0);
}

.approval-text {
    position: absolute;
    top: 305px;
    left: 20px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.promo-text {
    position: absolute;
    top: 280px;
    left: 20px;
    right: 20px;
    color: #1f0020;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    max-width: 800px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

/* Responsive Design */
@media (max-width: 768px) {
    .overlay-card {
        top: 40px;
        left: 15px;
        max-width: 500px;
        padding: 20px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .card-text {
        font-size: 16px;
    }

    .credit-button {
        top: 200px;
        left: 15px;
        font-size: 18px;
        padding: 12px 35px;
    }

    .approval-text {
        top: 260px;
        left: 15px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .overlay-card {
        top: 30px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 15px;
        border-radius: 15px;
    }

    .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .card-text {
        font-size: 14px;
    }

    .credit-button {
        top: 160px;
        left: 10px;
        right: 10px;
        font-size: 16px;
        padding: 12px 30px;
    }

    .approval-text {
        top: 215px;
        left: 10px;
        font-size: 14px;
    }
}

.promo-card-right {
    background-color: #d5006d;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    padding: 30px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.promo-card-right h2 {
    color: #1f0020;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
