/* Swiper Hero Customization */
.hero-slider {
    width: 100%;
    height: 520px;
    /* Aumentado la altura considerablemente */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--hero-shadow);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.6);
    transform: scale(1.05);
    /* hide blurred edges */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    /* Layout horizontal: Icono izq, Info der */
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    /* Centrado grupal pero side-by-side */
    height: 100%;
    text-align: left;
    padding: 0 5%;
    color: white;
    gap: 60px;
    /* Mayor espacio entre columnas */
}

.slide-app-icon {
    width: 250px;
    /* Icono notablemente más grande */
    height: 250px;
    border-radius: 45px;
    overflow: hidden;
    flex-shrink: 0;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
    border: 5px solid rgba(255, 255, 255, 0.15);
    /* Marco sutil */
}

.slide-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-app-info h2 {
    font-size: 3rem;
    /* Título imponente */
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.slide-dev {
    font-size: 1.2rem;
    color: var(--accent-color);
    /* Color de acento para el desarrollador */
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-desc {
    max-width: 550px;
    margin: 0 0 35px 0;
    /* Alineado a la izquierda */
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-more-info {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-more-info:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Pagination Adjustments */
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--accent-color) !important;
}

/* Swiper Navigation Adjustments */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .slide-app-info h2 {
        font-size: 1.6rem;
    }

    .slide-app-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .hero-slider {
        height: 480px;
        border-radius: 12px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-desc {
        font-size: 0.85rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}