@charset "utf-8";
/* CSS Document */
/* Estilos generales */
body {
	 margin: 0;
            padding: 0;
	background: #009cff;
          /*background: radial-gradient(ellipse at 50% 50%, #ffff,#5DB9FF, #FBF7F4);*/
   /* font-family:"Montserrat Black";
	max-width: 80%;
   margin: 0 auto;
    padding: 0;
	background: #FFFFFF;
	background-size: cover;*/
            /* Centra la imagen de fondo */
           /* background-position: center;
            /* Evita que la imagen se repita */
            /*background-repeat: no-repeat;*/
            /* Opción para fijar la imagen cuando se hace scroll */
           /* background-attachment: fixed;*/
	/* overflow-x: hidden;
		  align-items: center;*/
		

}

.contenedorpagina{    
	font-family:"Montserrat";
	max-width: 88%;
   margin: 0 auto;
    padding: 10px;
	background: #FFFFFF;
	background-size: cover;
            /* Centra la imagen de fondo */
            background-position: center;
            /* Evita que la imagen se repita */
           
            background-attachment: fixed;
	 overflow-x: hidden;
		  align-items: center;
	box-shadow:  0px 4px 6px rgba(0, 0, 0, 0.2);
	overflow-y: hidden;
	
		
	
}

/* Estilos del encabezado */
/* Estilo general del header */
/* HEADER GENERAL */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}

/* LOGO */
.logo img {
  height: 50px;
  object-fit: contain;
}

/* MENÚ PRINCIPAL */
.menu {
  position: relative;
}

.menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin: 0 20px;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.menu ul li a.active {
  color: #009cff;
}

.menu ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #009cff;
}

/* ICONOS DERECHA */
.icons {
  display: flex;
  align-items: center;
}

.icons a {
  margin-left: 15px;
}

.icons img {
  height: 30px;
  object-fit: contain;
}

/* ===== MEDIA QUERIES ===== */

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 10px 0;
  }

  .menu ul li {
    margin: 10px 0;
  }

  .icons {
    margin-top: 10px;
  }

  .menu ul li a {
    font-size: 18px;
  }

  .logo img {
    height: 40px;
  }
}

/* CARRUSEL INICIO */
.inicio-carousel-container {
            position: relative;
            max-width:  95%;
            margin: auto;
	margin-TOP: 2%;
            overflow: hidden;
	border-radius: 40px;
        }

        .inicio-carousel-slides {
            display: flex;
            transition: transform 10.1s ease-in-out;
        }

        .inicio-carousel-slide {
            min-width: 100%;
            transition: opacity 1s ease-in-out;
        }

        .inicio-carousel-slide img {
            width: 100%;
            vertical-align: middle;
        }

        .inicio-prev, .inicio-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color:rgba(255,255,255,0.13);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
			font-size: 20px;
        }

        .inicio-prev { left: 10px; }
        .inicio-next { right: 10px; }

        .inicio-dots-container {
            text-align: center;
            padding: 10px;
        }

        .inicio-dot {
            height: 15px;
            width: 15px;
            margin: 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }

        .inicio-active {
            background-color:#009FE3;
        }

.marquesina {
  overflow:visible;
  white-space: nowrap;
  background-color:rgba(0,156,255,1.00);
  color: #fff;
  padding: 7px 0;
  font-weight: bold;
  font-size: 14px;
  position: relative;
}

.marquesina-contenido {
  display: inline-block;
  padding-left: 100%;
  animation: desplazar 15s linear infinite;
}

