/* Sección Descargar App */
.download-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.download-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 71, 171, 0.15);
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.download-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-info h1 {
    font-size: 2rem;
    color: #0047AB;
    font-weight: 700;
}

.download-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.download-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
}

.download-features li i {
    color: #0047AB;
    font-size: 1.1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0047AB, #0056d4);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
    align-self: flex-start;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 71, 171, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .download-section {
        padding: 100px 15px 40px;
    }

    .download-card {
        flex-direction: column;
        padding: 30px 25px;
        gap: 30px;
    }

    .download-image img {
        max-width: 280px;
    }

    .download-info h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .download-info p {
        text-align: center;
    }

    .download-features {
        align-items: center;
    }

    .download-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .download-section {
        padding: 90px 10px 30px;
    }

    .download-card {
        padding: 25px 20px;
    }

    .download-image img {
        max-width: 220px;
    }

    .download-info h1 {
        font-size: 1.3rem;
    }

    .download-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}
