@charset "UTF-8";
/* ===============================
   CONFIGURACIONES GENERALES
   =============================== */
html {
    scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Barlow', sans-serif;
	background-color: #f1f1ef;
	font-size: 19px;
	line-height: 28px;
	color: #2B3D44;
}

/* ===============================
   CONTENEDORES GENERALES
   =============================== */
.wrap {
	width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.seccion {
	padding: 30px 0;
}

/* ===============================
   LOGO
   =============================== */
.portaLogo {
	margin: 0; 
	padding: 0;
	width: 310px;
}

.logo {
	width: 100%;
	height: auto;
}

.contenedorCentrado {
	display: flex;
	justify-content: center; /* Centra horizontalmente */
}

/* ===============================
   TIPOGRAFÍA GENERAL
   =============================== */
h1, .estiloTitulo {
	font-family: 'Barlow', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 50px;
	line-height: 49px;
	padding: 20px 0;
	margin-top: 180px;  
}

h2 {
	font-family: 'Barlow', sans-serif;
	font-size: 40px;
	line-height: 37px;
	padding: 20px 0;
	font-weight: 400;
}

.com-content-category-blog__item h2 {
	font-size: 26px;
	line-height: 26px;
}

h3, h4 {
	font-family: 'Barlow', sans-serif;
	font-size: 26px;
	line-height: 26px;
	padding: 10px 0;
	font-weight: 700;
}

p, li {
	padding: 10px 0 20px 0;
	font-size: 19px;
	line-height: 28px;
}

b {
	font-weight: 700;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	padding: 10px 0 20px 0;
	list-style: none;
}

/* ===============================
   TEXTOS ESPECIALES
   =============================== */
.txtIntro {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.txtDestacado {
	font-size: 24px;
}

.liFooter {
	padding: 5px 0;
}

.pieDeFoto {
	font-size: 16px;
	padding: 5px 0 10px 0;
}

.txtPublicidad {
	font-size: 16px;
	padding: 10px 0 5px 0;
}

.txtPequeno,
.mod-breadcrumbs__here,
.breadcrumb-item,
.breadcrumb-item li,
.breadcrumb-item li a,
.mod-breadcrumbs.active span,
.pathway,
.text-muted {
	font-size: 14px;
	padding: 0;
	line-height: 14px;
}

.com-content-category-blog__item p {
	font-size: 19px;
	line-height: 23px;
}

.txtCentrado {
	text-align: center;
}

.espacioInferior {
	padding-bottom: 50px;
}

.espacioFinal {
	padding-bottom: 100px;
}

.cursiva {
	font-family: 'signpainter';
	font-size: 60px;
	line-height: 54px;
	color: #714732;
	padding: 20px;
}

/* ===============================
   IMÁGENES Y FORMATO VISUAL
   =============================== */
.redondear,
.com-content-article__body img {
	border-radius: 20px;
}

.imgFluida,
.com-content-article__body img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 500px;
}

.imgFluidaBanner {
	width: 100%;
	height: auto;
	display: block;
}

/* ===============================
   ICONOS
   =============================== */
.icoSocial {
	font-size: 40px;
}

.icoSocial a {
	text-decoration: none;
}

/* ===============================
   COLORES DE TEXTO
   =============================== */
.colorNegro {color: #000000;}
.colorBlanco {color: #FFFFFF;}
.colorGrisOscuro {color: #2B3D44;}
.colorAzulOncoOscuro {color: #12619C;}
.colorAzulOncoClaro {color: #6FBCFE;}
.colorAzulClaro {color: #D7FBFF;}
.colorGrisClaro {color: #F8F5F2;}

/* ===============================
   COLORES DE FONDO
   =============================== */
.fondoGrisOscuro {background-color: #2B3D44;}
.fondoAzulOncoOscuro {background-color: #12619C;}
.fondoAzulOncoClaro {background-color: #6FBCFE;}
.fondoAzulClaro {background-color: #D7FBFF;}
.fondoGrisClaro {background-color: #F8F5F2;}
.fondoNegro {background-color: #000000;}
.fondoBlanco {background-color: #FFFFFF;}

.barraColor {
	height: 8px;
	width: 100%;
}

/* ===============================
   PIE DE PÁGINA
   =============================== */
.footer {
	background-color: #000;
	padding: 30px 20px 100px 20px;
}
/* ===============================
   MENÚ PRINCIPAL - ENCABEZADO
   =============================== */

/* Contenedor flexible del encabezado */
.encabezadoFlex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Contenedor del menú principal */
.menuPrincipalContenedor {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex: 1;
}

/* Lista de navegación principal */
ul.menuPrincipal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
    gap: 20px;
}

/* Elementos individuales del menú */
ul.menuPrincipal li {
  	display: flex;
	align-items: center;
  
}

/* Enlaces del menú principal */
ul.menuPrincipal a {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	font-size: 17px;
	line-height: 22px;
	padding: 10px;
	border-radius: 5px;
	transition: background-color 0.3s ease;

  	text-align: center;
	white-space: normal;
	max-width: 120px;   
}

/* Hover en los enlaces del menú */
ul.menuPrincipal a:hover {
	background-color: #2f5daa;
	color: #fff;
}

/* Contenedor de barra de menú */
.barraMenu {
	padding: 0 0 20px 0;
	width: 100%;
	max-width: 1440px;
	margin-right: auto;
	margin-left: auto;
}

/* Sección especial con barra de menú */
.barraMenuSeccion {
	padding: 30px 0;
	max-width: 1440px;
	margin-right: auto;
	margin-left: auto;
}

/* Ajuste para menú en el pie de página */
.menuFooter li {
	padding: 0;
}
/* ===============================
   SISTEMA DE COLUMNAS Y LAYOUT
   =============================== */

/* Fila flexible para organizar columnas */
.row {
	display: flex;
	flex-wrap: wrap;
}

/* Columnas generales con márgenes y padding */
.col-2,
.col-3,
.col-4 {
	padding: 15px;
	margin-bottom: 30px;
}

/* Columna centrada verticalmente */
.centrado-vertical {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Columnas con ancho fijo (300px) */
.colABa, .colBAb {
	flex: 0 0 300px;
	margin-right: 15px;
}

/* Columnas que ocupan el espacio restante */
.colABb, .colBAa {
	flex: 1;
	margin-left: 15px;
}

/* Columnas proporcionales para 2, 3 y 4 partes */
.col-2 {
	flex: 0 0 calc(50% - 30px);
	margin: 0 15px;
}
.col-3 {
	flex: 0 0 calc(33.3333% - 30px);
	margin: 0 15px;
}
.col-4 {
	flex: 0 0 calc(25% - 30px);
	margin: 0 15px;
}

/* Fondo y borde para secciones destacadas */
.fondoBordeCol {
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}
/* ===============================
   BOTÓN WHATSAPP FIJO
   =============================== */

/* Contenedor del botón */
.botonWhatsapp {
	position: fixed;
	bottom: 90px;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	z-index: 9999;
}

/* Estilo del enlace/botón circular */
.whatsapp-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	box-shadow: 0px 2px 5px #888888;
	text-decoration: none;
}

/* Icono de WhatsApp */
.whatsapp-link i {
	color: #fff;
	font-size: 45px;
}
/* ===============================
   BOTÓN LINKTREE FIJO
   =============================== */

/* Contenedor del botón */
.botonLinkTree {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	z-index: 9999;
}

/* Estilo del botón circular */
.linktree-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: #333;
	border-radius: 50%;
	box-shadow: 0px 2px 5px #888888;
	text-decoration: none;
}

/* Icono dentro del botón */
.linktree-link i {
	color: #fff;
	font-size: 30px;
	padding-bottom: 5px;
}
/* ===============================
   MENÚ CELULAR INFERIOR FIJO
   =============================== */

/* Barra inferior fija para móviles */
.menuCelular {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 60px;
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	z-index: 9990;
}
/* ===============================
   BOTONES ADAPTATIVOS (Celular)
   =============================== */

/* Estilo base del botón */
.buttonMenuCelular {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 52px;
	padding: 0 20px;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	background-image: linear-gradient(#464d55, #25292e);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
	            0 3px 6px rgba(0, 0, 0, 0.05);
	transition: all 150ms;
	user-select: none;
	text-align: center;
	text-decoration: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

/* Hover */
.buttonMenuCelular:hover {
	box-shadow: rgba(0, 1, 0, 0.2) 0 2px 8px;
	opacity: 0.85;
}

/* Focus */
.buttonMenuCelular:focus {
	box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 3px;
}

/* Colores alternativos */
.btnMenuColor {
	color: #fff;
	background-image: linear-gradient(#464d55, #25292e);
}

.btnWhatsColor {
	color: #fff;
	background-image: linear-gradient(#6eed75, #00c817);
	font-size: 30px;
}

.btnMailsColor {
	color: #42370D;
	background-image: linear-gradient(#ffed4a, #ffb547);
	font-size: 25px;
}

/* ===============================
   MASONRY / TARJETAS DE CONTENIDO
   =============================== */

/* Contenedor general */
.container {
	width: 100%;
}

/* Tarjeta individual tipo ficha */
.itemContainer {
	background-color: #fff;
	float: left;
	margin: 10px;
	width: 340px;
	border-radius: 20px;
}

/* Imagen en la tarjeta */
.portaImagen img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px 20px 0 0;
}

/* Texto en la parte inferior de la tarjeta */
.portaTextoFicha {
	padding: 15px;
	background-color: #fff;
	border-radius: 0 0 20px 20px;
}

/* Limpia los flotantes */
.limpiador {
	clear: both;
}
/* ===============================
   LINKTREE
   =============================== */

.linktreeContent {
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.linktreeArticle {
	display: flex;
	align-items: center;
	border-radius: 20px;
	background-color: #ededed;
}

.linktreeArticle img {
	width: 100%;
	max-width: 150px;
	height: auto;
	border-radius: 20px 0 0 20px;
}

.linkTreeTitulo {
	padding: 15px;
	line-height: 21px;
}

.portalinktreeArticle {
	padding: 15px 0;
}

.linktreeHeader h2 {
	padding: 50px 0 10px 0;
}
/* ===============================
   CLASES DE VISIBILIDAD RESPONSIVA
   =============================== */

.soloTableta {
	display: none;
}

.soloCelular {
	display: none;
}

.celularTableta {
	display: none;
}
/* ===============================
   PORTADA Y TEXTOS CENTRADOS
   =============================== */

/* Encabezado del blog centrado */
.blog-featured .page-header h1 {
	text-align: center;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Texto de portada */
.txtPortada {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.txtPortada h2 {
	text-align: center;
}
/* ===============================
   ALIADOS - GALERÍA DE IMÁGENES
   =============================== */

.fila-imagenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.fila-imagenes img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* ===============================
   FILOSOFIA - GALERÍA DE IMÁGENES
   =============================== */
.filosofia {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.titulo-filosofia {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
}

/* Primera fila: texto + imagen */
.filosofia-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.filosofia-texto {
  flex: 1 1 48%;
  min-width: 280px;
  font-size: 18px;
  line-height: 1.6;
}

.filosofia-imagen-superior {
  flex: 1 1 48%;
  min-width: 280px;
}

.filosofia-imagen-superior img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Segunda fila: imagen a la izquierda + texto a la derecha */
.filosofia-final {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
}

.filosofia-final-imagen {
  flex: 1 1 40%;
  min-width: 250px;
  max-width: 400px;
}

.filosofia-final-imagen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filosofia-final-texto {
  flex: 1 1 55%;
  min-width: 280px;
  font-size: 18px;
  line-height: 1.6;
}

/* Versión responsiva para pantallas pequeñas */
@media (max-width: 768px) {
  .filosofia-contenido,
  .filosofia-final {
    flex-direction: column;
    align-items: center;
  }

  .filosofia-texto,
  .filosofia-final-texto {
    text-align: justify;
  }

  .filosofia-final-imagen,
  .filosofia-imagen-superior {
    max-width: 90%;
  }
}
/* ===============================
   PAGINACIÓN Y NAVEGACIÓN
   =============================== */

/* Separación superior */
.pagenavigation {
	padding-top: 10px;
}

/* Breadcrumb (migas de pan) */
.mod-breadcrumbs__wrapper {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mod-breadcrumbs {
	display: flex;
	list-style: none;
}

.mod-breadcrumbs__item {
	display: flex;
	align-items: left;
}

.mod-breadcrumbs__item + .mod-breadcrumbs__item::before {
	content: ">";
	padding: 0 8px;
}
/* ===============================
   PAGINACIÓN DETALLADA
   =============================== */

.pagination.ms-0 {
	margin-left: 0;
}

.pagination .btn {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: 1px solid transparent;
	border-radius: 0.2rem;
}

.pagination .btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.2rem;
}

.pagination .btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.pagination .btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
}

.pagination .previous .icon-chevron-left,
.pagination .next .icon-chevron-right {
	margin-right: 0.5rem;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
/* ===============================
   ESTILO BLOG / ARTÍCULOS
   =============================== */

.com-content-category-blog__item {
	background-color: white;
	border-radius: 20px;
	box-sizing: border-box;
}

.com-content-category-blog__item .item-content {
	padding: 15px;
}

.blog-items {
	display: flex;
	flex-wrap: wrap;
	gap: 15px; /* Espacio entre los elementos */
}

.blog-item {
	flex: 1 1 calc(33.333% - 30px);
	box-sizing: border-box;
	max-width: 600px;
}

.blog-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px 20px 0 0;
}
/* ===============================
   PORTADA CON CUADROS SUPERPUESTOS
   =============================== */

#portada {
	position: relative;
}

.overlay-box {
	position: absolute;
	width: 25%;
	background: rgba(255, 255, 255, 0.8);
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	border-radius: 5px;
}

.overlay-box .icon {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}


/* Posiciones individuales */
.overlay-box.box1 {
	top: 80%;
	left: 10%;
}
.overlay-box.box2 {
	top: 80%;
	left: 37%;
}
.overlay-box.box3 {
	top: 80%;
	left: 64%;
}
/* Posiciones individuales Servicios*/
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col-3 {
  flex: 0 0 calc(33.3333% - 30px);
  margin: 15px;
}

.fondoBordeCol {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icon {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}
.fondoBordeCol:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.contacto-box {
  background-color: #2f5daa;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 22px;
  line-height: 1.6;
  margin-top: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-box .telefono {
  font-size: 26px;
  font-weight: bold;
  margin: 5px 0;
}
/* Posiciones individuales Testimonios*/
.fondoBordeCol1 {
  background: #2f5daa;
  color:#fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.fondoBordeCol1:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
/* ===============================
   TÍTULO TIPO "HERO" EN PORTADA
   =============================== */

.hero-titulo {
	position: absolute;
	top: 10%;
	left: 10%;
	z-index: 10;
	max-width: 500px;
	color: white;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.7);
	padding: 20px;
	width: auto;
}

.hero-titulo h1 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: bold;
}

.hero-titulo p {
	font-size: 20px;
	margin-bottom: 20px;
}

.btn-hero {
	background-color: #0057A8;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.btn-hero:hover {
	background-color: #003f7a;
}
/* ===============================
   RESPONSIVO: HERO TITLE
   =============================== */

@media only screen and (max-width: 768px) {
  .hero-titulo {
    top: 20%;
    left: 5%;
    right: 5%;
    max-width: 90%;
    padding: 15px;
    text-align: center;
  }

  .hero-titulo h1 {
    font-size: 30px;
  }

  .hero-titulo p {
    font-size: 16px;
  }

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

/* ===============================
   RESPONSIVO GENERAL
   =============================== */

@media (max-width: 768px) {
  .overlay-box {
    position: static;
    width: 100%;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.9);
  }

  .encabezadoFlex {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .portaLogo {
    width: 200px;
    margin-bottom: 10px;
    text-align: center;
  }

  .menuPrincipalContenedor {
    justify-content: center;
    flex-wrap: wrap;
  }

  ul.menuPrincipal {
    flex-direction: column;
    align-items: center;
  }

  ul.menuPrincipal li {
    margin: 5px 0;
  }

  ul.menuPrincipal a {
    font-size: 22px;
    padding: 8px 12px;
  }
}
/* ===============================
   RESPONSIVO POR RESOLUCIÓN
   =============================== */

/* Escritorio ancho: 1280px */
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .wrap {width: 1280px;}
  .soloTableta, .soloCelular, .celularTableta {display: none;}
  .itemContainer {width: 300px;}
}

/* Escritorio mediano: 960px */
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .wrap {width: 960px;}
  .soloTableta, .soloCelular, .celularTableta {display: none;}
  .itemContainer {width: 300px;}
  .blog-item {flex: 1 1 calc(50% - 30px);}
}

/* Tableta: 640px */
@media only screen and (min-width: 640px) and (max-width: 959px) {
  .wrap {width: 640px;}
  .soloEscritorio {display: none;}
  .soloTableta, .celularTableta {display: block;}
  .soloCelular {display: none;}
  .itemContainer {width: 300px;}
  .blog-item {flex: 1 1 calc(50% - 30px);}
}

/* Celular mediano: 480px */
@media only screen and (min-width: 480px) and (max-width: 639px) {
  .wrap {width: 480px;}
  .soloEscritorio, .escritorioTableta {display: none;}
  .soloCelular, .celularTableta {display: block;}
  .botonWhatsapp, .botonLinkTree {display: none;}
  .buttonMenuCelular {height: 48px;}
  .col-2, .col-3, .col-4, .colABa, .colBAb, .colABb, .colBAa {
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  h1, h2, h3, h4, p {text-align: center;}
  .itemContainer {width: 220px;}
  .linkTreeTitulo {text-align: left;}
  .blog-item {flex: 1 1 100%;}
}
/* ===============================
   RESPONSIVO CELULAR PEQUEÑO
   =============================== */

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .wrap {width: 320px;}
  .soloEscritorio, .soloTableta, .escritorioTableta {display: none;}
  .soloCelular, .celularTableta {display: block;}
  .botonWhatsapp, .botonLinkTree {display: none;}
  .buttonMenuCelular {height: 48px;}
  .col-2, .col-3, .col-4, .colABa, .colBAb, .colABb, .colBAa {
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  h1, .estiloTitulo {font-size: 42px; line-height: 40px; text-align: center;}
  h2, h3, h4, p {text-align: center;}
  .itemContainer {width: 310px; margin: 10px 0;}
  .linkTreeTitulo {text-align: left;}
  .blog-item {flex: 1 1 100%;}
}