@keyframes desplazar {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*Seccion de servicios*/
 .servicios-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    .servicios-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      width: 200px;
      padding: 1rem;
      text-align: center;
      flex-shrink: 0;
    }

    .servicios-card img {
      width: 50%;
      border-bottom-left-radius: 10%;
		border-bottom-right-radius: 10%;
				    }


    .servicios-card a.servicios-boton {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background-color: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 6px;
    }

    .servicios-card a.servicios-boton:hover {
      background-color: #0056b3;
    }


     /* Modal */
    .servicios-modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 100;
    }

    .servicios-modal:target {
      display: block;
    }

    .servicios-modal-contenido {
      background: white;
      margin: 5% auto;
      padding: 2rem;
      max-width: 800px;
      border-radius: 10px;
      position: relative;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .servicios-modal-contenido img {
      width: 35%;
      border-radius: 8px;
		
		margin-right: 2%;
    }
.iconservicio{
	max-width: 4%;
	margin-bottom: -1.1%;
	margin-right: 1%;

}
    .servicios-modal-texto {
      width: 80%;
    }

    .servicios-modal-texto h3 {
		font-size: 2.0em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
	      margin-top: 2%;
    }
.servicios-modal-texto p {
		font-size: 1.0em;
    margin: 0;
		 line-height:1.5;
	margin-top: 3%;
	          }
.servicios-modal-texto a{
	
	color: black;
}

    .servicios-cerrar {
      position: absolute;
      top: 10px;
      right: 20px;
      text-decoration: none;
      font-size: 44px;
      color: #aaa;
    }

    .servicios-cerrar:hover {
      color: #000;
    }

   
   
/* Contenedor principal nosotros */
    .modal-section {
     display: flex;
    justify-content: center; /* Centra los botones horizontalmente */
    gap: 50px; /* Espaciado entre los botones */
    padding: 5px 50px; /* Espaciado interno del contenedor */
	z-index: 1;
	margin-top: 20px; 
    }

    /* Ocultar las ventanas por defecto */
    .modal {
       display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
  z-index: 9999;
  justify-content: center;
  align-items: center;
    }

.modal:target{
	display: flex; /* Muestra el modal cuando el ID coincide con el hash */
}



    /* Contenido del modal */
    .modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  font-family: Jost;
  color: rgba(0,156,255,1.00);
  font-size: 17px;
  text-align: left;
  width: 50%;
  height: auto;
  padding: 2.3%;
  margin: auto;
}

.modal-content h2 {
  font-size: 2em;
  font-weight: bold;
  margin: 10px 0;
  color: #01336E;
  text-align: center;
}

.modal-content h1 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 10px 0;
  margin-bottom: -6px;
}

.modal-close {
  display: block;
  margin-top: 20px;
  color: white;
  background: rgba(0,156,255,1.00);
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  width: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: 0;
}

.modal-section2 h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 10px 0;
  color: #01336E;
  text-align: center;
}

.map-section {
  margin: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-section h2 {
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  color: #C80056;
  line-height: .95;
  margin-top: -4%;
  margin-bottom: 1%;
}

.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* 🔄 Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 5%;
  }

  .modal-close {
    margin-left: auto;
    margin-right: auto;
  }

  .map-container {
    height: 300px;
  }

  .modal-content h2,
  .modal-content h1,
  .modal-section2 h2,
  .map-section h2 {
    font-size: 1.4em;
  }
}
    /* Mostrar los modales específicos al marcar su checkbox */
    #toggle1:checked ~ .modal#modal1,
    #toggle2:checked ~ .modal#modal2,
    #toggle3:checked ~ .modal#modal3,
    #toggle4:checked ~ .modal#modal4,
    #toggle5:checked ~ .modal#modal5,
 	#toggle6:checked ~ .modal#modal6,
	#toggle7:checked ~ .modal#modal7,
	#toggle8:checked ~ .modal#modal8{
      display: flex;
    }

    /* Ocultar los checkboxes */
    input[type="checkbox"] {
      display: none;
    }
.btn1,.btn2,.btn3,.btn4,.btn5 {
	width: 9vw;
	display: flex;
	align-items: center; /* Centrar verticalmente */
    justify-content: center;
		border-radius: 10px;
	   	        transition: transform 0.3s;
        cursor: pointer;
	font:"Montserrat Black";
	    color: #01336E;
    font-weight: bolder;
	font-size: 10px;
  
          border: none;
		transition: background-color 0.3s ;
	 transition: opacity 10.0s ease;
	 animation: slideRight 3s ease-in-OUT forwards;
			
}

