/* INDEX: carrusel y secciones con imagen */
.carousel-item img {
    height: 60vh;
    object-fit: cover;
}
.img-section {
    height: 35vh;
    object-fit: cover;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 30vh;
    }
    .img-section {
        height: 25vh;
    }
}

/* Overlay del carrusel */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
    color: white;
    pointer-events: none;
}

/* Imágenes full */
.img-full {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* GALERÍA: proyectos */
.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}
.text-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1.1rem;
}

/* Hover zoom reutilizable */
.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}

/* CONTACTO: mapa y formulario */
.mapa {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
form .form-control {
    border-radius: 5px;
}
form button {
    border-radius: 5px;
}

/* SERVICIOS / general fixes */
html, body {
    overflow-x: hidden;
}
.card {
    max-width: 100%;
}

/* color de fondo por defecto (puedes sobrescribir con inline style si necesitas otra variante) */
body {
    background-color: #E5E6E7;
}
.mt-3 {
    color:#c9c6c6;
}