@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --yellow: #ffbc00;
  --black: #111111;
  --brown1: #1d0c0a;
  --brown2: #3a1913;
  --brown3: #57251d;
  --brown4: #743226;
  --brown5: #913e30;
  --brown6: #d38a59;
  --brown7: #F8EDB1;
  --verde: #7F8D44;
  --txtSize: clamp(13px, 4vw + .6rem, 30px);
  --txtSizeFooter: clamp(7px, 1.5vw + .5rem, 17px);
  --fonttype: "Plus Jakarta Sans", serif;
  --fontGeneral: clamp(10px, .5vw + .9rem, 18px);
  --fontTittle: clamp(20px, 2.5vw + 1.4rem, 40px);

}
*::selection{
  background: #913e30;
  color: #F8EDB1;
}

.animate-on-scroll {
  opacity: 0;
  /* Inicialmente invisible */
  transition: opacity 0.5s ease;
  /* Transición suave */
}

@media (max-width: 800px) {
  .root-container{
    background-attachment:local !important;
  }
}


/* Styles for the div-aboutus */

.container-aboutus {
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 45%;
  background: linear-gradient(112deg, rgba(248, 237, 177, 1), rgba(255, 195, 113, 1));
  padding: 2rem;

}

.container-aboutus.visible {
  visibility: visible;
  opacity: 1;

}

.btnCerrar {
  position: absolute;
  top: 3px;
}

.ulr li a {
  padding: 10% 0px;
  color: var(--brown7);
}

.btnNav {
  padding: 50% 0px !important;
}

.container-aboutus ul {
  display: flex;
  flex-direction: column;
}

.container-aboutus ul li {
  font-size: clamp(15px, .6rem + 1rem, 30px);

}


#header {
  width: 100%;
  height: 15vh;
  background-color: var(--brown2);
  top: 0;
  position: fixed;
  z-index: 10000;
}

#header.nofix {
  top: 0;
  position: relative;
  z-index:-1;
}

@media (max-width:550px) {
  body {
    margin-top: 10vh !important;
  }
  #header{
    height: auto !important;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--fonttype);
}

body {
  margin-top: 15vh;
  background-color: var(--brown7);

}


.tittleTeam {
  text-align: center;
  font-size: var(--fontTittle);
  color: var(--brown2);

}


/* General Footer Styles */
footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: var(--brown2);
  padding: 1rem;
}

.socialMediaFooter {
  margin-top: .8rem;
  display: flex;
  justify-content: center;
  gap: 50%;
  color: var(--brown6);
  font-size: x-large;
}
@media (max-width: 700px) {
  .socialMediaFooter{
    gap: 33%;
  }
}
.socialMediaFooter a{
  color: var(--brown7);
}

footer section {
  color: #F8EDB1;
  padding: 1%;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer section:nth-child(3){
  flex: 1 2 45% !important;

}

/* Logo Section */
footer .footer-logo {
  gap: 2rem;
}

footer .footer-logo img {
  width: clamp(30px, 9.9vw + 2rem, 150px);
}

footer .footer-logo p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  /* Responsive text size */
  line-height: 1.5;
}

/* Contact Info Section */
footer .footer-contact b,
footer .footer-links b {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  /* Larger header size */
  margin-bottom: 1rem;
}

footer .footer-links ul li {
  margin-bottom: .6rem;
}

footer .footer-contact ul {
  list-style: none;
  padding: 0;
  height: 25% !important;
}

footer .footer-contact ul li {
  margin-bottom: 0.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  /* Responsive text size */
}

footer .footer-contact ul a {
  color: #F8EDB1;
  text-decoration: none;
}

footer .footer-contact ul a:hover {
  text-decoration: underline;
}

/* Quick Links Section */
footer .footer-links ul {
  list-style: none;
  padding: 0;
}

footer .footer-links ul li a {

  font-size: clamp(7px, 1vw + .6rem, 16px);
  /* Responsive text size */
}

footer .footer-links ul a {
  color: #F8EDB1;
  text-decoration: none;
}

footer .footer-links ul a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 800px) {
  footer section {
    flex: 1 1 100%;
    padding: 2%;
  }

  footer .footer-logo p,
  footer .footer-contact ul li,
  footer .footer-links ul li {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    /* Adjust for smaller screens */
  }

  footer .footer-contact b,
  footer .footer-links b {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    /* Adjust for smaller screens */
  }
}

/* NAV STYLE */


nav {
  padding: 0px 20px;
  background-color: var(--brown2);
  font-weight: 400;
  z-index: 999;

}

ul {

  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  list-style: none;

}

ul li {

  flex: 1;
  flex-direction: column;
}

ul li a {
  font-size: clamp(12px, 1.9vw + .3rem, 25px);
  color: var(--black);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", serif;
}

