.hero-sectionDescargar {
    background-image: url('../public/images/descargarapp.webp');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    height: auto;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    padding: 20px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.488);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;

}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em; 
    color: white;
    margin-bottom: 0.2em;
    text-transform: uppercase;
}

.hero-text .breadcrumbs {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
}

.breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #971fbd;
}

.breadcrumb-separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #971fbd;
    border-radius: 50%;
    margin: 0 10px;
}


.app-download-section {
    min-height: 400px; 
    background-image: url('../public/images/fondo5.webp'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    position: relative; 
}

.download-content {
    max-width: 1000px;
    width: 100%;
    z-index: 10; 
}

.app-download-section .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #971fbd; 
    margin-bottom: 15px;
    position: relative;
    padding-top: 15px;
    text-transform: uppercase;
}

.app-download-section .subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #971fbd;
}

.app-download-section .title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.download-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 40px; 
}

.download-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.download-link:hover {
    transform: translateY(-5px); 
}

.download-link img {
    width: 180px; 
    height: auto; 
    object-fit: contain;
    margin-bottom: 10px;
}

.download-link .link-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #971fbd; 
}


.app-faq-section {
    padding: 80px 20px;
    text-align: center;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-header {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #971fbd;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px; 
    margin-bottom: 5px;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f7f7f7; 
    border-radius: 0 0 8px 8px;
}

.accordion-body.expanded {
    max-height: 1000px; 
    padding: 20px 25px;
    text-align: left;
}
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 8, 29, 0.85);
    backdrop-filter: blur(10px);
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 5000; 
    left: 0; top: 0;
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px; 
    animation: zoom 0.6s;
}

@keyframes zoom { from {transform:scale(0)} to {transform:scale(1)} }

@media (max-width: 768px) {
    .hero-sectionDescargar { min-height: 250px; }
    .hero-text h1 { font-size: 1.8rem; }
    .download-links-container { gap: 20px; }
    .download-link img { width: 160px; }
}

@media (max-width: 480px) {
    .download-link { width: 100%; }
    .hero-text h1 { font-size: 1.5rem; }
}