
@font-face {
  font-family: 'Futura';
  src: url('../fonts/Poppins-Medium') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('../fonts/Poppins-Bold') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('../fonts/Poppins-MediumItalic') format('opentype');
  font-weight: italic;
  font-style: italic;
}

:root {

    /**
     * colors
     */
  
    --iteblue: #072d70;
    --iteorange: #F99400;
    --itetext:#808080;
  
    --fs-1: calc(2.7rem + 1.38vw);
    --fs-2: calc(2.6rem + .66vw);
    --fs-3: 2.2rem;
    --fs-4: 1.9rem;
    --fs-5: 1.8rem;
    --fs-6: 1.7rem;
    --fs-7: 1.5rem;
    --fs-8: 1.4rem;
    
    --fw-700: 700;
  
    /** 
     * spacing
     */
  
    --section-padding: 90px;
  
    /**
     * box shadow
     */
  
    --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
    --shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
    --shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);
  
    /**
     * border radius
     */
  
    --radius-circle: 50%;
    --radius-pill: 100px;
    --radius-10: 10px;
    --radius-8: 8px;
    --radius-6: 6px;
  
    /**
     * transition
     */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 0.3s ease-in-out;
  
  }
  
  /*-----------------------------------*\
    #ETIQUETAS
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon { display: block; }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img { height: auto; }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  input { width: 100%; }
  
  button { cursor: pointer; }
  
  ion-icon { pointer-events: none; }
  
  address { font-style: normal; }
  
  html {
    font-family: 'Futura', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  main{
    margin-top: 7em;
  }
  
  body {
    background-color: white;
    color: var(--itetext);
    font-size: 1.6rem;
    line-height: 1.7;
    font-family: 'Futura', sans-serif;
  }


/*-----------------------------------*\
  # FOOTER
\*-----------------------------------*/


  /*
  +++++++++++++++++++++++
  # Footer web
  +++++++++++++++++++++++
*/

.footer {
  margin-top: 30px;
  background-color: var(--iteblue); 
  color: #fff;
  padding: 40px 20px;
}

.footer-content {
  max-width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-section {
  flex: 1;
  text-align: left;
}

.logo-section img {
  max-width: 50%;
  margin-bottom: 20px;
}

.logo-section p {
  margin: 5px 0;
  color: #fff;
  font-size: 1.5rem;
}

.contact-section h2,
.links-section h2,
.purpose-section h2 {
  color: #FF9000; /* Naranja */
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-section p,
.links-section ul,
.purpose-section p {
  color: #fff;
  font-size: 1.6rem;
  margin: 5px 0;
  line-height: 1.6;
  text-align: justify;
}

.contact-section p,
.links-section ul{
  line-height: 3.1;
}

.links-section ul {
  list-style-type: none;
  padding: 0;
}

.links-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-section ul li a:hover {
  color: #FF9000; /* Naranja */
}

.purpose-section p {
  max-width: 250px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .logo-section {
    margin-bottom: 20px;
  }

  .contact-section,
  .links-section,
  .purpose-section {
    margin-bottom: 20px;
  }
}

  

 /*
  +++++++++++++++++++++++
  # Footer mobile
  +++++++++++++++++++++++
 */

  
  @media (max-width: 768px) {
    .footer-content {
      width: 100% ;
      max-width: 80% ;
      margin: 0 auto ;
      padding: 0 ;
    }
    
    .footer-section,
    .footer-info {
      width: 100% ;
      margin: 10px 0 ;
    }
    .footer-info h2{
      margin-top: -10px;
      text-align: center;
      font-size: 20px;
    }
  
    .footer-section img {
      
      margin-bottom: 10px;
    }
  }
  