ul li ul.dropdrow {

  margin-top: 2%;
  width: 12%;
  height: auto;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(178deg, #3a1913, #57322c);
  padding: 0px 15px;
  position: absolute;
  left: 12%;
  display: none;
  z-index: 1;

}

ul li ul.dropdrow li {
  display: block;
  padding: 20px 0px;
}

ul li ul.dropdrow li a{
  font-size: clamp(8px, 2.5vh, 23px);

}

ul li:hover ul.dropdrow {
  display: flex;
  flex-direction: column;
  z-index: 999;
}

ul .imgLogoLi {
  flex: 2;
}

.imgLogo {
  width: 75%;
}

.imgLogoR,
.btnAbrir,
.btnCerrar {
  display: none;
}

.btnNavResponsive {
  display: none;
}

ul li ul.visible {
  display: none;


  margin-top: 15%;
  padding-top: 5%;
  width: 150px;
  height: auto;
  background-color: #545252;
  position: relative;

}

@media screen and (max-width: 800px) {



  .imgLogoR,
  .btnAbrir,
  .btnCerrar {
    display: block;
  }

  nav {
    height: 100vh;
  }

  .btnCerrar {
    position: absolute;
    top: 35px;
  }

  .imgLogoR img {
    width: clamp(32px, 17vw + 5rem, 700px);
  }

  header button {
    color: var(--brown1);
    background-color: transparent;
    font-size: xx-large;
    border-style: none;

  }

  nav button {

    background-color: transparent;
    border-style: none;
    font-size: x-large;

  }


  .imgLogo {
    width: clamp(32px, 17vw + 5rem, 700px);
  }


  .nav {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 45%;
    background: linear-gradient(257deg, rgba(248, 237, 177, 1), rgba(255, 195, 113, 1));
    padding: 3rem;
    box-shadow: 0 0 0 100vmax rgb(0, 0, 0, .5);
  }

  .nav.visible {
    visibility: visible;
    opacity: 1;

  }

  .ulr {
    overflow-y: auto;
    height: 80vh;
    flex-direction: column;
    align-items: end;
  }
  
  .ulr li {
    padding: 1.8rem 0px;
  }

  .ulr li a {
    font-size: clamp(15px, .6rem + 1rem, 30px);
  }


  header {
    box-sizing:border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--brown7);
  }

  ul li:hover ul.dropdrow {
    display: none;
    flex-direction: column;
  }

  .btnNavResponsive {
    display: block;
    font-family: "Plus Jakarta Sans", serif;
    font-size: clamp(15px, .6rem + 1rem, 30px);
  }

  .btnNav {
    display: none;
  }

  ul li ul.visible {
    display: block;

    border-radius: 1 0px;
    margin-top: 15%;
    padding-bottom: 2%;
    padding-top: 2%;
    width: 150px;
    height: auto;
    background-color: #d39a29e4;
    position: relative;

  }

  ul li ul.hidden {
    display: none;
  }

  ul li ul.visible a {
    color: black;
  }




  ul li ul.visible li {
    display: block;
    padding: 7px 0px;
  }

  ul li:hover ul.dropdrow {
    display: none;
    flex-direction: column;
  }

}


footer {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 1rem;

  background-color: var(--brown2);

}

