@charset "utf-8";
/* CSS Document */

/*---------------------------------------
  GENERAL               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}



/*---------------------------------------
  PRE LOADER              
-----------------------------------------*/

/* Clase para deshabilitar el scroll */
.no-scroll {
  overflow: hidden;
  height: 100vh; /* Evita desplazamiento vertical */
}


/* Contenedor principal */
.preloaderBg {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Contenedor del logo y círculo animado */
.preloaderContent {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 1;
  animation: fadeOut 1s ease 4.5s forwards; /* Desvanecer contenido después de 4.5s */
}

/* Texto del preloader fuera del círculo */
.preloaderText {
    font-size: 30px;
  color: #516D30; /* Color del texto */
  margin-top: -130px;
  position: relative;
  z-index: 2; /* Para asegurarse de que esté sobre los paneles */
  animation: fadeOut 1s ease 4.5s forwards; /* Desvanecer el texto junto con el resto del contenido */	
	font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
	line-height: 30px;
}

.preloaderText strong {
	font-weight: 800;
}

.preloaderText span {
	font-size: 20px;
}

@media (max-width: 992px) {
	.preloaderText {		
	font-size: 25px;	
	}
	
	.preloaderText strong {
	font-weight: 800;
}
	.preloaderText span {
	font-size: 20px;
}
		
}


/* Logo en el centro */
.preloaderLogo {
  background: url("../media/imagenes/vertere_icono_preloader.png")
    no-repeat center;
  background-size: 150px;
  width: 150px;
  height: 150px;
  margin: auto;	
	
}

/* Círculo animado alrededor del logo */
.preloaderCircle {
  border: 5px solid #516D30;
  border-top: 5px solid #fff;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  animation: spin 1s ease-in-out infinite;
  position: relative;
  margin: auto;
  top: -200px;	
}

/* Panel izquierdo */
.preloaderWindow.left {
  background: #fff; /* Color rojo */
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  animation: openWindowLeft 1.5s ease forwards 4.5s; /* Animación al abrir */
}

/* Panel derecho */
.preloaderWindow.right {
  background: #fff; /* Color rojo */
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  animation: openWindowRight 1.5s ease forwards 4.5s; /* Animación al abrir */
}

/* Animaciones */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes openWindowLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes openWindowRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Transición suave para ocultar todo el preloader */
.hidden {
  opacity: 0;
  transition: opacity 1s ease;
}


/*---------------------------------------
  PRE LOADER              
-----------------------------------------*/


/*---------------------------------------
 Menú Principal             
-----------------------------------------*/

.menu-principal {
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%; /* Asegura que ocupe todo el ancho */
    position: relative; /* Para mantener la alineación */
}

.menu-principal nav {
    width: 100%; /* Elimina restricciones de ancho */
    padding: 0 20px; /* Ajusta el espaciado interno opcionalmente */
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho */
}



.menu-principal .main-navbar-nav {
  color: #fff !important;	
	}

.menu-principal .main-navbar-nav .navbar-brand {
  font-size: 38px;
  letter-spacing: 4px;
  position: relative;
  top: 5px;
  font-weight: 500;
}

.menu-principal .main-navbar-nav .navbar-brand .logo-img {
    height: 80px; /* Ajusta el tamaño según sea necesario */
    width: auto;
    display: inline-block;
    vertical-align: middle;
}


.main-navbar-nav li {
  color: #fff;
  font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
	
}


.main-navbar-nav .navbar-nav .nav-item a:hover {
 /* color: #92C020 !important;*/
  transition: all .33s ease;	
	transform: scale(1.05)
}

.main-navbar-nav .active {
  color: #fff !important;
  
}
.main-navbar-nav a {
  color: #fff !important;
}
.main-navbar-nav .nav-link {
  opacity: 1 !important;
  margin: 0 35px;
  font-size: 1rem;
  font-weight: 500;
}

.social-icons-header i {
  margin: 5px;
  font-size: 18px;
}

.social-icons-header a:hover i { 
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
	transform: scale(1.2);
}

.navbar-toggler {
    background-color: white; /* Cambia el fondo del botón a blanco */
    border-color: white; /* Cambia el color del borde a blanco */
}

.navbar-toggler-icon {
    background-image: url("../media/imagenes/vertere_menu.svg");
    filter: invert(1); /* Invierte el color de las líneas del icono para que sean blancas */
}

@media (min-width: 992px) {
	.nav-item-movil {
		display: none;
	}
	
}

@media (max-width: 992px) {
.social-icons-header i {
  margin: 30px 15px 0 15px;
  font-size: 30px;
}
}

/*---------------------------------------
 Menú Principal             
-----------------------------------------*/





/*---------------------------------------
 Aviso de Privacidad           
-----------------------------------------*/



.btn-outline-reg {
	display: inline-block;
	padding: 1.1875rem 1.875rem 1.1875rem 1.875rem;
	border: 0.125rem solid #516D30;
	border-radius: 0.25rem;
	background-color: #516D30;
	color: #fff;	
	text-decoration: none;
	transition: all 0.2s;	
	font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
}

.btn-outline-reg:hover {
	background-color: #92C020;
	color: #000000;
	text-decoration: none;
	border-color: #92C020;
}



.ex-header {
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: #516D30;
	text-align: center;
}

.ex-header h1 {
	color: #fff;
	font-family: "Montserrat";
    font-weight: 800;
    font-style: normal;
	font-size: 2rem;
}

.ex-basic-1 {
	padding-top: 2rem;
	padding-bottom: 0.875rem;
	background-color: #fff;
}

.ex-basic-1 .breadcrumbs {
	margin-bottom: 1rem;
	font-family: "Montserrat";
    font-weight: 600;
    font-style: italic;
}

.ex-basic-1 .breadcrumbs a {
	color: #516D30;
}

.ex-basic-1 .breadcrumbs .fa {
	margin-right: 0.5rem;
	margin-left: 0.625rem;
}

.ex-basic-2 {
	padding-top: 4.75rem;
	padding-bottom: 4rem;
	font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
	color: #000000;
	font-size: .9rem;
	text-align: justify;
}

.ex-basic-2 h2 {
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1.75rem;
	text-align: left;
}

.ex-basic-2 h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-style: italic;
	text-align: left;
}

