/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
}

/* Jumbotron */
.jumbotron {
    background: linear-gradient(135deg, #0072ce, #48a9a6);
    color: white;
    padding: 3rem 1.5rem;
    margin-bottom: 2rem;
}

.jumbotron h1 {
    font-weight: 600;
}

.jumbotron p {
    font-weight: 300;
}

/* Listas de servicios */
.list-group-item {
    background-color: #fefefe;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.list-group-item:hover {
    background: linear-gradient(135deg, #0072ce, #48a9a6);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.list-group-item .icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #0072ce;
}

/* Pie de página */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #48a9a6;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* Estilo para el índice */
#indice {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 20px;
    margin-bottom: 40px; /* Asegura que haya suficiente espacio abajo */
}

/* Ajustes de estilo para la tarjeta de servicios */
.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 30px;
    padding: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #007bff;
}

.service-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.service-price {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
}

.service-description {
    font-size: 1rem;
    color: #555;
}

/* Estilo para la barra de navegación */
.navbar {
    margin-bottom: 30px;
}

/* Estilo para el encabezado */
.jumbotron {
    background-color: #f8f9fa;
    padding: 40px;
}

.jumbotron h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.jumbotron p {
    font-size: 1.2rem;
    color: #555;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
    .service-card {
        margin-bottom: 20px;
    }

    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron p {
        font-size: 1rem;
    }

    footer {
        font-size: 0.8rem;
    }
}
