body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf6;
}

.seccion1 {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
  position: relative;
  z-index: 10;
}

.logo img {
  height: 105px;
  padding-left: 80px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding-left: 700px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  padding-bottom: 5px;
  position: relative;
  font-weight: 500;
}

/* Línea decorativa al pasar el mouse */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ff5722;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* El link activo (Inicio) está siempre subrayado */
.nav-links li.active a::after {
  width: 100%;
}


.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 15px;
}

.nav-links li.active a {
  color: #FA4A0C;
  font-weight: bold;
}

.btn-contact {
  background-color: #FA4A0C;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #e03d00;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px 0;
  position: relative;
}

.text-area {
  padding-bottom: 220px;
  flex: 1;
  padding-right: 20px;
  padding-left: 120px;
  max-width: 420px;
}

.text-area .subtitle {
  background-color: #FFEFE8;
  color: #FA4A0C;
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 25px;
}

.text-area h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.text-area h1 .highlight {
  color: #FA4A0C;
}

.text-area p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.users {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.active-users {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.google-play,
.app-store {
  background-color: #34a853; /* Verde de Google */
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  width: 240px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.google-play:hover,
.app-store:hover {
  background-color: #2c8d47;
}

.button-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.8;
}

.button-large {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}


.play-button {
  width: 30px;
  height: 30px;
  background-color: black;
  border: none;
  border-radius: 50%;
  background-image: url('assets/images/play-icon.png'); /* o usa CSS content si deseas */
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}


.download-buttons button {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.google-play {
  background-color: #FA4A0C;
  color: white;
}

.app-store {
  background-color: #FA4A0C;
  color: white;
}

.image-area {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 600px;
}


@media (max-width: 900px) {
  .content {
    flex-direction: column;
    padding: 40px 30px;
  }

  .image-area {
    margin-top: 40px;
  }

  .burger-bg {
    clip-path: none;
    border-radius: 0;
    left: 0;
  }

  .phone-frame img {
    width: 220px;
  }
}

/*Seccion responsiva - Icono hamburguesa */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.mobile-nav-toggle .hamburger,
.mobile-nav-toggle.open .hamburger::before,
.mobile-nav-toggle.open .hamburger::after {
  background-color: #FA4A0C;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FA4A0C;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #FA4A0C;
  transition: all 0.3s ease-in-out;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Animación a "X" */
.mobile-nav-toggle.open .hamburger {
  background-color: transparent;
}

.mobile-nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Estilos responsivos */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fffaf6;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 90;
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .btn-contact {
    display: none;
  }
}

.bg-tacos {
  position: absolute;
  top: -80px;
  left: 10%;
  width: 120%;
  height: auto;
  opacity: 0.5;
  z-index: 0;
  border-bottom-left-radius: 160px;
  clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
  object-fit: cover;
}

.phone-screen {
  position: relative;
  z-index: 2;
  width: 500px;
  height: auto;
  right: 80px;
  bottom: -20px;
  transform: translateY(-130px); /* ← Sube la imagen 20px */
}

/* 📄 Estilos exclusivos para la sección de Aviso de Privacidad */
#aviso-privacidad {
  background-color: #f5f5f5;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.aviso-container h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #ff5722;
}

.aviso-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.aviso-container ol {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.aviso-container ol li {
  margin-bottom: 20px;
}

.aviso-container ol li strong {
  color: #ff5722;
}

.aviso-container ul {
  margin-top: 8px;
  margin-left: 20px;
  list-style-type: disc;
  color: #555;
}

.aviso-container ul li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 600px) {
  #aviso-privacidad {
    padding: 30px 15px;
    margin: 20px 10px;
  }

  .aviso-container h1 {
    font-size: 28px;
  }

  .aviso-container ol {
    font-size: 14px;
  }
}
