/* Contenedor de Capturas (Screenshots) */
.screenshot-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.screenshot-container img {
    width: 90%;  /* Asegura que no sea demasiado grande */
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);  /* Sombra suave */
    margin: 20px auto;
}

/* Beneficios - Online / Multi-Garage / Otros */
.beneficios-lista ul {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.list-group-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    background-color: #f8f8f8;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 12px;
    border: none;
    transition: background-color 0.2s;
}

.list-group-item i {
    font-size: 24px;
    margin-right: 10px;
}

.list-group-item:hover {
    background-color: #eaeaea;
}



/* Botón de Regreso */
.btn-outline-primary {
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary:hover {
    background-color: #0056b3;
    color: white;
}

/* Botón CTA (Prueba Gratis) */
.btn-primary {
    font-size: 18px;
    padding: 12px 25px;
    margin-top: 30px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #d63384;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}


.beneficios ul {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.list-group-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    background-color: white; /* Fondo blanco */
    margin-bottom: 12px; /* Espacio entre ítems */
    border-radius: 8px; /* Bordes suaves */
    padding: 15px; /* Espacio interno */
    border: 1px solid #e0e0e0; /* Borde sutil */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: #f5f5f5; /* Color claro al hacer hover */
}

.list-group-item i {
    font-size: 22px;
    margin-right: 15px; /* Espacio entre el icono y el texto */
}




.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);  /* Fondo oscuro semitransparente */
    border-radius: 50%;  /* Botones redondeados */
    width: 40px;
    height: 40px;
}

/* Contenedor del Carrusel */
.carousel {
    max-width: 900px;  /* Ajusta el ancho total del carrusel */
    margin: 0 auto;
    overflow: hidden;  /* Evita que contenido desbordado sea visible */
}

.carousel-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;  /* Altura mínima asegurada */
    overflow: hidden;  /* Evita desbordes inesperados */
}

.carousel-item img {
    max-height: 600px;  /* Ajuste menor para dejar espacio a la caption */
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.carousel-caption {
    position: absolute;
    bottom: 20px; /* Asegura que esté por encima de los controles */
    left: 50%;

    background-color: rgba(0, 0, 0, 0.75); /* Contraste suficiente */
    padding: 12px 20px; /* Espacio interno para el texto */
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    max-width: 80%; /* Limita el ancho para no desbordar */
    text-align: center;
    white-space: normal; /* Permite saltos de línea */
    z-index: 10; /* Asegura que esté sobre otros elementos */
    opacity: 0; /* Oculto por defecto */
    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
}
/* Mostrar la caption al hacer hover */
.carousel-item:hover .carousel-caption {
    opacity: 1;
    bottom: 15%;  /* Sube ligeramente al hacer hover */
}
