:root {
  /* Define paragraph typography variables */
  --textheadline: rgba(0, 0, 0, 1);
  --textparagraph: rgba(111, 111, 111, 1);
  --textcaptions: rgba(72, 92, 17, 1);
  --dividersdivider-1: rgba(233, 233, 233, 1);
  --heading-1-font-family: "Gilda Display", Helvetica;
  --heading-1-font-weight: 400;
  --heading-1-font-size: 60px;
  --heading-1-letter-spacing: -1.8px;
  --heading-1-line-height: 89.99999761581421%;
  --heading-1-font-style: normal;
  --paragraph-font-family: "PT Serif", Helvetica;
  --paragraph-font-weight: 400;
  --paragraph-font-size: 15px;
  --paragraph-letter-spacing: -0.075px;
  --paragraph-line-height: 139.9999976158142%;
  --paragraph-font-style: normal;
}


/*
  p {
    color: var(--text-paragraph-color);
    font-family: var(--text-paragraph-font);
    font-size: var(--text-paragraph-size);
    line-height: var(--text-paragraph-line-height);
    margin: var(--text-paragraph-margin);
  }
*/

/*
  html,
  body {
    margin: 0px;
    height: 100%;
  }
*/

/*
  
*/

body {
  background-color: #3E513E;
  margin: 0;
  /* Quitamos flex del body para que el scroll horizontal nativo funcione mejor */
}

.main {
  background-color: #EAF4F6;
  padding: 0 40px 0 40px;
  
  /* Definimos límites claros */
  width: auto;
  min-width: 1200px; 
  max-width: 1480px;

  /* Centrado horizontal perfecto en pantallas grandes */
  margin: 0 auto; 

  /* Flexbox interno para alinear los elementos hijos (header, secciones, footer) al centro */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-text {
  width: 1200px; 
}



.header{
  display: flex;
  justify-content: center;
  align-items: center;
}

img{
  position: relative;
  border-radius: 30px;
  background-size: cover;
}

.full-logo{
  margin: -75px 0 -50px 0;
}

.subtitle-wrapper{

  /*top: 0;
  left: 0;
  width: 800px;*/
  font-family: 'Gilda Display', serif;
  color: var(--textheadline);
  font-size: 60px;
  letter-spacing: -1.8px;
  line-height: 54px;
}

.seccion{
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 80px 0 80px 0;
}

.wrapper{
  width: 100%;
}

.vision-wrapper{
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 120px;
}

p{

  font-family: 'PT Serif', serif;
  color: var(--textheadline);
  font-size: 32px;
  letter-spacing: -0.16px;
  line-height: 45px;
}

ol li::marker {
  color: gray;
  font-weight: bold;
}

ol li{
  font-family: 'PT Serif', serif;
  font-weight: 400;
  color: var(--textheadline);
  font-size: 32px;
  letter-spacing: -0.16px;
  line-height: 45px;
}

.legal-image{
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact{
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrapper{
  width: 720px;
  text-align: center;
}

.info{
  color:var(--textparagraph);
  font-size: 28px;
}

.email-wrapper{
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
  align-items: center; 
}

.email{
  text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  color: var(--textcaptions);
  font-size: 20px;
  height: 24px;

}

.tlf-wrapper{
  display: flex;
  justify-content: center;
  text-align: center;
}

.tlf{
  display: flex;
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  color: var(--textcaptions);
  font-size: 20px;
  align-items: center; 
  height: 24px;
  text-decoration: none;
  

}

.tlf-image{
  border-radius: 0px;
  padding-right: 10px;
}

.footer{
  width: 100%;
}

.footer .credits{
  width: 100%;
  display: flex;
  justify-content:left;
  align-items: baseline;
  margin-bottom: 40px;

}

.copyright-wrapper{
  margin-left: 40px;
  margin-right: 40px;
  width: calc( 100% - 275px);

  display: flex;
  justify-content:left;

  font-family: 'Roboto Mono', monospace;
  color: var(--textcaptions);
  font-size: 12px;

}

.rights{
  width: 126px;
  font-family: 'Roboto Mono', monospace;
  color: var(--textcaptions);
  font-size: 12px;
}