html{
    scroll-behavior: smooth; /* Desplazamiento suave */
}
body { 
  background: #feffff;
  margin: 0;
  font-family: "Arial";
}
header{
  display: flex;
}








/*ESTILOS INDEX PHP */
.image-icon{
    border-radius: 50%;
}
.title_pag{
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    text-align: center;
    margin: 15px 50px 15px 50px;
    background-color: #ff3363;
    width: 50%;
    height: 10vh;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50px;
}
.parrafo{  
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    background-color: #ffd166;
    width: 50%;
    /*height: 20vh;*/
    font-size: 20px;
    float: right;
    padding: 30px;
    margin: 15px 90px 50px 50px;
    border-radius: 49px;
}
.servicios{
    position: relative;
    display: flex;
    margin: 15px 50px 15px 50px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.sub_servicio2{
    margin: 20px;
    align-items: center;
    display: block;
    text-align: center;
}
.sub_servicio{
    margin: 10px;
    align-items: center;
    display: block;
    text-align: center;
}
.sub_servicio2 img{
    cursor: pointer;
        background-color: #ffd166;
    border-radius: 20%;
    width: 55vh;
    height: 50vh;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    object-fit: contain;
  transition: transform 0.4s ease; /* Suaviza el movimiento */
}
 /* Clase para hacer grande la imagen */
    img.grande {
        transform: scale(1.8);
    }

.sub_servicio2 img:hover{
    transform: scale(1.1); /* Agranda la imagen un 10% */
}
.sub_servicio img{
    border-radius: 50%;
    width: 40vh;
    height: 35vh;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}
.contenedor-mapa{
    display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
}

.section_pag3{
    padding-top: 90px;
    display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
    transform: translateY(-1px);
}



/*Estilos boton de watsApp */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;

    right: 25px;
    bottom: 25px;

    background-color: #25D366;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 30px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition: transform 0.3s ease,
                background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* Animación */
.whatsapp-float::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background-color: #25D366;

    animation: whatsapp-pulse 2s infinite;

    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Móvil */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
}

.facebook-float {
    position: fixed;

    right: 25px;
    bottom: 95px;

    width: 60px;
    height: 60px;

    background-color: #1877F2;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition: all 0.3s ease;

    animation: facebook-pulse 2s infinite;
}

.facebook-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.facebook-float:hover {
    background-color: #0d65d9;
    transform: scale(1.1);
}
@keyframes facebook-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* Botón flotante */
.btn-llamada {
    position: fixed;
    right: 25px;
    bottom: 170px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;
    text-decoration: none;

    font-size: 25px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    z-index: 9999;

    transition: all 0.3s ease;

    animation: llamada 1.5s infinite;
}

.btn-llamada:hover {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.1);
}

/* Animación */
@keyframes llamada {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* En móviles */
@media (max-width: 600px) {
    .btn-llamada {
        width: 55px;
        height: 55px;
        right: 15px;
        font-size: 22px;
    }
    .facebook-float{
        right: 15px;
    }
}


/*Termina estilos formulario contacto*/
.header_div{
    margin: 10px;
    padding: 10px;
    top: 0;
    position: fixed;
    background: #ff8246;
    display: flex;
    left: 0;
    width: 97%;
    z-index: 1000;
}
/* ESTILOS PARA EL MENU*/
.image-icon{
    width: 55px;
    height: auto;
    margin: 0.25rem;
}

.navbar-custom{
    display: flex;
    align-items: center;
    background-color: #074f7b00;
    overflow: hidden;
}

.navbar-custom a{
    color: white;
    float: left;
    display: block;
    text-align: center;
    padding: 20px 25px 5px 49px;
    text-decoration: none;
    font-size: 20px;
}
.navbar-custom a:hover{
      color: #0f1833;
    background-color: #ffffb3;
    padding: 15px;
}
.navbar-custom .icon{
    display: none;
}

.menu-icon{
    width: 30px;
    height: auto;
    margin: 0.25rem;
}

/*ESTILOS PARA EL CARRUCEL */
.container-carousel {
    position: relative;
    margin: 120px 50px;
    height: 500px;
    background-color: #e0e0e0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.66);
    border-radius: 15px;
    overflow: hidden;
  
}

.carruseles {
    width: 1000%;
    height: 100%;
    display: flex;

}

.slider-section {
    width: calc(100% / 10);
    height: 100%;
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.btn-left,
.btn-right {
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff81;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}

.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fff;
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}

/* Estilos Seccion Pagina */
.section_pag{
    scroll-margin-top: 70px; /* Ajusta segun la altura de tu menú */
    
    padding-top: 30px;
}
/*Terina seccion pagina */


/*estilos footer */
.footer {
  background: #ff8246;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-top: 0;
}

.footer p {
  color: ##ffd166;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: #ffd166;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #374151;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer a {
    display: inline-block;
    margin: 0 8px 10px;
  }
}