.btn1:hover {
 transform: scale(1.1);
	content: url('btnserviciosswap1.png');

}
.btn1	 img{
	width: 3.5vw;
	height: auto;
	
}
.btn2:hover {
 transform: scale(1.1);
	content: url('btnserviciosswap2.png');

}
.btn3:hover {
 transform: scale(1.1);
	content: url('btnserviciosswap3.png');

}
.btn4:hover {
 transform: scale(1.1);
	content: url('btnserviciosswap4.png');

}
.btn5:hover {
 transform: scale(1.1);
	content: url('btnserviciosswap5.png');

}
.subtitulos-container1{
	margin-top: 50px;
	margin-top: 50px;
	width: 100%;
	padding: 10px;
	
	}
.subtitulos-container{
		width: 100%;
	padding: 10px;
	margin-top: 30px;
	}
.subtitulos{
	position: relative;
	align-content: center;
	text-align: center;
	margin-left: 40%;
	margin-top: 10px;
			width: 100%;
		font:"Montserrat Black";
	    color: #01336E;
    font-weight: bolder;
	font-size: 35px;
	
	}
/* PIDE A DOMICILIO */
.envio-section {
	/*ackground: url('C:/Users/Hp/Desktop/FARMAREMEDIOS/Recurso%2086.svg') no-repeat center;*/
	position: relative;
	 display: flex; /* Activa Flexbox */
      align-items: center; /* Centra verticalmente */
      justify-content: space-between;
      color: white;
	background-color: rgba(255,221,243,1.00);
      text-align: center;
      padding: 60px 5px;
			height: 300px;
	margin: -1%;
	
	
   	}
.envio-section img{
	max-width: 70%;
}

.envio-text-container {
	    max-width: 50%;
    text-align: left;
    color: #f72b80;
		 transition: background-color 0.3s ease;
	margin-left: 5%;
	flex: 1;
	}

.envio-text-container h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
	margin-bottom: -5%;
}

.envio-text-container h2 {
    font-size: 2.0em;
    font-weight: bold;
    margin: 10px 0;
	align-items: left;
		
}

.envio-cta-btn {
     display: inline-block;
    background-color: #C80056;
    color: white;
    padding: 10px 50px;
    font-size: 1.0em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
	
}

