/* RESET BÁSICO */
/* ------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol { 
  padding: 0.6em; 
}

/* Ocultar viñetas en listas de enlaces */
ul.links, ul.menu {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.bullets {
  list-style: disc inside;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  margin: 0em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #595a5c; /* texto gris claro */
}

.bullets li::marker {
  color: #a1bd37; /* bullet verde */
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li,
figure, figcaption, blockquote, dl, dd { 
  margin: 0; 
  padding: 0;
}

img, picture, video, canvas, svg, iframe, embed {
  max-width: 100%;
  display: block;
  height: auto;
}

a { 
  text-decoration: none; 
  color: rgba(0,0,0,.7); 
  transition: all .3s ease-out; 
}

/* ------------------ */
/* TIPOGRAFÍAS */
/* ------------------ */

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.work-sans-<uniquifier> {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.ibm-plex-sans-<uniquifier> {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 332;
  font-style: normal;
}

/* ------------------ */
/* GENERAL */
/* ------------------ */
body {
  background-color: #e8eadb;
  font-weight: 400;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { 
  position: relative;
  z-index: 1000;
}

/* ------------------ */
/* HEADER */
/* ------------------ */
header[role="banner"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ------------------ */
/* LOGO */
/* ------------------ */
#logo-container {
  z-index: 1001;
  padding-top: 2em;
}
#logo-container img {
  height: 115px;
  width: auto;
  filter: brightness(1.1);
  position: absolute;
}
/* LOGO EN HERO SOLO VISIBLE EN MOBILE */
#logo-hero-mobile {
  display: none; /* Visible por defecto en mobile */
  text-align: center;
  margin-bottom: 3em;
}
#logo-hero-mobile img {
  height: auto;  
  max-width: 110px;
  margin: 1rem auto;
}


/* ------------------ */
/* MENU DESKTOP */
/* ------------------ */
.menu-container {
  display: none; /* Oculto por defecto en mobile */
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .menu-container {
    display: flex;
  }
}

.menu-main-menu-container { 
  text-align: center;
  font-family: "Work Sans", helvetica, sans-serif; 
  font-weight: 500;
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 2.5em;
}

@media(min-width: 769px) {
  .menu-main-menu-container {
    display: flex;
  }
}
.menu {
  display: flex;
  gap: 1.7em;
}
.menu li {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
}
.menu li a {
  color: #f3f4ea;
  transition: color 0.4s ease, background-color 0.4s ease;
  padding: 0.2em 0.5em;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}
.menu li a:hover {
  color: #595a5c;
  background-color:#a1bd37;
}
/* ------------------ */
/* MENU MOBILE */
/* ------------------ */
.mobile-menu-button {
  position: fixed;
  bottom: 0; 
  left: 0;
  width: 100%;
  background:#a1bd37;
  text-align: center;
  padding: 1.2em;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: .78rem;
  color: #595a5c;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2000;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-menu-button:hover {
  background: #595a5c;
  color: #e8e8e6;
}

.mobile-menu-overlay {
  background: #5e5c5d;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100%); 
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 0 1em;
  box-sizing: border-box;
}

.mobile-menu-overlay.open {
  transform: translateY(0);
}

.mobile-menu-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.mobile-menu-overlay li {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 1.8rem !important;
  line-height: 0.6em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.3em 0;
  white-space: nowrap;
}

.mobile-menu-overlay li a {
  color: #e8e8e6;
  text-decoration: none;
  transition: color 0.4s ease;
  display: inline-block;
  padding: 0.2em 0.5em;
}

.mobile-menu-overlay li a:hover {
  color: #333;
}

/* ------------------ */
/* HERO SLIDER */
/* ------------------ */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero-content .logo-hero img {
  max-width: 118px; 
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  z-index: 1;
}

.hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9);
}


/* ------------------ */
/* INTRO */
/* ------------------ */
#main {
  position: relative;
  z-index: 100;
  margin-top: 59vh;
  background-color: #e8eadb;
}
.home #intro {
  margin: 0 auto;
  padding-top: 1rem;
  max-width: 1400px;
}
.home #intro p {
  font-family:"IBM Plex Sans", sans-serif;
  font-size: 2.2rem;
  line-height: 1.35;
  margin: 0 auto;
  padding: 1em 1.7em 1em;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #595a5c;
  text-align: center;
  max-width: none;
  letter-spacing: 1px;
}


/* Mobile pequeño */
@media (max-width: 480px) {
  .home #intro p {
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0.8em 1em;
    text-align: left; /* alineado a la izquierda */
  }
}

