/*
Theme Name: Sharrys Tech
Theme URI: https://sharrys.com/
Description: Tema Sharrys Tech
Author: Tu Nombre
Author URI: https://sharrys.com
Template: hello-elementor
Version: 1.0
Text Domain: sharrys-tech
*/

/**************************************************************
  1) FUENTE PERSONALIZADA
**************************************************************/
@font-face {
	font-family: 'Area Neu';
	src: url('https://iepsneiva.com/prueba-diego/wp-content/uploads/2024/10/Area-Neu-Regular.woff') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Acumin Pro';
	src: url('https://iepsneiva.com/prueba-diego/wp-content/uploads/2024/10/Acumin-BdPro.woff') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/**************************************************************
  2) TIPOGRAFÍA GENERAL EN EL HEADER
**************************************************************/
.site-header,
.site-header .site-title,
.site-header .menu li a,
.site-header .contact-info {
	font-family: 'Area Neu', sans-serif;
	color: #fff; /* Para que el texto sea blanco en general */
}
.contact-info a {
	text-decoration: none;
	color: #fff;
}

/**************************************************************
  3) ESTRUCTURA GENERAL DEL HEADER
**************************************************************/
.site-header {
	width: 100%;
	margin: 0;
	padding: 0 !important;
}

.header-inner.custom-header-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 40px;
	box-sizing: border-box;
	background-color: #93C93A; /* Color de fondo */
}
.header-left { flex: 1; text-align: left; }
.header-center { flex: 2; text-align: center; }
.header-right {
	flex: 1;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

/**************************************************************
  4) MENÚ PRINCIPAL (menu-1)
     - Horizontal en escritorio
     - Hamburguesa en móvil
**************************************************************/
/* Menú horizontal (escritorio) */
.menu1-desktop {
	display: inline-block; /* se ve solo en escritorio */
}
.menu1-desktop .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 25px;
}
.menu1-desktop .menu li a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}

/* Botón hamburguesa (móvil) */
.menu1-toggle-holder {
	display: none; /* En escritorio no se ve */
}
.menu1-toggle {
	background: none;
	border: none;
	cursor: pointer;
}
.hamburger-icon {
	display: block;
	width: 25px;
	height: 2px;
	background-color: #fff;
	position: relative;
}
.hamburger-icon::before,
.hamburger-icon::after {
	content: "";
	width: 25px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}
.hamburger-icon::before {
	top: -8px;
}
.hamburger-icon::after {
	top: 8px;
}

/* Overlay móvil oculto */
.menu1-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	padding: 40px;
	display: none; /* Oculto por defecto */
	z-index: 9999;
}
.menu1-mobile-overlay .close-menu1 {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}
.menu1-mobile-overlay .menu {
	list-style: none;
	margin-top: 60px; /* para no chocar con el botón cerrar */
	padding: 0;
}
.menu1-mobile-overlay .menu li {
	margin: 15px 0;
}
.menu1-mobile-overlay .menu li a {
	font-size: 18px;
	text-decoration: none;
	color: #fff;
}

/* Responsivo: mostrar hamburguesa en móvil y ocultar menú horizontal */
@media screen and (max-width: 768px) {
	.menu1-desktop {
		display: none; /* ocultar menú horizontal */
	}
	.menu1-toggle-holder {
		display: inline-block; /* mostrar botón hamburguesa */
	}
}

/**************************************************************
  5) MENÚ-2 (hamburguesa lateral en escritorio)
**************************************************************/
/* Botón hamburguesa para menú-2 */
.menu2-toggle-holder {
	display: block; /* se ve en escritorio */
}
.menu2-toggle {
	background: none;
	border: none;
	cursor: pointer;
}
.menu2-toggle .hamburger-icon {
	width: 25px;
	height: 2px;
	background-color: #fff;
	position: relative;
}
.menu2-toggle .hamburger-icon::before,
.menu2-toggle .hamburger-icon::after {
	content: "";
	width: 25px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}
.menu2-toggle .hamburger-icon::before {
	top: -12px;
}
.menu2-toggle .hamburger-icon::after {
	top: 12px;
}

/* Overlay lateral para menú-2 */
.menu2-lateral-overlay {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background-color: #222;
	color: #fff;
	z-index: 9999;
	padding: 30px;
	transition: all 0.3s ease;
}
.menu2-lateral-overlay .close-menu2 {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}
.menu2-lateral-overlay .menu {
	list-style: none;
	margin-top: 60px; /* para no chocar con el botón cerrar */
	padding: 0;
}
.menu2-lateral-overlay .menu li {
	margin: 15px 0;
}
.menu2-lateral-overlay .menu li a {
	text-decoration: none;
	color: #fff;
	font-size: 18px;
}

/* Para que se vea abierto cuando le agreguemos la clase active */
.menu2-lateral-overlay.active {
	right: 0;
}

/* Ocultar menú-2 en móvil (si así lo deseas) */
@media screen and (max-width: 768px) {
	.menu2-toggle-holder {
		display: none; /* no mostrar en móvil */
	}
	.menu2-lateral-overlay {
		display: none; /* no mostrar en móvil */
	}
	.footer-left p {
	margin: 0;
	font-size: 18px;
	font-family: 'Area Neu', sans-serif;
}
.follow-us {
	font-size: 18px;
	font-family: 'Area Neu', sans-serif;
	margin-bottom: 10px;
}
	
}
@media screen and (min-width: 768px) {
    .footer-left p {
	margin: 0;
	font-size: 28px;
	font-family: 'Area Neu', sans-serif;
}
.follow-us {
	font-size: 28px;
	font-family: 'Area Neu', sans-serif;
	margin-bottom: 10px;
}
}

/**************************************************************
  6) FORZAR ANCHO COMPLETO EN OTRAS SECCIONES (OPCIONAL)
**************************************************************/
.page-header .entry-title,
.site-footer .footer-inner,
.site-footer:not(.dynamic-footer),
.site-header .header-inner,
.site-header:not(.dynamic-header),
body:not([class*=elementor-page-]) .site-main {
	max-width: 100% !important;
}

/**************************************************************
  7) FOOTER
**************************************************************/

.custom-footer {
	background-color: #05ACD7; /* Rojo */
	color: #fff;
	padding: 20px 0;
	    
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Esto reduce la separación al mínimo */
  gap: 480px; /* Controla la distancia entre la izquierda y derecha */
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  margin-right: 30px; /* Ajusta este valor a tu gusto */
}




.footer-left a {
	color: #fff;
	text-decoration: none;
}

/* Follow us */
.footer-right {
	text-align: right;
}

.follow-us {
	font-size: 28px;
	font-family: 'Area Neu', sans-serif;
	margin-bottom: 10px;
}

.social-icons a img {
	width: 59px;  /* Ajusta el tamaño de los íconos */
	height: 59px;
	border-radius: 50%; /* Para que se vean redondos si tu imagen es cuadrada */
	margin-left: 10px;
}

/* Responsivo en pantallas pequeñas */
@media screen and (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}
	.footer-right {
		text-align: center;
	}
	.social-icons a img {
		margin-left: 5px;
	}
}