.ex-basic-2 .text-container {
	margin-bottom: 3.625rem;
}

.ex-basic-2 .list-unstyled .fas {
	color: #516D30;
	font-size: 0.5rem;
	line-height: 1.375rem;
}

.ex-basic-2 .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.ex-basic-2 .btn-outline-reg {
	margin-top: 1.75rem;
}


/*****************************/
/*     21. Media Queries     */
/*****************************/	
/* Min-width width 768px */
@media (min-width: 768px) {
	
	


	/* Extra Pages */
	.ex-header {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	
	
}
/* end of min-width width 768px */


/* Min-width width 992px */
@media (min-width: 992px) {
	

	/* Extra Pages */
	.ex-header h1 {
		width: 60%;
		margin-right: auto;
		margin-left: auto;
	}

	
}
/* end of min-width width 1200px */


/*---------------------------------------
 Aviso de Privacidad           
-----------------------------------------*/





/*---------------------------------------
Footer
-----------------------------------------*/

footer {
	background-color: #516D30;
	color: fff;
	padding: 50px 10px 20px 10px;  
}


footer img {
	width: 300px;
	margin-bottom: 20px;
}

footer ul {
	list-style: none;
	padding: 0;
	line-height: 1.8;
	font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
}

footer ul li a {
	color: #fff;
	text-decoration: none;
}


footer ul li a:hover {
	color: #fff;
  text-decoration: underline;
}


footer .contact-dates {
	line-height: 1.8;
	margin-top: 20px;
	color: #fff;
	font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;	
}

footer .googlemaps-frame {
	width: 100%;
	height: 250px;
	margin-bottom: 20px;	
}

footer iframe {
  border-radius: 5px;
}

footer .direction-dates {
	line-height: 1.5;
	font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;	
	color: #fff;
	font-size: .8rem;
}

footer .direction-dates strong {	
    font-weight: 600;
	font-size: 1rem; 
}


footer .copywriter {	
	margin: 0;
	color: #fff;
	font-family: "Montserrat";
    font-weight: 400;
    font-style: italic;
}







/*---------------------------------------
Boton de WhatsApp
-----------------------------------------*/

/* Estilo del botón de WhatsApp flotante con pulsación */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #516D30; /* Color de fondo de WhatsApp */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    animation: pulsar 1.5s infinite ease-in-out; /* Efecto de pulsación constante */
}

.whatsapp-chat a {
    text-decoration: none;
}

/* Estilización del ícono de WhatsApp */
.whatsapp-icon {
    width: 50px; /* Tamaño del ícono */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Definir la animación de pulsación */
@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Tamaño aumentado al 110% */
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-chat:active {
    transform: scale(0.9); /* Efecto de pulsación al hacer clic */
}







/*---------------------------------------
Boton de WhatsApp
-----------------------------------------*/




