@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #00796b;
  --secondary: #004d40;
  --accent: #ff5722;
  --background: #f5f5f5;
  --foreground: #212121;
  --card: #ffffff;
  --card-hover: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--primary);
  color: white;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Estilos para el logo clickable */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

/* Estilos para el menú responsive */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
}

/* Estilos para el botón de descarga en el header */
.header-download-btn {
  background-color: var(--accent);
  padding: 8px 20px;
  border-radius: 30px;
  color: white;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-download-btn:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
  color: white;
}

@media (max-width: 992px) {
  .header-download-btn {
    margin-top: 10px;
    padding: 10px 20px;
    width: 80%;
  }
}

#hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 100px 0 50px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  padding-right: 50px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
}

.app-download {
  background-color: transparent;
  border: 2px solid white;
}

.app-download:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#features,
#benefits,
#testimonials,
#problem,
#location,
#contact,
#app-download {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--card);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent) 10%, transparent 10%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: 0;
}

.feature-card:hover::before {
  transform: scale(1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  background-color: var(--card);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-right: 20px;
}

.benefit-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 20px;
}

.testimonial-content {
  background-color: var(--card);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-nav button {
  background-color: var(--primary);
  color: white;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-nav button.active {
  background-color: var(--accent);
}

/* Estilos para la sección de app download */
#app-download {
  padding: 80px 0;
}

.app-download-card {
  background-color: var(--card);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.app-download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.95;
  z-index: 0;
}

.app-download-content {
  position: relative;
  z-index: 1;
  color: white;
}

.app-download-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.app-download-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.app-download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.app-store-button,
.play-store-button {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.app-store-button:hover,
.play-store-button:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-store-button i,
.play-store-button i {
  font-size: 2.2rem;
  margin-right: 15px;
}

.app-store-button span,
.play-store-button span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.app-store-button small,
.play-store-button small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Estilos para el logo en la sección de descarga */
.app-download-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.app-download-logo img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.app-download-logo span {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Estilos para la sección de problemática */
.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.problem-card {
  display: flex;
  flex-direction: column;
}

.problem-video-container {
  background-color: var(--card);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

/* Estilos para la sección de ubicación */
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.location-card {
  background-color: var(--card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-card {
  position: relative;
  min-height: 450px;
}

.location-map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.location-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  align-items: center;
}

.location-icon {
  font-size: 2rem;
  margin-right: 15px;
  color: var(--accent);
}

.location-header h3 {
  font-size: 1.8rem;
  margin: 0;
}

.location-details {
  padding: 30px;
  flex-grow: 1;
}

.location-detail-item {
  display: flex;
  margin-bottom: 25px;
}

.location-detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1.2rem;
  color: var(--accent);
}

.detail-text h4 {
  margin: 0 0 5px;
  color: var(--primary);
  font-size: 1.1rem;
}

.detail-text p {
  margin: 0;
  color: var(--foreground);
}

.location-cta {
  margin: 0 30px 30px;
  text-align: center;
}

/* Estilos para la sección de contacto */
.contact-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 500;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.form-group textarea {
  height: 150px;
}

.contact-form .cta-button {
  width: 100%;
  margin-top: 10px;
}

/* Estilos para el footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.footer-column ul li i {
  margin-right: 10px;
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Estilos para los modales */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--card);
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
  position: relative;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 25px 30px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header i {
  color: var(--accent);
}

.close {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.close:hover {
  color: var(--accent);
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
  line-height: 1.7;
}

.privacy-section,
.terms-section {
  margin-bottom: 25px;
  padding: 20px;
  background-color: rgba(0, 121, 107, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.privacy-section:last-child,
.terms-section:last-child {
  margin-bottom: 0;
}

.privacy-section h3,
.terms-section h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section h3 i,
.terms-section h3 i {
  color: var(--accent);
  font-size: 1.2rem;
}

.privacy-section p,
.terms-section p {
  margin-bottom: 10px;
  color: var(--foreground);
}

.privacy-section ul,
.terms-section ul {
  margin-left: 20px;
  color: var(--foreground);
}

.privacy-section li,
.terms-section li {
  margin-bottom: 8px;
}

.privacy-section strong,
.terms-section strong {
  color: var(--primary);
  font-weight: 600;
}

/* Animaciones para los modales */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media queries para responsividad */
@media (max-width: 992px) {
  /* Ajustes para el header */
  header {
    padding: 15px 0;
  }
  nav.container {
    position: relative;
  }
  .nav-toggle-label {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 4px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
  }
  .nav-toggle:checked ~ .nav-links {
    height: auto;
    padding: 20px 0;
    opacity: 1;
    visibility: visible;
  }
  .nav-links li {
    margin: 12px 0;
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    display: block;
    padding: 12px;
    font-size: 1.1rem;
  }
  /* Ajustes para la sección de app download */
  .app-download-card {
    padding: 30px 20px;
  }
  .app-download-content h2 {
    font-size: 2rem;
  }
  .app-download-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  /* Ajustes para la sección de problemática */
  .problem-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Ajustes para la hero section */
  #hero {
    padding: 120px 0 60px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .hero-text {
    order: 1;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .hero-image {
    order: 0;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero-buttons {
    justify-content: center;
  }
  /* Ajustes para las secciones de características y beneficios */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card,
  .benefit-item {
    padding: 25px;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  #features,
  #benefits,
  #testimonials,
  #problem,
  #location,
  #contact,
  #app-download {
    padding: 60px 0;
  }
  /* Ajustes para la sección de ubicación */
  .location-container {
    grid-template-columns: 1fr;
  }
  .map-card {
    min-height: 300px;
  }
  /* Ajustes para el footer */
  .footer-content {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    margin-top: 10px;
    justify-content: center;
  }
  /* Ajustes para los elementos de beneficio */
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* Ajustes generales */
  .container {
    padding: 0 15px;
  }

  /* Ajustes para modales en móvil */
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 20px;
  }

  .privacy-section,
  .terms-section {
    padding: 15px;
    margin-bottom: 20px;
  }
}

/* Estilos para animaciones */
.will-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Retraso escalonado para elementos en grid */
.features-grid .feature-card:nth-child(1),
.benefits-grid .benefit-item:nth-child(1) {
  transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2),
.benefits-grid .benefit-item:nth-child(2) {
  transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3),
.benefits-grid .benefit-item:nth-child(3) {
  transition-delay: 0.3s;
}

.benefits-grid .benefit-item:nth-child(4) {
  transition-delay: 0.4s;
}

/* Estilos para la sección About */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 20px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-text-content {
  display: flex;
  flex-direction: column;
}

.about-video-container {
  background-color: var(--card);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Media queries para la sección About */
@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-content {
    gap: 30px;
  }
}

/* Animación para la sección de problemática */
.problem-card {
  transition-delay: 0.1s;
}

.problem-video-container {
  transition-delay: 0.3s;
}

/* Animación para la sección de ubicación */
.map-card {
  transition-delay: 0.1s;
}

.info-card {
  transition-delay: 0.3s;
}

@media (max-width: 480px) {
  /* Ajustes para pantallas muy pequeñas */
  .logo span {
    font-size: 1.2rem;
  }
  .logo img {
    width: 30px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-image img {
    max-width: 100%;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .feature-icon,
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .feature-card h3,
  .benefit-text h3 {
    font-size: 1.2rem;
  }
  .location-header h3 {
    font-size: 1.5rem;
  }
  .detail-icon {
    width: 40px;
    height: 40px;
  }
  .app-button {
    width: 100%;
    justify-content: center;
  }
  /* Ajustes para la sección de app download en móviles */
  .app-download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .app-store-button,
  .play-store-button {
    width: 100%;
    justify-content: center;
  }
  .app-download-content h2 {
    font-size: 1.8rem;
  }
  .app-download-logo {
    margin-top: 30px;
  }
  .app-download-logo img {
    width: 60px;
    height: 60px;
  }
  .app-download-logo span {
    font-size: 1.2rem;
  }

  /* Ajustes adicionales para modales en pantallas muy pequeñas */
  .modal-header h2 {
    font-size: 1.3rem;
  }

  .close {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }

  .privacy-section h3,
  .terms-section h3 {
    font-size: 1.1rem;
  }
}