.envio-cta-btn:hover {
    background-color: #d91b68;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.envio-imagen {
	 flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
.envio-imagen {
	 width: 50%; /* La imagen se ajusta al ancho completo de la sección */
       
}
.iconosenvio{
	max-height: 35px;
	margin: 3%;
	
}

@media (max-width: 1024px) {
  .envio-section {
    flex-direction: column-reverse;
     height: auto;
    padding: 5px 20px;
  }

  .envio-imagen,
  .envio-text-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .envio-text-container h1 {
    font-size: 2.5em;
  }

  .envio-text-container h2 {
    font-size: 1.5em;
  }

  .envio-cta-btn {
   font-size: 1.2em;
    padding: 10px 30px;
	  margin-bottom: 1%;
  }
}

@media (max-width: 600px) {
  .envio-text-container h1 {
    font-size: 2em;
  }

  .envio-text-container h2 {
    font-size: 1.2em;
  }

  .envio-cta-btn {
    font-size: 0.9em;
    padding: 8px 25px;
  }

  .iconosenvio {
    max-height: 25px;
  }
}
/* Ocultar el checkbox */
.toggle-checkbox {
    display: none;
}

.envioscard{
	padding: 0px 20px;
  background-color: #f8f9fa;
  text-align: center;
	background-color: rgba(255,221,243,1.00);
			margin: -1%;
	height: auto;
	margin-top: 5%;
	
}
.cardsenvio{
	margin-top:-3%;
}
/* Ocultar la sección por defecto */
.hidden-domicilio {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mostrar la sección cuando el checkbox está marcado */
.toggle-checkbox:checked ~ .hidden-domicilio {
    display: block;
    animation: fadeIn 0.9	s ease;
}

/* Animación para mostrar la sección */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*MAYORITAS*/
.mayoreo-section {
		position: relative;
	 display: flex; /* Activa Flexbox */
      align-items: center; /* Centra verticalmente */
      justify-content: space-between;
      color: white;
	background-color: rgba(255,221,243,1.00);
      text-align: center;
      padding: 60px 5px;
			height: 300px;
	margin: -1%;

}
.mayoreo-section img{
max-width: 80%;

}

.mayoreo-text-container {
	    max-width: 40%;
    text-align: left;
    color: white;
		 transition: background-color 0.3s ease;
	margin-left: 1%;
	flex: 1;
	margin-right: 15%;
	}

.mayoreo-text-container h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
	margin-bottom: -5%;
}

.mayoreo-text-container h2 {
   font-size: 2.0em;
    font-weight: bold;
    margin: 10px 0;
	align-items: left;
		
}

.mayoreo-cta-btn {
    display: inline-block;
    background-color: #C80056;
    color: white;
    padding: 10px 50px;
    font-size: 1.0em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
	
}
@media (max-width: 1024px) {
  .mayoreo-text-container {
    max-width: 100%;
    margin: 20px auto;
    text-align: center;
  }

  .mayoreo-section {
    flex-direction: column;
    height: auto;
    padding: 5px 20px;
  }

  .mayoreo-section img {
    max-width: 100%;
  }

  .mayoreo-text-container h1 {
    font-size: 2.5em;
  }

  .mayoreo-text-container h2 {
    font-size: 1.5em;
  }

  .mayoreo-cta-btn {
    font-size: 1.2em;
    padding: 10px 30px;
  }
}

@media (max-width: 600px) {
  .mayoreo-text-container h1 {
    font-size: 2.5em;
  }

  .mayoreo-text-container h2 {
    font-size: 1.2em;
  }

  .mayoreo-cta-btn {
    font-size: 0.9em;
    padding: 10px 35px;
  }
}


.mayoreoclientes-seccion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 2%;
  text-align: center;
	margin-top: -5%;
	margin-bottom: 2%;
}

.mayoreoclientes-card {
  background-color: #f7f9fb;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mayoreoclientes-card:hover {
  transform: translateY(-5px);
}

.mayoreoclientes-card img {
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-bottom: 5px;
}

