


main {
	position: absolute;
	width: 100%;
	max-width: 2400px;
	height: 100vh;
	max-height: 1200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	/* background-image: url('/assets/img/bg.webp'); 
	  background-repeat: no-repeat;
	  background-position: center center;
	  background-size: cover;
	  background-attachment: fixed;  */
	margin: 0;
	padding: 0;
	overflow-y: auto;
}
 
 section.row {
	  display: flex;
	  flex-direction: row;
	  width: 100%;
	  height: 95%;
	  gap: 0; /* Ajusta según tu spacing deseado */
	 
  }
  
  section.row > article {
	  flex: 1;
	  box-sizing: border-box;
  }
  
  /* Este ocupará el espacio de 2 artículos */
  section.row > article.big {
	  flex: 2.5;
  }
/*--------------------------------------*/
.boxtxt {
	  position: relative;
	  padding: 0;
	  overflow: hidden;
	  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
	  z-index: 1
  }
.boxtxt .bg{
	 position: absolute;
	   top: 0;
	   left: 0;
	   width: 100%;
	   height: 100%;
	   object-fit: cover;   /* hace que siempre ocupe todo el contenedor */
	   object-position: center; /* centra la imagen */
	   z-index: 0;
  }

 .boxtxt .artxt {
	  width: 100%;
	  padding: 0 12%;
	  position: absolute;
	  bottom: 5%;
	  left: 0;
	  z-index: 1;
	  color: rgba(255, 255, 255, 1);
	  background: none;
  }
  
	  .boxtxt .artxt li:nth-child(1) {
		/* Título principal */
		font-size: 2.5rem;
		font-weight: 900;
		text-transform: uppercase;
		line-height: .9;
		opacity: .95;
	  }
	  
	  .boxtxt .artxt li:nth-child(2) {
		font-size: 1.75rem;
		font-weight: 400;
		border-bottom: 1px solid rgba(255, 255, 255, 1);
		padding-bottom: .2em;
		margin-bottom: 1em;
		text-shadow: 0 0 3px rgba(0, 0, 0, .5);
	  }
	  
	  .boxtxt .artxt li:nth-child(3) {
		font-size: 1.1rem;
		font-weight: 400;
		line-height: 1.2;
		column-count: 2; 
		  column-gap: 1rem; 	
	  }
	  
	  .boxtxt .artxt li:nth-child(4) {
		font-size: 1.75rem;
		font-weight: 600;
		margin-top: 1em;
		text-align: right;
		font-style: italic;
		opacity: .5;
		border-top: 1px solid rgba(255, 255, 255, 1);
		  padding-top: 1em;
		  margin-top: 1em;
	  }
/*--------------------------------------*/
.big {
	  position: relative;
	  overflow: hidden;
  }
.big .bg{
	  position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;   /* hace que siempre ocupe todo el contenedor */
		object-position: center; /* centra la imagen */
		z-index: 0;
  }
  
  .big .artxt{
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  left: 10%;
	  width: 35%;
	  z-index: 1;
	  color: rgba(255, 255, 255, 1);
  }
  
  .big .artxt li:nth-child(1) {
	font-size: 6rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: .9;
	color: rgba(255, 255, 255, 1);
	opacity: 1;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.297);
  }
  
  .big .artxt li:nth-child(2) {
	font-size: 1.75rem;
	font-weight: 400;
	border-bottom: 1px solid rgba(255, 255, 255, 1);
	padding-bottom: .2em;
	margin-bottom: 1em;
	text-shadow: 0 0 4px rgba(0, 0, 0, 1);
  }
  
  .big .artxt li:nth-child(3) {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.2;
	font-weight: 500;
	text-shadow: 0 0 8px rgba(0, 0, 0, 1);
  }
  
  .big .artxt li:nth-child(4) {
	font-size: 1.75rem;
	font-weight: 600;
	margin-top: 1em;
	text-align: right;
	font-style: italic;
	opacity: .75;
	border-top: 1px solid rgba(255, 255, 255, 1);
	  padding-top: 1em;
	  margin-top: 1em;
  }
/*--------------------------------------*/
.site-footer {
	position: relative;
  background: rgba(239, 233, 225, .5);
  color: rgba(163, 155, 144, 1);
  text-align: center;
  padding: .5rem;
  font-size: .65rem;
  width: 100%;
}

.site-footer .footer-link {
  color: rgba(196, 186, 173, 1);
  text-decoration: none;
}

.site-footer .footer-link:hover {
  color: #210; /* opcional: cambia a blanco al pasar el mouse */
}
/*--------------------------------------*/
.home .big .artxt{
  left: 55%;
}
/*--------------------------------------*/
.color .boxtxt .artxt{
 background: rgba(0, 0, 0, 0.15);
 padding-top: 15%;
}

.color .boxtxt .artxt li:nth-child(3) {
font-weight: 700;
}

.color .big .artxt{
 color: rgba(0, 0, 0, 1);
 border-color: rgba(0, 0, 0, 1)
}

.color .big .artxt li{
 border-color: rgba(0, 0, 0, 1)
}

.color .big .artxt .nombrecolor{
 width: 70%
}

.color .big .artxt li:nth-child(2), .color .big .artxt li:nth-child(3) {
text-shadow: none;
}
.color .big .trama{
	  position: absolute;
	  bottom: 2%;
	  z-index: 1;
	  opacity: .3;
  }
.color .big .bg{
	  opacity: .3;
  }

.colors {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
  width: 22%;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, 1fr); /* dos columnas */
  gap: .5vw; /* separación uniforme */
  list-style: none;
  margin: 0;
  padding: 0;
}

.colors li {
  width: 100%;     /* que ocupe todo el ancho de su celda */
  aspect-ratio: 1; /* cuadrado perfecto */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  font-size: 2vw;
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  padding: 3rem;
}

