/* Fondo claro general */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #333;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    background-color: #e6f0fb;
    color: #003366;
    flex-direction: column;
}

.spinner {
    border: 6px solid rgba(0, 102, 204, 0.2);
    border-top: 6px solid #0066cc; /* Azul más fuerte */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    animation: blink 1.5s infinite;
    color: #003366;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Mejor opcion */
.best-option {
    border: 3px solid #2980b9;
    background: #d6ecff;
    position: relative;
}

    .best-option::before {
        content: "⭐ Mejor opción";
        position: absolute;
        top: -10px;
        right: -10px;
        background: #2980b9;
        color: white;
        font-size: 0.75em;
        font-weight: bold;
        padding: 4px 8px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

/* Baner especial */
.main-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.left-column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.right-column {
    flex: 1 1 300px;
    background: #f4f9ff;
    border: 2px dashed #2980b9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bank-info h3 {
    margin-bottom: 15px;
    color: #1a5276;
}

.bank-info p {
    margin: 8px 0;
    font-weight: 500;
    font-size: 1em;
}

/* Enlaces */
.package-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
/* Botones */
.buy-button {
    background: linear-gradient(135deg, #17c3b2, #0a9e95);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(23, 195, 178, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

    .buy-button:hover {
        background: linear-gradient(135deg, #0a9e95, #17c3b2);
        box-shadow: 0 6px 20px rgba(10, 158, 149, 0.7);
        transform: translateY(-3px);
    }

.buy-button2 {
    background: linear-gradient(135deg, #fff8b5, #fff176);
    color: #444; /* texto oscuro para buen contraste */
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(255, 241, 118, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

    .buy-button2:hover {
        background: linear-gradient(135deg, #fff176, #fff8b5);
        box-shadow: 0 6px 20px rgba(255, 241, 118, 0.7);
        transform: translateY(-3px);
    }
/* ********** */

.banner {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.banner-text-company {
    font-size: 1.5em;
    font-weight: bold;
}

.banner-text-application {
    font-size: 1em;
}

.download-top-button {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 10px;
}

    .download-top-button:hover {
        background: #c0392b;
    }

.container {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    margin-top: 5px;
    font-size: 1.4em;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* Estilos para secciones */
.subscriptions {
    background: #f0f9ff; /* Fondo diferente */
    padding: 20px;
    border-radius: 12px;
}

.subscription-list,
.package-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

/* Tarjetas de suscripciones y paquetes */
.subscription,
.package {
    flex: 1 1 30%;
    background: #fefefe;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

    .subscription:hover,
    .package:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

    .subscription p,
    .package p {
        margin: 8px 0;
    }

.install-button {
    margin-top: 40px;
    text-align: center;
}

    .install-button a {
        background: #27ae60;
        color: white;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 1.1em;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }

        .install-button a:hover {
            background: #1e8449;
        }

.footer {
    margin-top: 50px;
    padding: 20px;
    background: #ecf0f1;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription, .package {
        flex: 1 1 100%;
    }

    .banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-top-button {
        align-self: flex-end;
    }
}


.container2 {
    max-width: 700px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-info p {
    margin: 10px 0;
    font-size: 1em;
}

.requirements h2 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.requirements ul {
    list-style: none;
    padding-left: 20px;
}

    .requirements ul li::before {
        content: "✅";
        margin-right: 8px;
    }