/* ===== APP DESCARGA CON TUS COLORES ===== */
.app-descargar {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(9, 83, 116, 0.3);
    border: 3px solid var(--verde-claro);
}

.download-section {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.download-header {
    margin-bottom: 30px;
}

.download-header h1 {
    color: var(--azul);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
    border-left: 8px solid var(--verde);
    padding-left: 1rem;
}

.download-header p {
    color: var(--gris);
    font-size: 1rem;
    line-height: 1.6;
}

.highlight {
    color: var(--verde);
    font-weight: 700;
}

.playstore-btn {
    background: linear-gradient(135deg, var(--azul) 0%, #0a6b9e 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(9, 83, 116, 0.3);
    width: 100%;
    text-align: left;
    border: 2px solid var(--verde-claro);
}

.playstore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(176, 191, 62, 0.4);
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-claro) 100%);
}

.playstore-btn:hover .playstore-icon {
    background: var(--azul);
    color: white;
}

.playstore-icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul);
    font-size: 2rem;
    transition: 0.3s;
}

.playstore-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.playstore-info p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.qr-section {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed var(--verde-claro);
}

.qr-code {
    background: var(--blanco);
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--verde);
    padding: 5px;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.qr-text {
    font-size: 0.9rem;
    color: var(--gris);
    font-weight: 500;
}

.qr-text i {
    color: var(--verde);
}

/* ===== VISTA DEL TELÉFONO ===== */
.app-vista {
    background: linear-gradient(135deg, var(--blanco) 0%, #ffffff 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid var(--verde-claro);
}

.modelo-telefono {
    background-color: var(--azul);
    width: 280px;
    height: 560px;
    border-radius: 40px;
    margin: 0 auto 30px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(9, 83, 116, 0.4);
    border: 4px solid var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modelo-telefono::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--azul);
    border-radius: 0 0 20px 20px;
    z-index: 2;
    border: 2px solid var(--verde);
    border-top: none;
}

.modelo-telefono::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--verde);
    border-radius: 10px;
    z-index: 2;
}

.imagen-app {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid var(--verde-claro);
}

/* ===== CARACTERÍSTICAS ===== */
.features {
    margin-top: 20px;
}

.features h3 {
    color: var(--azul);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-left: 8px solid var(--verde);
    padding-left: 1rem;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(176, 191, 62, 0.05);
    border-radius: 15px;
    border-left: 5px solid var(--verde);
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(176, 191, 62, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    background: var(--azul);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--verde);
    color: var(--gris);
}

.feature-text h4 {
    color: var(--azul);
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--gris);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 992px) {
    .app-descargar {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .download-section {
        padding: 40px 30px;
    }

    .app-vista {
        border-left: none;
        border-top: 3px solid var(--verde-claro);
    }
}

@media screen and (max-width: 480px) {

    .playstore-btn {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .playstore-icon {
        margin-bottom: 5px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}