.mayoreoclientes-card p {
  margin: 0;
  font-size: 18px;
  color:rgba(0,156,255,1.00);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .mayoreoclientes-seccion {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mayoreoclientes-seccion {
    grid-template-columns: 1fr;
  }

  .mayoreoclientes-card {
    padding: 16px;
  }

  .mayoreoclientes-card img {
    width: 60px;
  }

  .mayoreoclientes-card p {
    font-size: 16px;
  }
}
.mayoreosection {
  padding: 0.5%;
  display: flex;
  justify-content: center;
  align-items: center;
	margin-bottom: -3%;
		
	}

.mayoreosection-contenido {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 2%;
}

.mayoreosection-imagen {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
	margin-top: 0%;
}

.mayoreosection-imagen img {
  max-width: 75%;
  height: auto;
}

.mayoreosection-texto {
  flex: 1 1 55%;
  text-align: left;
}

.mayoreosection-titulo {
 font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
	margin-bottom: 0%;
}

.mayoreosection-subtitulo {
   font-family: 'Jost', sans-serif;
  color: black;
  font-size: 18px;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .mayoreosection-contenido {
    flex-direction: column;
    text-align: center;
	  margin: 10%;
  }

  .mayoreosection-texto {
    text-align: center;
  }
}

/*banners*/

.bannerpromo {
      width: 100%;
      display: block;
	margin-bottom: 1%;
    }

    .bannerpromo-link {
      display: block;
      width: 100%;
    }
.bannerpromo2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.bannerpromo2 a {
  flex: 1 1 45%; /* ambas ocupan casi la mitad del ancho */
}

.bannerpromo2 a img {
  width: 100%;
  height: auto;
  display: block;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.bannerpromo2 a img:hover {
  transform: scale(1.03);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .bannerpromo2 {
    flex-direction: column;
    align-items: center;
  }

  .bannerpromo2 a {
    flex: 1 1 100%;
  }
}
.mayoreo-cta-btn:hover {
    background-color: #d91b68;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.mayoreo-imagen {
	 flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
		margin-left: 10%;
	max-width: 50%;
    }
.mayoreo-imagen {
	 width: 90%; /* La imagen se ajusta al ancho completo de la sección */

}
.iconosmayoreo{
	max-height: 35px;
	margin: 3%;
	
}

/*pagina mayoreoremedios */
/* SECCIÓN PRINCIPAL */
.mayoreo {
  width: 100%;
  overflow: hidden;
}

.mayoreo img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENEDOR DE TARJETAS */
.cards-mayoreo {
  margin: 2%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
	padding: 0px 20px;
	margin-top: -3%;
			
}

/* TARJETA INDIVIDUAL */
.card-mayoreo {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  min-width: 250px;
  transition: transform 0.3s ease;
}



/* IMAGEN EN LA TARJETA */
.card-mayoreo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

/* TEXTO DE LA TARJETA */
.card-mayoreo-texto h3 {
  margin: 0;
  font-size: 18px;
  color: rgba(0, 156, 255, 1);
}

.card-mayoreo-texto p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #444;
}

/* CUESTIONARIO */
.mayoreo-cuestionario {
  padding: 40px 15px;
  background-color: #f9f9f9;
  text-align: center;
}

.mayoreo-cuestionario h2 {
  font-size: 28px;
  color: rgba(200, 0, 86, 1);
  margin-bottom: 10px;
}

.mayoreo-cuestionario p {
  font-size: 16px;
  margin-bottom: 20px;
}

.mayoreo-cuestionario-contenedor {
  max-width: 1000px;
  height: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Estilos de titulos secciones */

.titulocate{
	color:#01336E;
	text-align: center;
	margin-bottom: -60px;
	margin-top: 5%;
	   
	
}

.texto-secciones{
	font-family: Jost;
	color: black;
	font-size: 18px;
	margin-top: 6%;
	text-align: justify;
	margin-bottom: 5%;
	
}
.texto-secciones h1{
	font-family: Montserrat;
	 font-size: 2.2em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
		text-align: center;
	margin-bottom: -2%;
	margin-top: -4%;
	
}



/* Estilos de carrusel marcas */
.caruselmarcas-container {
    position: relative;
    width: 90%;
    overflow: hidden;
    margin: auto;
    padding: 20px;
	   
}


.caruselmarcas {
    display: flex;
    align-items: center;
}

.caruselmarcas-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
	
}

.caruselmarcas-track img {
    max-width: calc(35% - 14vw);
    margin: 4px;
    box-sizing: border-box;
	height: auto;
}
.caruselmarcas-track img:hover {
 transform: scale(1.1);

}
button {
    background-color:#01336E;
    border-radius: 100%;
    width: 4vw;
    height: 4vw;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.prev1 {
    left: 0;
}

.next1 {
    right: 0;
}	
/* OFERTASFB */
 .ofertasfb-carrusel-wrapper {
      max-width: 1600px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
	 margin-top: 3%;
	 margin-bottom: 3%;
    }

    .ofertasfb-carrusel-container {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .ofertasfb-carrusel-item {
      flex: 0 0 20%;
      padding: 10px;
      text-align: center;
    }

    .ofertasfb-carrusel-item img {
      width: 100%;
      border-radius: 8px;
    }

    .ofertasfb-carrusel-item a {
     display: inline-block;
      margin-top: 1rem;
      padding: 0.3rem 5rem;
      background-color: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 6px;
    }
.ofertasfb-carrusel-item a:hover{
background-color: #0056b3;
}


    .ofertasfb-carrusel-nav {
      position: absolute;
  top: 50%;
  transform: translateY(-50%);
   border: 1px solid #ccc;
  font-size: 25px;
  padding: 2px 1px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
		color: rgba(1,51,110,1.00);
  transition: background-color 0.3s ease;
		background: rgba(255,255,255,0.00);
    }
.ofertasfb-carrusel-nav:HOVER {
background-color: #f0f0f0;
    }

    .ofertasfb-carrusel-nav.next {
      right: 0;
    }

    @media (max-width: 768px) {
      .ofertasfb-carrusel-item {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 500px) {
      .ofertasfb-carrusel-item {
        flex: 0 0 50%;
      }
    }
  /* Estilos de pie de pagina */
.footer {
  background-color: #009cff;
  color: #fff;
  padding: 0px 0px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
align-items: flex-start; /* mantiene los h4 en la misma línea horizontal */
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.footer-section {
  flex: 1 1 150px;
  min-width: 150px;
	height: auto;
}

.footer-section h4 {
  margin-bottom: 10px;
  color: #C7E4FF;
  font-size: 18px;
	
}

.footer-section p, .footer-section a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  margin: 4px 0;
}

.footer-section a:hover {
  color: #5db9ff;
}

.footer-logo {
  flex: 1 1 150px;
  text-align: center;
}

.footer-logo img {
  height: 200px;
  object-fit: contain;
}
.iconfooter{
	height: 25px;
	margin-bottom: -3%;
	margin-right: 5%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .footer-logo {
    order: -1; /* Coloca el logo al principio */
    margin-bottom: 20px;
  }
}

/* Pagina nosotros*/
.nosotros-container {
	 display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 10%;
	margin-bottom: 8%;
	margin-top: 1%;
	
}
.nosotros-texto{
	max-width: 50%;
	align-content: center;
	}
.titulo-nosotros{
		font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
	margin-bottom: -8%;
	
		
}
.subtitulo-nosotros{
			color: #01336E;
	text-align: justify;
    font-size: 16px;
    line-height: 1.6;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";

		
	}
.nosotros-imagen {
     display: flex;
    flex-direction: column;
    gap: 25px;
	align-items: center;
		margin-top: 1.2%;
}
.nosotros-imagen img {
	    max-width: 75%;
  
  
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nosotros-container {
    flex-direction: column;
    margin-left: 0;
    text-align: center;
  }

  .nosotros-texto {
    max-width: 90%;
    margin-top: 20px;
  }

  .titulo-nosotros {
    font-size: 3em;
    margin-bottom: 10px;
  }

  .subtitulo-nosotros {
    font-size: 15px;
    text-align: center;
  }

  .nosotros-imagen img {
    max-width: 90%;
  }
}

/*valores seccion*/
.valores-seccion {
  padding: 0px 20px;
  background-color: #f8f9fa;
  text-align: center;
	background-color: rgba(255,221,243,1.00);
			margin: -1%;
	height: auto;
	margin-top: -5%;
 }

.valores-titulo {
  font-size: 32px;
  margin-bottom: 30px;
  color: #01336e;
}

.valores-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.valores-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  transition: transform 0.3s ease;
	 display: flex;
  flex-direction: column;
  justify-content: center; /* Alinea verticalmente */
  align-items: center;     /* Alinea horizontalmente */
  text-align: center;
	margin-top: -3%;
}

.valores-card:hover {
  transform: translateY(-5px);
}

.valores-card img {
     width: 60%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
		
	
	
}

.valores-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #009cff;
	text-align: center;
}

.valores-card p {
  font-size: 14px;
  color: #333;
text-align: center;
}

.separador-sombra {
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 3px; /* Altura de la línea */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)); /* Efecto de sombra */
    margin: 20px 0; /* Espaciado entre secciones */
    border-radius: 5px; /* Bordes redondeados */
}
/* Visitanos*/
.visitanos-section {
    text-align: center;
	max-width: 100%;
    padding: 50px 20px;
	margin-top: -5%;
	
}

