body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

.hero-section {
    height: 100vh; /* La altura ocupa el 100% de la ventana */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%; /* Asegura que ocupe el 100% del ancho */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Usa 100vw para asegurar que ocupa todo el ancho de la ventana */
    height: 100vh; /* Ocupa el 100% de la altura de la ventana */
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.5); /* Opcional: oscurece la imagen para mejorar la legibilidad del texto */
}


.hero-content {
    z-index: 2;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}


.card-title {
    color: #dc3545;
    font-weight: 700;
}

.testimonials {
    background: url('img/testimonials-background.jpg') no-repeat center center;
    background-size: cover;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
}

/* Estilo para igualar el tamaño de las imágenes y tarjetas */
.card-img-top {
    width: 100%;
    height: 200px; /* Ajusta la altura según tus necesidades */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Asegura que todas las tarjetas tengan la misma altura */
}

/* Opcional: ajuste del tamaño de las tarjetas */
.card-body {
    flex-grow: 1;
}

/* Estilo para la sección de servicios */
.section-title {
    margin-bottom: 2rem;
}

.card-img-top {
    height: 200px; /* Ajusta según sea necesario */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsión */
}

.card-body {
    text-align: left; /* Alinea el texto a la izquierda */
}
