* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
}

body{
  width: 100%;    
  margin: 0 auto;        
  padding: 0 20px;    
}

/*Logo y menu de navegación*/
header {
  padding: 16px 32px;
  margin: 0px 58px 0px 58px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 700;
}

.logo a{
  cursor: pointer;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: black;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #F76C0B; 
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/*CONTENIDO*/
section{
  margin: 0px 100px 0px 100px;
}

/*ubicación*/
h6{
  font-size: 3em;
  font-weight: 700;
}

.location{
  font-weight: 700;
  margin-top: 20px;
}

.ubicacion {
  display: flex;
  align-items: center; 
  gap: 10px; 
  margin: 10px 0px;
}


.qro{
  margin: 0;
}

/*texto*/
.cont-text{
  font-size: 6em;
  text-align: center;
  font-weight: 700;
  margin: 15px 0px 40px;
}


/*EMAIL BUTTON*/
.cont-button{
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-button{
  background-color:#F76C0B;
  width: 200px;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 35px;
  text-align: center;
  color: white;
  font-size: 1.5em;
}

.email-button:hover {
  background-color: #AA4B09;
}

/*FOOTER*/

/*iconos de contacto*/
.icon-contact{
  display: flex;
  justify-content: center;
  margin: 60px 0px 20px;
  gap: 20px;
}

.autor{
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.8em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
}

/*celular*/
@media screen and (max-width: 600px){

  /*BARRA DE NAVEGACIÓN*/

header{
    margin: 0px;
    padding: 0px;
  }

 .nav-container {
    display: flex;
    flex-direction: row;        /* mantiene los elementos en fila */
    justify-content: center;    /* centra horizontalmente los enlaces */
    width: 100%;                /* usa todo el ancho disponible */
    gap: 20px;                  /* espacio entre elementos */
    margin: 0 auto;             /* centra el contenedor */
    font-size: 0.9em;
  }

.nav-links{
  gap: 30px;
}

/*CONTENIDO*/
section{
   margin: 0px 10px 0px 10px;
}

h6{
  font-size: 1em;
}

.location{
  font-size: 0.8em;
}

.qro{
  font-size: 0.7em;
}

lord-icon {
    width: 18px !important;
  }

.cont-text{
  margin: 50px 0px 50px 0px;
  font-size: 4em;
}

/*BOTÓN*/
.email-button{
  width: 110px;
  padding: 10px 20px;
  font-size: 0.8em;
}

/*FOOTER*/
.icon-contact img {
  width: 20px;
}

.icon-contact{
  gap: 15px;
  margin-bottom: 10px;
}

.autor {
  font-size: 0.5em;
  margin-bottom: 10px;
}
}