/* COLOR TEXTO MENU */

.navbar-diox .nav-link{
    color:#000 !important;
}

.navbar-diox .nav-link:hover{
    color:#222 !important;
}

.navbar-diox .navbar-brand{
    color:#000 !important;
}
.navbar-diox{
    background:rgb(170, 167, 167);
}

.navbar-toggler{
    border-color:#000;
}

.logo-header{
    height:60px;
    width:auto;
}

/* SLIDER */

.responsiva{
    width:100%;
    max-height:550px;
    object-fit:cover;
}

/* INFO */

.info{
    background:rgb(170, 167, 167);
    padding:80px 0;
}

.info-text{
    text-align:justify;
    line-height:1.7;
    font-size:16px;
    padding:20px;
}

/* CARDS */

.card{
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

/* MAPA */

.map{
    padding:70px 0;
    background:#f8f9fa;
}

.map-container{
    width:100%;
    max-width:1100px;
    margin:auto;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.map-container iframe{
    width:100%;
    height:450px;
    border:0;
}

/* BOTONES MAPA */

.map-buttons{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.map-buttons .btn{
    padding:10px 20px;
    font-size:16px;
}

/* FOOTER RESPONSIVE */
.footer{
background:rgb(170, 167, 167);
padding:15px 0;
color:#000;
font-size:14px;
}

.footer h5{
font-size:16px;
margin-bottom:8px;
}

.footer p{
margin-bottom:5px;
line-height:1.4;
}

.footer-logo{
max-width:85px;
}

.footer-link{
color:#000;
text-decoration:none;
}

.footer-link:hover{
text-decoration:underline;
}

/* WHATSAPP */

.btn-wsp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    z-index:9999;
    animation:wsp-pulse 2s infinite;
}

.wsp-text{
    position:absolute;
    right:70px;
    background:#25d366;
    color:#fff;
    padding:8px 12px;
    border-radius:5px;
    opacity:0;
    transition:0.3s;
}

.btn-wsp:hover .wsp-text{
    opacity:1;
}

@keyframes wsp-pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
    70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* IMAGENES DEL SLIDER */
.responsiva{
    width:100%;
    height:450px;
    object-fit:cover;
}

@media (max-width:768px){
    .responsiva{
    height:250px;
    }
}


/* SECCION INFO */
.info{
    padding:40px 0;
}

.info-text{
    padding:20px;
}

@media (max-width:768px){
    .info-text{
    text-align:center;
}
}

/* TARJETAS */
.our-services{
    background:#f8f9fa;
    padding:70px 0;
}

.service-card{
    border:none;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.service-icon{
    height:80px;
    object-fit:contain;
    margin:auto;
    margin-top:20px;
}

/* CARD CON IMAGEN COMPLETA */

.service-card-image{
    position:relative;
    overflow:hidden;
    border:none;
}

.service-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.5);
    color:white;
    text-align:center;
    padding:15px;
    font-weight:bold;
}

/* MAPA RESPONSIVE */
.map-container{
    position:relative;
    width:100%;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
}

.map-container iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}


/* BOTON WHATSAPP */
.btn-wsp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:12px 15px;
    border-radius:50px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    z-index:999;
}

@media (max-width:768px){
    .wsp-text{
    display:none;
    }
}

h1{
font-weight:700;
margin-bottom:20px;
}

/* EFECTO MENU */

.navbar-diox .nav-link{
color:#000 !important;
position:relative;
font-weight:500;
}

.navbar-diox .nav-link::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0;
height:2px;
background:#000;
transition:0.3s;
}

.navbar-diox .nav-link:hover::after{
width:100%;
}