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

html {
    scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: 'Barlow', sans-serif;
	background-image: url("images/pattern.jpg");
	background-position: center;
	font-size: 19px; line-height: 28px;
}
.wrap {
	width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
.seccion {padding: 30px 0;} 


.portaLogo {padding: 20px 0; margin-left: auto; margin-right: auto; width: 310px;}
.logo {height: auto; width: 100%;}



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


.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/* Opción de H1 en bold itálica */
h1, .estiloTitulo {
	font-family: "Barlow", sans-serif;
      font-weight: 900;
      font-style: normal;
	font-size: 50px;
	line-height: 49px;
	padding: 20px 0;
}

h2 {
	font-family: 'Barlow', sans-serif;
	font-size: 40px;
	line-height: 36px;
	padding: 20px 0;
	font-weight: 400;
    font-style: normal;
}
h3, h4 {
	font-family: 'Barlow', sans-serif;
	font-size: 22px;
	line-height: 22px;
	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;}
a:hover {}

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

.txtIntro {max-width: 600px; margin-left: auto; margin-right: auto;}
.txtDestacado {font-size: 24px;}
.pieDeFoto {font-size: 16px; line-height: 16px;}
.txtPublicidad  {font-size: 16px; padding: 10px 0 5px 0;}
.txtPequeno {font-size: 14px; padding: 0; line-height: 14px;}
.txtSinPading {padding: 0;}
.txtFicha {padding:0px;  line-height: 21px;  text-align: left; text-align: center;}

.linkArrow {background-image: url("images/link_arrow.png"); background-repeat: no-repeat; background-position: center left; padding-left: 30px;}



.cursiva {font-family: 'signpainter'; font-size: 60px;	line-height: 54px;	color: #714732;	padding: 20px;}
.txtCentrado {text-align: center;}
.espacioInferior {padding-bottom: 50px;}
.espacioFinal {padding-bottom: 100px;}
.redondear {border-radius: 20px;}
.pad10 {padding: 10px;}
.pad1020 {padding: 10px 20px;}
.imgFluida {width: 100%; height: auto; display: block; max-width: 500px;}
.imgFluidaCentrada {width: 100%; height: auto; display: block; max-width: 500px; margin-left: auto; margin-right: auto;}
p img {border-radius: 20px;}
.imgFluidaBanner {width: 100%; height: auto; display: block;} 

.icoSocial {font-size: 40px;}
.icoSocial a {text-decoration: none;}


.colorNegro {color: #161616;}
.colorBlanco {color: #FFFFFF;}
.colorRosa   { color: #ff3366;}
.colorNaranja { color: #ff6633;}
.colorMorado { color: #993399;}


.fondoNegro {background-color: #000000;}
.fondoBlanco {background-color: #FFFFFF;}


.fondoRosa   { background: #ff3366;}
.fondoNaranja { background: #ff6633;}
.fondoMorado { background: #993399;}
.fondoNegro  { background: #161616;}


.barraColor {height: 8px; width: 100%;}
.footer {padding: 30px 20px 100px 20px;}



/* Menu Principal */
nav {
			display: flex;
			justify-content: center;
			align-items: center;
		}
		
		nav ul {
			list-style: none;
			margin: 0;
			padding: 0;
			display: flex;
			justify-content: center;
			align-items: center;
		}
		
		nav li {
			margin: 0 10px;
		}
		
		nav a {
			font-family: 'Barlow', sans-serif;
			font-weight: 400;
			color: #000;
			text-decoration: none;
			font-size: 26px;
			line-height: 26px;
			padding: 10px;
			border-radius: 5px;
			transition: background-color 0.3s ease;
		}
		
		nav a:hover {
			background-color: #000;
			color: #fff;
		}
.barraMenu {padding: 0 0 20px 0; width: 100%; max-width: 1440px; margin-right: auto; margin-left: auto;}
.barraMenuSeccion {padding: 30px 0 30px 0; max-width: 1440px; margin-right: auto; margin-left: auto;}

.menuFooter li {padding: 0;}

/* Sistema de colúmnas */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-2,
.col-3,
.col-4 {
  padding: 15px;
  margin-bottom: 30px;
}

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

.colABa, .colBAb {
  flex: 0 0 300px; /* Ancho fijo de 300px */
  margin-right: 15px; /* Espacio entre columnas */
}

.colABb, .colBAa {
  flex: 1; /* Ocupa el espacio restante */
  margin-left: 30px; /* Espacio entre columnas */
}

.col-2 {
  flex: 0 0 calc(50% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

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

.col-4 {
  flex: 0 0 calc(25% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}
.fondoBordeCol {border: 1px solid #ccc; background-color: #f1f1f1;}


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

.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;
}

.whatsapp-link i {
  color: #fff;
  font-size: 45px;
}

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

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

.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;
}

.linktree-link i {
  color: #fff;
  font-size: 30px;
}

a.linktree-link {text-decoration: none;}


/* Menu Celular */
.menuCelular {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  z-index: 9990;
  background-color: #000;
  padding: 10px 0;	
}


/* Boton Clular */
.buttonMenuCelular {
  align-items: center;
  background-color: initial;
  background-image: linear-gradient(#464d55, #25292e);
  border-radius: 8px;
  border-width: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1),0 3px 6px rgba(0, 0, 0, .05);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-family: expo-brand-demi,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 18px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  margin: 5px;
  outline: none;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all 150ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.buttonMenuCelular:hover {
  box-shadow: rgba(0, 1, 0, .2) 0 2px 8px;
  opacity: .85;
}

.buttonMenuCelular:active {
  outline: 0;
}

.buttonMenuCelular:focus {
  box-shadow: rgba(0, 0, 0, .5) 0 0 0 3px;
}

.btnMenuNaranja {color: #fff; background-image: linear-gradient(#ff5d15, #a54300);}
.btnMenuColor {color: #fff; background-image: linear-gradient(#2b2b2b, #141414);}
.btnWhatsColor {color: #fff; background-image: linear-gradient(#6eed75, #00c817); font-size: 30px;}
.btnMailsColor {color: #42370D; background-image: linear-gradient(#ffed4a, #ffb547); font-size: 25px;}
.envelope {font-size: 23px;}
.btnMasGrande {font-size: 90px; width: 180px; height: 100px; border-radius: 30px;}


/* Masonry */
.grid {
    width: calc(100% - 20px);
    margin: 0 auto;
}
.grid-b {width: calc(100%);}

.grid-item {
    width: 16.6%;
    box-sizing: border-box;
}
.grid-item-b {
    width: 33%;
    box-sizing: border-box;
}
.portaitem {
    margin: 5px 2px 0 3px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: 2s ease 0s normal none 1 running fadeIn;
    box-sizing: border-box;
}
.cuadrito {
    margin: 0 15px 15px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    animation: 2s ease 0s normal none 1 running fadeIn;
    box-sizing: border-box;
}
.portaImagen img {
    width: 100%;
    height: auto;
	display: block;
    border-radius: 15px 15px 0 0;
}
.portaImagenB {padding: 15px;}
.portaImagenB img {
    width: 100%;
    height: auto;
	display: block;
    border-radius: 10px;
}
.portaTextoFicha {
	padding: 15px;
	background-color: #ededed;
	border-radius: 0 0 15px 15px;
}
.portaTextoCuadrito {
	padding: 0 15px 15px 15px;
}
.portaTextoCuadrito h3, .portaTextoCuadrito p {
	padding: 0;
}

/* Responsivo */
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .grid-item {width: 20%;}
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
    .grid-item {width: 25%;}
    .grid-item-b {width: 50%;}
}

@media only screen and (min-width: 640px) and (max-width: 959px) {
    .grid-item {width: 33.3%;}
    .grid-item-b {width: 50%;}
}

@media only screen and (min-width: 480px) and (max-width: 639px) {
    .grid-item {width: 50%;}
    .grid-item-b {width: 100%;}
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .grid-item {width: 50%;}
    .grid-item-b {width: 100%;}
}




.limpiador {
    clear: both;
}


/* Barra de 4 colores */
.barraColor {
  height: 15px;
  width: 100%;
  display: flex;
}

.wrapColor {
  height: 100%;
}

.pink   { background: #ff3366; width: 20%; }
.orange { background: #ff6633; width: 45%; }
.purple { background: #993399; width: 25%; }
.black  { background: #330000; width: 15%; }


/* LinkTree */
.linktreeContent {width: 100%; margin-left: auto; margin-right: auto; max-width: 600px;}
.linktreeArticle {display: flex; align-items: center; border-radius: 20px; background-color: #ededed;}
.linktreeArticle img {width: 100%; height: auto; max-width: 150px; border-radius: 20px 0 0 20px;}
.linkTreeTitulo {padding: 15px; line-height: 21px;}
.portalinktreeArticle {padding: 15px 0;}
.linktreeHeader h2 {padding: 50px 0 10px 0;}

/* Parches */
.soloTableta {display: none;}
.soloCelular {display: none;}

.celularTableta {display: none;}



 /* Estilo para la leyenda de URL copiada */
  #mensaje-copiado {
    display: none;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 5px;
    z-index: 9999;
  }

.icoComenta {font-size: 80px;}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
.wrap {width: 1280px;}
.soloTableta {display: none;}
.soloCelular {display: none;}
.celularTableta {display: none;}	
.itemContainer {width: 300px;}
.btnMasGrande {font-size: 90px; width: 180px; height: 100px; border-radius: 30px;}    
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
.wrap {width: 960px;}
.soloTableta {display: none;}
.soloCelular {display: none;}
.celularTableta {display: none;}	
.itemContainer {width: 300px;}
.btnMasGrande {font-size: 90px; width: 180px; height: 100px; border-radius: 30px;}    
}

@media only screen and (min-width: 640px) and (max-width: 959px) {
.wrap {width: 640px;}
.soloEscritorio {display: none;}
.soloTableta {display: block;}
.soloCelular {display: none;}
.escritorioTableta {display: block;}
.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;}	
.linkTreeTitulo {text-align: left;}	
.itemContainer {width: 300px;}
.imgFluida {margin-left: auto; margin-right: auto;} 
.btnMasGrande {font-size: 90px; width: 180px; height: 100px; border-radius: 30px;}    
}

@media only screen and (min-width: 480px) and (max-width: 639px) {
.wrap {width: 480px;}
.soloEscritorio {display: none;}
.soloTableta {display: none;}
.soloCelular {display: block;}
.escritorioTableta {display: none;}
.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;}	
.linkTreeTitulo {text-align: left;}
.itemContainer {width: 220px;} 
.btnMasGrande {font-size: 90px; width: 180px; height: 100px; border-radius: 30px;}    
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
.wrap {width: 320px;}
.soloEscritorio {display: none;}
.soloTableta {display: none;}
.soloCelular {display: block;}
.escritorioTableta {display: none;}
.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: 310px;  margin: 10px 0;}	
.linkTreeTitulo {text-align: left;}	
.linkArrow {text-align: left;} 
.btnMasGrande {font-size: 90px; width: 180px; height: 100px; border-radius: 30px;}    
}