/*Termina estilos footer */

/*TERMINA ESTILOS PAGINA INDEX PHP */



/*ESTILOS SECCIONA PANEL 8*/


.bodyPanel{
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center; 
}
.container{
    width: 25rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5px 20px 5px;
    background: #ffd166;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    border-radius: 15%;
}

.login{
    width: 100%;
    max-width: 300px;
    padding: 25px;
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.login input{
  width: 95%;
  padding: 12px;
  margin: 5px 0 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.login label{
    font-weight: bold;
    color: #0f1833;
    font-family: emoji;
    font-size: 25px
}

.login button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #007bff;
  color: white;
  cursor: pointer;
}
.login button:hover{
    background: #074f7b;
}
.spanError{
    color: #e70000;
}
.image-iconPanel{
    max-width: 100%;
    height: auto;
    display: block;
    width: 8rem;
    border-radius: 50%;
}
.container_img{
    display: flex;
    margin: 3rem;
    padding: 2rem;
    flex-wrap: wrap;
}
.container_img div{
    text-align: center;
    margin: 2rem;
    padding: 2rem;
}
.container_img img{
    width: 409PX;
     height: 228PX;   
}
.botonPanel {
  width: 95%;
  display: grid;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #007bff;
  color: white;
  cursor: pointer;
  margin: 10px 5px 5px 1px;
}
.botonPanel:hover{
    background: #074f7b;
}
.btn_save{
    margin: 10px 5px 5px 1px;
    font-size: 15px;
    background: #16ad05;
    padding: 5px;
    width: 95%;
    color: white;
    border: 0px;
    border-radius: 10px;
    display: none;
}
.btn_save:hover{
    background: #9bff9f;
    color: black;
    font-weight: bold;
}
.btn_close{
    display: none;
    margin: 10px 5px 5px 1px;
    padding: 5px;
    border: 0px;
    border-radius: 10px;
    background: #df0000;
    font-size: 15px;
    width: 95%;
    color: white;
}
.btn_close:hover{
    background: #ff7777;
    color: black;
    font-weight: bold;
}
/*REPONSIVWE*/

@media screen and (max-width: 600px) {
    .navbar-custom{
        display: block;
    }

    .navbar-custom a:not(:first-child){
        display: none;
    }

    .navbar-custom a.icon{
        display: block;
        float: right;
    }

    .navbar-custom.responsive a.icon{
        display: block;
        float: right;
    }
    .navbar-custom.responsive{
        display: block;
        position: relative;
    }

    .navbar-custom.responsive .icon{
        position: absolute;
        right: 2%;
        top: 0%;
    }

    .navbar-custom.responsive a{
        float: none;
        display: block;
        text-align: left;
    }
    /*Resoinsive Formulario 
*/
    .contact-card {
        padding: 10px 10px;
        width: 80%;
        margin: 15px;
    }
    input,
    textarea {
        width: 90%;
        font-size: 15px;
    }
    .title_pag{
        width: 60%;
    }
    .sub_servicio2 img{
        width: 40vh;
        height: 30vh;
    }
.contenedor-mapa{
    margin: 15px;
    padding: 10px 10px;
    width: 80%;
}





/*Responsive Panel */

.container {
    padding: 10px;
  }

  .login {
    padding: 18px;
  }
.container_img img{
    height: auto;
    max-width: 100%;
}

/*Termina responsive Panel*/
}