/* Mobile mediano */
@media (min-width: 481px) and (max-width: 768px) {
  .home #intro p {
    font-size: 1.4rem;
    line-height: 1.45;
    padding: 1em 1.2em;
    text-align: left; /* alineado a la izquierda */
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1099px) {
  .home #intro p {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1em 1.5em;
    text-align: center; /* vuelve a centrarse en tablet */
  }
}
/* ------------------ */
/* SISTEMA DE COLUMNAS MODULAR */
/* ------------------ */
.columns-container {
  display: flex;
  flex-wrap: wrap;
  margin: 3% auto;
  margin-bottom: 3em;
  max-width: 1400px;
  padding: 0 2em;
  width: 100%;
}

.column {
  padding: 0 1em;
  margin: 0 auto 3em;
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  max-width: 100%;
}

/* TIPOGRAFÍA PARA COLUMNAS */
.column__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"width" 100;
  line-height: 1.7em;
  font-weight: 400;
  font-size: 1.3vw;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .3em;
  display: block;
  color: #91aa29;
  position: relative;
  text-align: left;
}

.column__text {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 1.3rem;
  margin: .5em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #595a5c;
}

.column__subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"width" 100;
  font-size: 1.1rem;
  margin: .5em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #595a5c;
}

/* FOOTER DE COLUMNAS */
.column__footer {
  align-self: flex-end;
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 .5em;
}

.column__footer-title {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 1.3rem;
  margin: .5em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #a1bd37;
}

.column__footer-subtitle {
  font-family: "Inter", sans-serif;
  margin: 0 0;
  font-size: .95rem;
  font-weight: 400;
  color: rgba(0, 0, 0, .5);
  display: block;
  width: 100%;
}

.column__footer-text {
  letter-spacing: .02em;
  font-weight: 100;
  font-size: .85rem;
  font-style: normal;
  margin: 0;
  padding: 0;
  width: 100%;
  color: rgba(0, 0, 0, .5);
}

/* BOTONES Y ENLACES */
.column__subtitle a {
  color: #a1bd37;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.column__subtitle a:hover {
  color: #595a5c;
  border-bottom: 1px solid #595a5c;
}

.column__links {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  width: 100%;
  margin: .5em 0 0;
}

.column__links li {
  margin: 0 .5em 0 0;
}

.column__links a {
  border: 1px solid #5e5c5d;
  display: inline-block;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 500;
  padding: .2em 1em;
  color: #5e5c5d;
  text-decoration: none;
  transition: all .3s ease-out;
}

.column__links a:hover {
  background: #a1bd37;
  color: #f3f4ea;
}

/* UTILIDADES */
.text-center {
  text-align: center;
}

.section-title {
  text-align: left;
}

.column__image {
  width: 100%;
  height: auto;
  display: block;
  margin-block: 2.2em;
  background: #ddd;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* ------------------ */
/* FOOTER */
/* ------------------ */
.footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}

.footer-logo-container img {
  max-width: 80px;
  height: auto;
}

.global2 {
  margin: 0em auto 0em;
  padding: 1em 0 1em;
  text-align: center;
  clear: both;
  color: #a1bd37;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0em 0.9em 0.5em;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
}

.global {
  margin: 0em auto 0em;
  padding: 0;
  text-align: center;
  clear: both;
  font-family: "IBM Plex Sans", sans-serif;
  padding-top: 0.5em;
  padding-bottom: 2em;
}

.global .copyright {
  color: rgba(0, 0, 0, .8);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 auto .3em;
  text-transform: uppercase;
}

.global .legal {
  color: rgba(0, 0, 0, .8);
  font-size: 0.6rem;
  padding: 0 1.5em;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto .5em;
  max-width: 50em;
}

.socials {
  display: flex;
  padding: 0;
  margin: 20px 0 50px 0;
  order: 2;
  align-items: center;
  justify-content: center;
}

.socials svg {
  width: 30px;
  height: auto;
  margin: 0 5px 0 0;
  transition: all .3s ease-out;
  fill: #a1bd37;
}

.socials svg:hover {
  fill: #595a5c;
}

/* ------------------ */
/* RESPONSIVE QUERIES */
/* ------------------ */

/* MOBILE PEQUEÑO */
@media (max-width: 480px) {
  /* Header oculto en mobile */
  header[role="banner"] {
    display: none;
  }
  
  #logo-hero-mobile {
    display: block;
  }
  #logo-hero-mobile img {
    height: auto;
    max-width: 100px;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .mobile-menu-overlay {
    display: flex;
  }


  /* Columnas responsive */
  .column {
    margin: 0 auto 1.5em;
  }

  .column__title {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }
  
  .column__text,
  .column__subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1em;
  }
  
  .column__footer-title {
    font-size: 1.1rem;
  }

  .column__footer-subtitle {
    font-size: 0.85rem;
  }

  /* Espaciado compacto entre secciones en mobile */
  .columns-container {
    margin-top: 1em;
    margin-bottom: 1.5em;
  }

  .bullets {
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 1em;
    margin-bottom: 1em;
  }

  #soloartis .column__image {
    background: none;
    min-height: auto;
    padding: 0;
    margin-bottom: 1em;
  }

  .column__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .column__links a {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.5em;
    box-sizing: border-box;
    white-space: normal;
  }
  
  /* Footer ajustado */
  .footer-logo-container img {
    max-width: 60px;
  }
}

