#desarrollo-web-carrusel {
    font-family: Arial, sans-serif;
}

#desarrollo-web-carrusel .info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1280px;
    margin: 2rem auto; 
    padding: 0 2rem;
}

#desarrollo-web-carrusel .info-text {
    flex: 1 1 60%;
    min-width: 280px;
}

#desarrollo-web-carrusel .info-text h2 {
    font-size: 1.8rem;
    color: #0a61d0;
    margin-bottom: 1rem;
}

#desarrollo-web-carrusel .info-text p {
    font-size: 1.05rem;
    color: #222;
    line-height: 1.6;
}

#desarrollo-web-carrusel .info-text p a {
    color: #0a61d0;
    text-decoration: none;
    font-weight: bold;
}

#desarrollo-web-carrusel .cta-box {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    min-width: 250px;
}

#desarrollo-web-carrusel .cta-box h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 1rem;
}

#desarrollo-web-carrusel .cta-box button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#desarrollo-web-carrusel .cta-box button:hover {
    background-color: #3578d4;
}

#desarrollo-web-carrusel .carousel-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#desarrollo-web-carrusel .carousel-track-container {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

#desarrollo-web-carrusel .carousel-track-container::-webkit-scrollbar {
    display: none;
}

#desarrollo-web-carrusel .carousel-track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

#desarrollo-web-carrusel .simple-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    padding: 0;
    max-width: 220px;
    min-height: 320px;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#desarrollo-web-carrusel .simple-card .card-body {
    padding: 1rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#desarrollo-web-carrusel .simple-card h4 {
    font-size: 1rem;
    color: #0562EF;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

#desarrollo-web-carrusel .simple-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    border-radius: 0 0 12px 12px;
}

#desarrollo-web-carrusel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

#desarrollo-web-carrusel .carousel-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#desarrollo-web-carrusel .carousel-btn:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

#desarrollo-web-carrusel .carousel-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.3);
}

#desarrollo-web-carrusel .carousel-btn svg {
    width: 24px;
    height: 24px;
    fill: #1a73e8;
    pointer-events: none;
    transition: transform 0.3s ease;
}

#desarrollo-web-carrusel .carousel-btn:hover svg {
    transform: scale(1.1);
}

#desarrollo-web-carrusel .carousel-btn.prev {
    left: 10px;
}

#desarrollo-web-carrusel .carousel-btn.next {
    right: 10px;
}

@media (max-width: 1024px) {
    #desarrollo-web-carrusel .simple-card {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    #desarrollo-web-carrusel .info-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
    }

    #desarrollo-web-carrusel .info-text {
        flex: 1 1 100%;
        text-align: center;
    }

    #desarrollo-web-carrusel .cta-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        text-align: center;
        box-sizing: border-box;
        max-height: 180px;
    }

    #desarrollo-web-carrusel .carousel-track {
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    #desarrollo-web-carrusel .simple-card {
        flex: 0 0 80%;
        max-width: 80%;
        scroll-snap-align: start;
        min-height: 280px;
    }

    #desarrollo-web-carrusel .carousel-container {
        padding: 0 1rem;
    }
}

#descripcion-pagina-Productos {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__bloque {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__bloque h2 {
    font-size: 1.7rem;
    color: #0562EF;
    font-weight: 700;
    line-height: 1.3;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__bloque h2 span {
    color: #0562EF;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__bloque p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__imagen {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

#descripcion-pagina-Productos .descripcion-pagina-Productos__imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #descripcion-pagina-Productos {
        padding: 2rem 1rem;
    }

    #descripcion-pagina-Productos .descripcion-pagina-Productos__bloque h2 {
        font-size: 1.4rem;
    }

    #descripcion-pagina-Productos .descripcion-pagina-Productos__bloque p {
        font-size: 0.95rem;
    }

    #descripcion-pagina-Productos .descripcion-pagina-Productos__bloque {
        align-items: center;
        text-align: center;
    }
}