.colors li:nth-child(1) { 
  background: linear-gradient(45deg, #a14913, #f87626); 
  color: #ea9; 
}

.colors li:nth-child(2) { 
  background: linear-gradient(45deg, #575267, #9b95b2); 
  color: #b2abcc; 
}

.colors li:nth-child(3) { 
  background: linear-gradient(45deg, #596b72, #b4cbd4); 
  color: #d2eef8; 
}

.colors li:nth-child(4) { 
  background: linear-gradient(45deg, #667756, #98b083); 
  color: #bcd5a5; 
}

.colors li:nth-child(5) { 
  background: linear-gradient(45deg, #d2a835, #f3d78d); 
  color: #f6dd99; 
}

.colors li:nth-child(6) { 
  background: linear-gradient(45deg, #2b130b, #56453f); 
  color: #edc; 
}
/*--------------------------------------*/
.matriz .big .logo{
	width: 70%;
	filter: invert(.95)
}
.matriz .big .artxt{
	top: 70%;
	left: 50%;
}

.matriz .big .artxt li{
	text-align: right;
}

.matriz .big .artxt  li:nth-child(1){
	display: flex;
	  justify-content: flex-end;
}
/*--------------------------------------*/
.compact .boxtxt .artxt{
	color: rgba(0, 0, 0, 1);
	text-shadow: none
}

.compact .boxtxt .artxt li{
	border-color: rgba(0, 0, 0, 1);
}

.compact .big .artxt{
	width: 25%;
}

.compact .big .artxt .logo{
	width: 75%;
	filter: invert(1)
}

.compact .big .artxt  li:nth-child(3){
	font-weight: bold;
	font-size: 1.1rem;
}
/*--------------------------------------*/
.responsive .big .artxt{
	top: 70%;
	width: 30%;
}

.responsive .big .logo{
	width: 60%;
	filter: invert(1)
}

/*--------------------------------------*/
.isotipo .big .artxt{
	top: 65%;
	left: 55%;
	width: 35%;
}

.isotipo .big .logo{
	width: 25%;
	filter: invert(1)
}

/*--------------------------------------*/
.tagline .boxtxt .artxt{
	top: 30%;
	left: 10%;
	width: 35%;
	padding: 0;
}

.tagline .boxtxt li:nth-child(1){
	font-size: 2.5rem;
	text-transform: lowercase;
	font-weight: 200;
	
}
.tagline .boxtxt li:nth-child(2){
	font-size: 5rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: right;
	line-height: .8;
	padding: 0;
	margin: 0;
	border: none;
	margin-bottom: .6em;
	padding-right: 2em
}

.tagline .boxtxt li:nth-child(3){
	font-size: 2rem;
	column-count: 1; 
	color: rgba(0, 0, 0, 1);
}
.tagline .boxtxt li:nth-child(4){
	font-size: 1.2rem;
	opacity: 1;
	font-style: normal;
	text-align: left;
	text-shadow: 0 0 8px rgba(0, 0, 0, 1);
}

/*--------------------------------------*/
.final .big .bg{
	opacity: .3;
}
.final .big .artxt{

}

.final .big .artxt li{
	color: rgba(0, 0, 0, 1);
border-color: rgba(0, 0, 0, 1);
text-shadow: none;
}

.final .big .artxt li:nth-child(1){
font-size: 2.5rem;
}
.final .big .artxt li:nth-child(3){
font-size: 1rem;
}

/*--------------------------------------*/

/* Escritorios grandes (1440px a 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  html {
	  font-size: 13px;
  }

	.boxtxt {
		  box-shadow: none;
	  }
	  
  .boxtxt .artxt {
		width: 100%;
		padding: 0 8%;
	}
	
		.boxtxt .artxt li:nth-child(1) {
		  /* Título principal */
		  font-size: 2.2rem;
		}
		
		.boxtxt .artxt li:nth-child(2) {
		  font-size: 1.5rem;
		}
		
		.boxtxt .artxt li:nth-child(3) {
		  font-size: 1rem;
		}
		
		.boxtxt .artxt li:nth-child(4) {
		  font-size: 1.5rem;
		}
	.colors {
	  right: 20%;
	  width: 20%;
	  gap: .25vw; /* separación uniforme */
	
	}	
	.colors li {
	  font-size: 2rem;
	}
	
	.color .big .artxt{
	 width: 40%
	}
	.color .big .artxt .nombrecolor{
	 width: 50%
	}
	.color .big .artxt li:nth-child(3) {
	font-size: 1rem;
	}
	.color .big .artxt li:nth-child(2), .color .big .artxt li:nth-child(3) {
	text-shadow: none;
	}
	.color .big .trama{
		  position: absolute;
		  bottom: 2%;
		  z-index: 1;
		  opacity: .3;
	  }
  /*--------------------------------------*/
  .tagline .boxtxt .artxt{
	  width: 45%;
  }
  
  .tagline .boxtxt li:nth-child(1){
	  font-size: 2.5rem;
  }
  .tagline .boxtxt li:nth-child(2){
	  font-size: 4rem;
  }
  
  .tagline .boxtxt li:nth-child(3){
	  font-size: 2rem;
  }
  .tagline .boxtxt li:nth-child(4){
	  font-size: 1rem;
  }
  .final .big .artxt{
  width: 70%;
  column-count: 2; 
	column-gap: 2rem; 	
  }
}

/* Laptops medianas y pantallas comunes (1280px a 1440px) */
@media (min-width: 1280px) and (max-width: 1439px) {
 
}

/* Laptops pequeñas y notebooks (>=1024px hasta 1280px) */
@media (min-width: 1024px) and (max-width: 1279px) {
 
}