/* MOBILE MEDIANO */
@media (min-width: 481px) and (max-width: 768px) {
  /* Header oculto */
  header[role="banner"] {
    display: none;
  }
  
  /* Logo mobile visible */
  #logo-hero-mobile {
    display: block;
  }
  #logo-hero-mobile img {
    max-width: 120px;
  }

 

  /* Columnas responsive */
  .column__title {
    font-size: 1.6rem;
  } 
  .column__text,
  .column__subtitle {
    font-size: 1.1rem;
  }

/* TABLET */
@media (min-width: 769px) and (max-width: 1099px) {
  /* Header visible */
  header[role="banner"] {
    display: flex;
  }
  
  /* Logo mobile oculto */
  #logo-hero-mobile {
    display: none;
  }
  
  /* Menu containers visible */
  .menu-container,
  .menu-main-menu-container {
    display: flex;
  }
  @media (min-width: 769px) {
  .menu-container,
  .menu-main-menu-container {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
  /* Menu mobile oculto */
  .mobile-menu-button,
  .mobile-menu-overlay {
    display: none !important;
  }
  
  /* Intro responsive */
  .home #intro p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  
  /* Columnas en 3 */
  .columns-container--three .column {
    width: 33.33%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  
  .columns-container--two .column {
    width: 50%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  
  .columns-container--one .column {
    width: 100%;
    margin: 0 auto 2em;
    padding: 0 2em;
  }
  
  .column__footer {
    margin-top: auto;
  }
  
  .column__title {
    font-size: 1.4rem;
  }
  
  .column__text {
    margin: 0 0 1em;
    font-size: .95rem;
  }

  

  /* Espaciado uniforme entre secciones */
  .columns-container {
    margin-top: 1.5em;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  /* Header visible */
  header[role="banner"] {
    display: flex;position: fixed; 
  }
 
  /* Columnas */
  .columns-container--three .column {
    width: 33.33%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  

  
  .columns-container--two .column {
    width: 50%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  
  .columns-container--one .column {
    width: 100%;
    margin: 0 auto 2em;
    padding: 0;
  }
  
  
  
  .column__footer {
    margin-top: auto;
  }
  
  .column__title {
    font-size: 1.8rem;
  }
  
  /* Footer desktop */
  .page-footer {
    text-align: center;
    margin-top: 3em;
    padding: 1em 0;
    font-size: 1.2rem;
    color: #a1bd37;
  }
  
  .global2 {
    font-size: 1rem;
    letter-spacing: .2em;
    padding: 1em 0 1em;
  }
  
  .global {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .global .copyright {
    font-size: .8rem;
    letter-spacing: .12em;
  }
  
  .global .legal {
    font-size: .65rem;
    padding: 0 3em;
  }
  
  .socials {
    padding-bottom: 1em;
  }
}

#section {
  position: relative;
  margin-bottom: 0; /* Reset margins */
}
/* Separador universal después de cada sección */
#section::after {
  content: "";
  display: block;
  width: 200px;
  border-bottom: 1px solid #CBDC99;
  margin: 2rem auto 3rem;
}
/* Excepción: no mostrar separador después de la última sección */
#section:last-of-type::after {
  display: none;
}
/* RESPONSIVE: Ajustar espaciado según pantalla */
/* MOBILE PEQUEÑO */
@media (max-width: 480px) {
  section::after {
    margin: 1.5rem auto 2rem;
    width: 150px;
  }
    /* Espaciado más compacto entre secciones */
  .columns-container {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  /* Reducir espaciado interno de columnas */
  .column {
    margin-bottom: 1rem;
  }
}
/* MOBILE MEDIANO */
@media (min-width: 481px) and (max-width: 768px) {
  section::after {
    margin: 1.75rem auto 2.5rem;
    width: 180px;
  }
   .columns-container {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
  }
}
/* TABLET */
@media (min-width: 769px) and (max-width: 1099px) {
  section::after {
    margin: 2rem auto 3rem;
    width: 200px;
  }
  
  .columns-container {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
}
/* DESKTOP */
@media (min-width: 1100px) {
  section::after {
    margin: 2.5rem auto 3.5rem;
    width: 250px;
  }
  .columns-container {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}

/* --- FIX: mostrar menú en desktop --- */
@media (min-width: 769px) {
  .menu-container,
  .menu-main-menu-container {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}


.menu li {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
}

.menu li a {
  color: #f3f4ea;
  transition: color 0.4s ease, background-color 0.4s ease;
  padding: 0.2em 0.5em;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}

.menu li a:hover {
  color: #595a5c;
  background-color:#a1bd37;
}
