* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "72_Regular";
  src: url("../fonts/72-Regular.ttf");
}

@font-face {
  font-family: "72_Light";
  src: url("../fonts/72-Light.ttf");
}

:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #1f3c8d;
  --pink: #a03a8d;
}

Body {
  font-family: "72_Light";
}

/* Header */
.head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  transition: top 0.4s ease-in-out;
  z-index: 1000;
  font-family: "72_Regular";
}

/* Ocultar menú en scroll hacia abajo */
.head.hidden {
  top: -110px;
}

.head__figure {
  width: 100%;
  max-width: 280px;
}

.head__logo {
  width: 100%;
  display: block;
}

/* Nav */
.head__menu {
  display: flex;
  gap: 20px;
}

.head__menu a {
  padding: 5px;
  color: var(--black);
  text-decoration: none;

  font-size: 18px;
  font-weight: 300;
  margin: 10px auto;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

.head__menu a:hover {
  color: var(--pink);
}

/* Botón Menu */
.head__menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.head__menu-toggle div {
  width: 30px;
  height: 4px;
  background: var(--blue);
  margin: 5px 0;
}
/* Fin Nav */

/* RESPONSIVE HEAD*/
@media (max-width: 1000px) {
  .head__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background: var(--blue);
    text-align: center;
    padding: 10px 0;
  }

  .head__menu.show {
    display: flex;
  }

  .head__menu a {
    padding: 10px;
    color: var(--white);
  }

  .head__menu-toggle {
    display: flex;
  }
}

/* Fin Header */

/* Secciones Comun*/
.seccion {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  overflow: hidden; /* Evita desbordamientos */
}

.seccion__title {
  margin: 0 auto;
  padding: 10px 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.seccion__title__separator {
  max-width: 230px;
  width: 100%;
  margin: 0px;
  margin-bottom: 20px;
  height: 4px; /* Grosor de la línea */
  border: none; /* Elimina el borde predeterminado */
  background: linear-gradient(
    to right,
    #a03a8d,
    #1f3c8d
  ); /* Degradado de izquierda a derecha */
}

.seccion__paragraph {
  padding: 30px 10px;
  color: var(--black);
  font-size: 24px;
  font-family: "72_Light";
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

/* Fin Secciones Comun*/

/* Seccion Inicio */
.seccion__inicio {
  background-image: url("../images/inicio_Portada.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

.inicio__container {
  width: 100%;
  height: 100vh;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: var(--white);
}

.inicio__header {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 100;
  justify-content: center;
}
.inicio__article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.inicio__title {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 40px;
  font-family: "72_Regular";
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: center;
}

.inicio__paragraph {
  padding: 10px;
  font-size: 26px;
  text-align: center;
}
/* Fin Inicio*/

/* Seccion Nosotros */

.seccion__nosotros {
  width: 100%;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.nosotros__article__container {
  display: flex;
  justify-content: start;
  align-items: start;
  align-content: start;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  overflow: hidden; /* Evita que se desborden */
}

@media (max-width: 1300px) {
  .nosotros__article__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0px;
    padding: 0px;
    margin: 0px;
    width: 400px;
    overflow: hidden; /* Evita que se desborden */
  }
}

.nosotros__article {
  min-width: 400px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-content: start;
  justify-content: center;
  align-items: center;
  background-image: url("../images/nosotros_circulosFondo.png");
  background-repeat: no-repeat;
  background-position: center cover;
  background-size: contain;
}

.nosotros__article__medio {
  min-width: 440px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-content: start;
  justify-content: center;
  align-items: center;
  background-image: url("../images/nosotros_circulosFondo.png");
  background-repeat: no-repeat;
  background-position: center cover;
  background-size: contain;
}

.nosotros__article__title {
  color: var(--white);
  font-size: 20px;
  font-family: "72_Light";
  font-weight: 600;
  letter-spacing: 0.8px;
  text-align: center;
  line-height: 1.2;
}

.nosotros__article__paragraph {
  padding-top: 30px;
  color: var(--white);
  font-size: 20px;
  font-family: "72_Light";
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
}

.nosotros__article__separator {
  max-width: 60px;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  border: 1px solid var(--white);
}

/* Fin Nosotros*/

/* Como trabajamos */

.seccion__comotrabajamos {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.comotrabajamos__img {
  width: 100%;
  height: 100vh;
  background-image: url("../images/comotrabajamos.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
  padding-left: 25%; /* Espaciado a la izquierda */
}

.comotrabajamos__img__text {
  padding: 5px;
  font-family: "72_Regular";
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.comotrabajamos__article {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
/* Fin Como trabajamos */

/* Contacto */

.contacto__article {
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.contacto__article__info {
  padding: 5px;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contacto__article__picture {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.contacto__picture {
  width: 100%;
  height: 50vh;
  background-image: url("../images/footer_fondo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
  padding-left: 25%; /* Espaciado a la izquierda */
}

.contacto__article__social {
  max-width: 50px;
  display: block;
  margin: 0 auto;
}

.contacto__picture__img {
  max-width: 400px;
  display: block;
  margin: 0 auto;
  overflow: hidden; /* Evita desbordamientos */
}

@media (max-width: 710px) {
  .contacto__article__info {
    padding: 5px;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 300px;
  }

  .contacto__picture {
    width: 100%;
    height: 50vh;
    background-image: url("../images/footer_fondo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center; /* Centra verticalmente el contenido */
    padding-left: 0; /* Espaciado a la izquierda */
  }
}
/* Fin Contacto */