.visitanos-section h1 {
    font-size: 36px;
    color: #0072bc;
    margin-bottom: 10px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 80px; /* Espaciado entre las tarjetas */
    flex-wrap: wrap; /* Permite que las tarjetas se ajusten en pantallas pequeñas */
}

.card {
    background-color: white;
    border-radius: 20px;
    padding: 15px;
     box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
    width: 300px;
	margin-top: 35px;
	    }

.card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.card h2{
	color: #009cff;
}
.comollegar {
      display: inline-block;
            padding: 0.5rem 1rem;
      background-color: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 6px;
	font-size: 1.0rem;
}

.comollegar:hover {
    	 background-color: #0056b3;
}

.misionvision-container {
	 display: flex;
    align-items: center;
    justify-content: space-around;
    	margin-top: 1%;
	color: white;
	background-color: rgba(255,221,243,1.00);
	margin: -1%;
		
}
.misionvision-texto{
	max-width: 40%;
	align-content: center;
	margin-left: 10%;
	}
.misionvision-nosotros{
		font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: .95;
	margin-bottom: -5%;
	
		
}
.titulo-misionvision{
			font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: 1;
	margin-bottom: 15%;

		
	}
.misionvision-imagen {
     display: flex;
    flex-direction: column;
    gap: 15px;
	align-items: center;
		margin-top: 1%;
}
.misionvision-imagen img {
	    max-width: 58%;
	margin-top: -5%;
	margin-bottom: -3%;
  
  
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .misionvision-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
  }

  .misionvision-texto {
    max-width: 90%;
    margin: 0 auto;
  }

  .titulo-misionvision,
  .misionvision-nosotros {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .misionvision-imagen img {
    max-width: 90%;
  }
}