footer section {
  color: #F8EDB1;
  padding: 1%;
  flex-grow: 1;
  flex-basis: 80;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

/* primer section */

/* 

footer img{
  width: clamp(30px, 9.9vw + 2rem, 150px);
}

footer section:first-child{
  padding: 2%;
  flex: 1;
  gap: 2rem;
  flex-basis:40%;

}
footer section:first-child p{
  font-size: var(--txtSizeFooter);
}
*/

footer img {
  width: clamp(30px, 9.9vw + 2rem, 150px);
}

footer section:first-child {
  width: auto;
  flex: 1;
  flex-basis: 20%;
}

footer section:first-child p {
  font-size: var(--txtSizeFooter);
}

footer section:first-child ul {
  flex-direction: column;
}

.ulfooter li a {
  font-size: var(--txtSizeFooter);
}

/* segundo section */
footer section:nth-child(2) {
  flex: 1;
  flex-basis: 20%;
}

footer section:nth-child(2) ul {
  display: flex;
  flex-direction: column;
  color: #F8EDB1;

  flex: 0;

}

footer section:nth-child(2) ul li,
footer section:first-child ul a,
footer section:first-child ul li,
footer section:nth-last-child(1) p {
  color: var(--brown7);
  font-size: var(--txtSizeFooter);

}


footer section:nth-last-child(1) {
  padding: 2%;
  flex: 1;
  gap: 2rem;
  flex-basis: 40%;

}

footer section:first-child p {
  font-size: var(--txtSizeFooter);
}

.copyright {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  background-color: var(--brown2);
  color: var(--brown7);
  border-top: 3px var(--brown7) solid;
}
.imgLogoLiBLACK{
  display: none;
}

/* Media query para el nav responsive */

@media screen and (max-width: 800px) {
  .imgLogoLiBLACK{
    display: flex;
  }
  .imgLogoLi{
    display: none;
  }
  .imgLogoR,
  .btnAbrir,
  .btnCerrar {
    display: block;
  }
  .btnAbrir{
    color: var(--brown7);
  }

  .imgLogoR img {
    width: clamp(32px, 17vw + 5rem, 700px);

  }

  header button {
    color: var(--brown1);
    background-color: transparent;
    font-size: xx-large;
    border-style: none;

  }

  nav button {

    background-color: transparent;
    border-style: none;
    font-size: x-large;

  }


  .imgLogo {
    width: clamp(32px, 17vw + 5rem, 700px);
  }


  .nav {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    gap: 1rem;
    position: absolute;
    justify-content: flex-end;

    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 45%;
    background-color: var(--brown7);
    padding: 5rem 2rem 2rem 2rem;
    box-shadow: 0 0 0 100vmax rgb(0, 0, 0, .5);
  }

  .nav.visible {
    visibility: visible;
    opacity: 1;

  }

  .ulr {
    flex-direction: column;
    align-items: end;


  }

  .ulr li {
    padding: 1.8rem 0px;
  }

  .ulr li a {
    color: var(--brown2);
    font-size: clamp(15px, .6rem + 1rem, 30px);
  }


  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }

  ul li:hover ul.dropdrow {
    display: none;
    flex-direction: column;
  }

  .btnNavResponsive {
    display: block;
    font-family: "Plus Jakarta Sans", serif;
    font-size: clamp(15px, .6rem + 1rem, 30px);
  }

  .btnNav {
    display: none;
  }

  ul li ul.visible {
    display: block;

    border-radius: 1 0px;
    margin-top: 15%;
    padding-bottom: 5%;
    padding-top: 5%;
    width: 150px;
    height: auto;
    background-color: #d39a29e4;
    position: relative;

  }

  ul li ul.visible a {
    color: black;
  }


  ul li ul.dropdrow {
    display: none;
  }


  ul li ul.visible li {
    display: block;
    padding: 7px 0px;
  }

  ul li:hover ul.dropdrow {
    display: none;
    flex-direction: column;
  }

}


.btnCallOut {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 17px;
  border-radius: 40px;
  background-color: #d38a59;
  text-decoration: none;
  color: var(--brown2);
  border: 2px solid var(--brown1);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  /* Transiciones suaves */
}

.btnCallOut:hover {
  background-color: var(--brown1);
  color: #d38a59;
  transform: scale(1.09);
  /* Efecto de escala al pasar el mouse */
}

/* codigo del join comunity btn */
.btnCallOutJoin{
  display:inline;
  margin-top: 10px;
  padding: 10px 17px;
  border-radius: 40px;
  background-color: #d38a59;
  text-decoration: none;
  color: var(--brown2);
  border: 2px solid var(--brown1);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  /* Transiciones suaves */
}
.btnCallOutJoin:hover {
  background-color: var(--brown1);
  color: #d38a59;
  transform: scale(1.09);
  /* Efecto de escala al pasar el mouse */
}


.citations-container {
  max-width: 800px;
  /* Ancho máximo para mejorar la legibilidad */
  margin: 0 auto;
  /* Centrar el contenedor en la página */
  padding: 20px;
  font-family: 'Georgia', serif;
  /* Fuente serif para un aspecto más formal */
  line-height: 1.6;
  /* Espaciado entre líneas para mejor legibilidad */
  color: #333;
  /* Color de texto principal */
}

/* Estilos para cada cita (blockquote) */
.citations-container blockquote {
  background-color: #f9f9f9;
  /* Fondo suave para resaltar las citas */
  border-left: 5px solid var(--brown5);
  /* Borde izquierdo de color para destacar */
  padding: 15px 20px;
  /* Espaciado interno */
  margin: 20px 0;
  /* Margen superior e inferior para separar las citas */
  border-radius: 5px;
  /* Bordes redondeados */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Sombra suave para profundidad */
  font-style: italic;
  /* Texto en cursiva para resaltar las citas */
  color: #555;
  /* Color de texto ligeramente más suave */
}

/* Estilos para los párrafos dentro de las citas */
.citations-container blockquote p {
  margin: 0;
  /* Elimina el margen predeterminado de los párrafos */
}

/* Estilos para el texto en negrita dentro de las citas */
.citations-container blockquote strong {
  color: #d38a59;
  /* Color para resaltar texto importante */
  font-weight: bold;
  /* Negrita para énfasis */
}

/* Estilos para los saltos de línea (br) */
.citations-container br {
  display: none;
  /* Oculta los saltos de línea innecesarios */
}