body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f2f2f2;
  color: #333;
}
header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo {
  height: 80px;
}
nav {
  display: flex;
  gap: 2rem;
}
.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #63361F;
}

.menu-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-icon {
  width: 25px;
  height: 2px;
  background: #333;
  position: relative;
}

  .menu-icon::before,
.menu-icon::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.buttons-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 2rem 5rem;
  margin-bottom: 4rem;
}

.info-button {
  background-color: #f9f9f9;
  border-radius: 12px;
  text-align: center;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 60px;
  transition: background-color 0.3s;
}

.info-button:hover {
  background-color: #63361F;
}

.info-button:hover span {
  color: white;
}

.icon-circle {
  background-color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.icon-circle i {
  font-size: 30px;
  color: #63361F;
}

.info-button span {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}

.info-link {
  text-decoration: none;
  display: block;
}

footer {
  background: #63361F;
  color: white;
  text-align: center;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
}

footer a {
  color: white;
  text-decoration: none;
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo-utedyc {
  margin-top: 1.5rem;
  max-width: 75px;
}

@media (max-width: 768px) {
nav {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 60px;
  right: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 1rem;
}

nav.open {
  display: flex;
}

.menu-toggle {
  display: flex;
}

.buttons-section {
  grid-template-columns: 1fr;
  padding: 1rem;
  gap: 1rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.info-button {
  margin-top: 40px;
}
}



body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #f2f2f2;
  color: #333;
}

header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 80px;
}

nav {
  display: flex;
  gap: 2rem;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #63361F;
}

.menu-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-icon {
  width: 25px;
  height: 2px;
  background: #333;
  position: relative;
}

  .menu-icon::before,
.menu-icon::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.main-content {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  margin-top: 2rem;
  color: #63361F;
}

ul {
  list-style-position: inside;
  padding-left: 1.5rem;
  margin-left: 0;
}


footer {
  background: #63361F;
  color: white;
  text-align: center;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
  margin-top: 4rem;
}

footer a {
  color: white;
  text-decoration: none;
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo-utedyc {
  margin-top: 1.5rem;
  max-width: 75px;
}

@media (max-width: 768px) {
nav {
  display: none;
  flex-direction: column;
  position: absolute;
  background: white;
  top: 80px;
  right: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 1rem;
}

nav.open {
  display: flex;
}

.menu-toggle {
  display: flex;
}
}



body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #f2f2f2;
  color: #333;
}

header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 80px;
}

nav {
  display: flex;
  gap: 2rem;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #63361F;
}

.menu-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-icon {
  width: 25px;
  height: 2px;
  background: #333;
  position: relative;
}

  .menu-icon::before,
.menu-icon::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.main-content {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

h1 {
  margin-bottom: 2rem;
}

.wifi-info {
  font-size: 1.25rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.wifi-info p {
  margin: 1rem 0;
}

.connect-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #63361F;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.qr-image {
  margin-top: 2rem;
  max-width: 200px;
}

footer {
  background: #63361F;
  color: white;
  text-align: center;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
  margin-top: 4rem;
}

footer a {
  color: white;
  text-decoration: none;
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo-utedyc {
  margin-top: 1.5rem;
  max-width: 75px;
}

@media (max-width: 768px) {
nav {
  display: none;
  flex-direction: column;
  position: absolute;
  background: white;
  top: 80px;
  right: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 1rem;
}

nav.open {
  display: flex;
}

.menu-toggle {
  display: flex;
}
}



body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #f2f2f2;
  color: #333;
}

header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 80px;
}

nav {
  display: flex;
  gap: 2rem;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #63361F;
}

.menu-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-icon {
  width: 25px;
  height: 2px;
  background: #333;
  position: relative;
}

  .menu-icon::before,
.menu-icon::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.main-content {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

h1 {
  margin-bottom: 2rem;
}

.info-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 1.25rem;
  line-height: 1.6;
}


footer {
  background: #63361F;
  color: white;
  text-align: center;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
  margin-top: 4rem;
}

footer a {
  color: white;
  text-decoration: none;
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo-utedyc {
  margin-top: 1.5rem;
  max-width: 75px;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(120,120,120,0.7); /* Blanco con transparencia */
  z-index: 1;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  color: white;
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  line-height: 3em;
}
.hero-secondary {
  font-size: 1.1em;
  margin: 0;
  color: #63361F;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(255,255,255,0.6);
}
.hero-main {
  margin: 0;
  font-size: 3em;
  max-width: 70%;
}
.box-normas {
  font-size: .9em;
}
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #63361F;
    top: 80px;
    right: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 1rem;
  }
  .menu-link {
    color: #f9f9f9;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
  .hero-section {
    height: 300px;
  }
  .hero-main {
    max-width: 80%;
  }
}