.texto-secciones {
  font-family: 'Jost', sans-serif;
  color: black;
  font-size: 16px;
  line-height: 1.6;
}

.texto-secciones h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
/* categorias*/
.carrusel-categorias-wrapper {
      position: relative;
      max-width: 90%;   /* o el ancho deseado */
  margin: 0 auto;
      overflow: hidden;
	    }
    /* Contenedor de tarjetas, tipo flex, con transición para animar el movimiento */
    .carrusel-categorias-container {
      display: flex;
      gap: 16px;
      transition: transform 0.5s ease;
		
    }
    /* Cada tarjeta fija de 200px */
    .tarjeta-categorias {
      flex: 0 0 200px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
		
    }
    .tarjeta-categorias img {
     max-width: 100%;
           object-fit: cover;
      display: block;
    }
    .contenido-categorias {
      padding: 1rem;
    }
    /* Botones de navegación */
    .boton-categorias {
      position: absolute;
  top: 50%;
  transform: translateY(-50%);
   border: 1px solid #ccc;
  font-size: 30px;
  padding: 2px 5px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
		color: rgba(1,51,110,1.00);
  transition: background-color 0.3s ease;
		background: rgba(255,255,255,0.00);

    }
.boton-categorias:hover{
	background-color: #f0f0f0;

}
    .boton-categorias.prev {
      left: -0px;
	 	
    }
    .boton-categorias.next {
      right: -0px;
    }
    /* Responsive: Si la pantalla es muy pequeña, reducimos el ancho de las tarjetas */
    @media (max-width: 600px) {
      .tarjeta-categorias {
        flex: 0 0 150px;
      }
      .carrusel-categorias-wrapper {
        width: 650px;
      }
    }



