/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

main {
    padding: 0;
    min-height: auto;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
}

/* Galería */
.galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.galeria img {
    width: 300px;
    border: 2px solid #ddd;
}

* Agrega esto al final del archivo */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link.active {
    font-weight: bold;
    border-bottom: 3px solid #3498db;
    color: #3498db !important;
}

/* Efectos para botones */
.btn-constructora {
    transition: all 0.3s ease;
    background-color: #2c3e50;
    color: white;
}

.btn-constructora:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #3498db;
}

/* Efectos para tarjetas */
.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/*Estilos para acerca.html*/



.highlight-box {
    border-left: 4px solid var(--bs-primary);
}

.about-team-img {
    background: url('../img/galeria/about-team.jpg') no-repeat center center/cover;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--bs-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
    color: var(--bs-primary);
    font-size: 1.5rem;
}

.quality-img {
    background: url('../img/galeria/quality-work.jpg') no-repeat center center/cover;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-right: 1rem;
}

.cta-section {
    background-color: var(--bs-primary);
    background-image: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}

/* Estilos para las estadísticas */


.row.text-center div {
    padding: 20px;
    border-right: 1px solid #eee;
}
.row.text-center div:last-child {
    border-right: none;
}



/*estilos contact


/*etilos galeria

/* Gallery Effects */
.gallery-hero { min-height: 60vh; }
.hover-effect { transition: all 0.3s ease; }
.hover-effect:hover { 
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}
.project-card { border-radius: 10px; overflow: hidden; }
.gallery-item { display: block; } /* For filter functionality */

.social-response-section {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
    background-color: #f8f9fa !important; /* Fondo claro */
}

.social-response-section .social-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.social-response-section .response-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.social-response-section .btn-social {
    min-width: 200px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.social-response-section .btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Asegura que el video hero no interfiera */
.video-background {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}