/* HERO STYLES */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=1600&q=80'); /* Fondo relacionado con comida y marketing */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Capa oscura */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta {
  background-color: #ff5a2c;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero-cta:hover {
  background-color: #e04e21;
  color: white;
  text-decoration: none;
}
/* FIN HERO STYLES */
/* SERVICIOS SECTION */
.servicios {
  padding: 60px 10px;
  background: #f8f8f8;
  text-align: center;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.servicios-titulo {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
}

@media (min-width: 768px) {
  .servicios {
    padding: 60px 20px;
    overflow-x: visible;
  }

  .servicios-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0;
    max-width: 800px;
  }
}

.servicio {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  padding: 10px; /* añadir padding para que no toque bordes */
  overflow: hidden;
}

.servicio:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  color: black;
}

.servicio img {
  width: 100%;
  max-width: 180px; /* reduce tamaño en móvil para evitar desbordes */
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.servicio h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: rgb(76, 75, 75);
}

/* FIN SERVICIOS SECTION */



/* ABOUT */
.about {
  padding: 60px 20px;
  background: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-title,
  .about-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1rem;
  }
}
/* FIN ABOUT */

.install-app {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.install-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.install-text {
    flex: 1 1 400px;
    padding: 20px;
}

.install-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.install-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.btn-install {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-install:hover {
    background-color: #0056b3;
}

.install-image {
    flex: 1 1 400px;
    text-align: center;
    padding: 20px;
}

.install-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/*IFRAME PRICING*/
.iframe-popup {
    color: orange;
    
}
/*LOGO TRAGALERO*/
#logo{
  filter: drop-shadow(0 0 2px black);
  width: 150px
}