@media (max-width : 600px ){
	.contenedorpagina{
  flex-direction: column;
        align-items: center;
}
	
	.prev, .next {
        font-size: 14px;
        padding: 10px;
	}
	.header{
		display: grid;
		margin: 10px;
		
	}
	.av ul{
		margin-top: 20px;
		margin-bottom: 15px;
		font-size: 19px;
	}
	.service-buttons{
		flex-direction: column;
		width: auto;
		background: #164077;
		
	}
	 nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    footer {
        position: static;
    }
	.dropdown{
		display: block;
	}
	 .prev, .next {
        font-size: 14px;
        padding: 10px;
}
	.nav-links {
        display: none;
        flex-direction: column;
        width: 50%;
        text-align: LEFT;
	color: #01336E;
		border-radius: 10px
    
        
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links li {
        margin: 10px 0;
    }
	.nav-links a {
	color:  #01336E;;
	}

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
 }
.nav-links a:hover{
text-decoration: underline;
}
	  .button-container {
        flex-direction: column; /* Cambiar a columna para pantallas pequeñas */
        align-items: center; /* Centrar los botones en la columna */
    }

    .btn {
        width: 100%; /* Ancho completo para los botones */
        max-width: none; /* Sin ancho máximo */
        margin: 5px 0; /* Margen vertical entre botones */
        padding: 10px 20px; /* Ajustar padding si es necesario */
        font-size: 20px; /* Ajustar tamaño de fuente si es necesario */
    }
}




	/*contacto*/
/* Pagina nosotros*/
.contacto-container {
	 display: flex;
    align-items: center;
    justify-content: space-around;
   
	margin-bottom: 8%;
	margin-top: 10%;
	
}
.contactoseccion{
	max-width: 50%;
	align-content: center;
	margin-left: 10%;
	margin-top: 5%;
	margin-bottom: -10%;
	
}
.contacto-texto{
	max-width: 50%;
	align-content: center;
	margin-left: 0%;
	}
.titulo-contacto{
		  font-size: 3.5em;
    font-weight: bold;
    margin: 0;
		color:#C80056;
	 line-height: 1.5;
	margin-bottom: 1%;
	
	
	
	}
.subtitulo-contacto{
			color: #164077;
	text-align: justify;
    font-size: 16px;
    line-height: 1.6;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";

		
	}
.contacto-imagen {
     display: flex;
    flex-direction: column;
    margin-left: 10%;
	align-items: center;
		margin-top: 1.2%;
	 width: 500px;
}
.contacto-imagen img {
	    max-width: 10%;
  
  
}
.map-section2 {
            margin: 15px;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        

        .map-container2 {
            width: 500px;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        iframe {
            border: 0;
            width: 100%;
            height: 100%;
        }
	.contact-section {
      background-color: #fff;
      border-radius: 10px;
           padding: 0px 0px;
      max-width: 400px;
      text-align: center;
		font-family: Jost;
		margin-left: 5%;
		
		
    }
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .contact-icon {
			max-height: 35px;
	margin: 0%;
      
		
     
      margin-right: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-details {
      	font-family: Jost;
	color: black;
	font-size: 17px;
	margin-top: 1%;
	text-align: left;
	margin-bottom: 1%;
    }
    .contact-details h4 {
      margin: 0;
      font-size: 18px;
      color: black;
    }
    .contact-details p {
      margin: 1px 0 0;
      font-size: 16px;
      color: black;
    }

.mapcontacto{
	height: 400px;
	margin-top: -5%;
	margin-bottom: 1%;
}
.contactoimagen{
	max-width: 390px;
			margin-top: -45%;
}
    


/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
    align-items: center;
      margin: 8% 0%;
  }

  .contactoseccion,
  .contacto-texto {
    max-width: 90%;
    margin: 0 auto;
	  margin-top: 8%;
  }

  .titulo-contacto {
    font-size: 3em;
	  text-align: center;
  }

  .subtitulo-contacto {
    font-size: 15px;
	  text-align: center;
  }

  .map-container2,
  .map-section2 {
    width: 90%;
  }

  .contact-section {
    width: 90%;
	  margin-bottom: 20%;
  }

  .contacto-imagen img {
    max-width: 70%;
	 
  }
}


@media (max-width: 360px) {
	.contenedorpagina{
	padding: 20px;
		
	}

	
	#texto_nosotros{
		
	}
