* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.exito {
  text-align: center;
  padding: 40px 20px;
}

.exito-icono img {
  width: 180px;
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
}

/*HEADER*/

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 15px 0;
  transition: all 0.3s ease;

  background: transparent;
}

.header.scrolled {
  background: rgba(255, 248, 242, 0.9);
  backdrop-filter: blur(10px);

  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 55px;
  transition: 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #582c21;
  font-size: 0.95rem;

  position: relative;
  transition: 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 1px;
  background: #e88f8a;

  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #e88f8a;
  color: white !important;

  padding: 8px 18px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: #e48782;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #582c21;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;

    width: 100%;
    background: white;

    max-height: 0;
    overflow: hidden;

    transition: 0.3s ease;
  }

  .nav.active {
    max-height: 300px;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

}

/*HERO*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background: url("../img/portada.png") center/cover no-repeat;

  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(255, 248, 242, 0.6),
    rgba(255, 248, 242, 0.85)
  );

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 750px;
  padding: 20px;
}

.hero h1 {
  font-family: 'Fuzzy Bubbles', cursive;

  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;

  color: #582c21;

  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 500px;

  margin: 0 auto 30px;
  color: #6a4a3c;
}

.btn-hero {
  display: inline-block;

  background: linear-gradient(135deg, #e88f8a, #f3b1ac);
  color: white;

  padding: 16px 40px;
  border-radius: 999px;

  font-size: 1rem;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(232, 143, 138, 0.3);

  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(232, 143, 138, 0.4);
}

.hero-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .hero {
    min-height: 550px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

}

/*GALERIA */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.galeria h2 {
  font-family: 'Fuzzy Bubbles', cursive;

  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;

  color: #582c21;

  margin-bottom: 20px;
}

.galeria-item {
  position: relative;
  overflow: hidden;

  border-radius: 18px;
  aspect-ratio: 1 / 1;

  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.galeria h2,
.galeria-sub {
  text-align: center;
}

.galeria {
  padding: 100px 0;
}

.galeria-btn {
  text-align: center;
}

.galeria-sub {
  max-width: 500px;
  margin: 10px auto 40px;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(88, 44, 33, 0.5),
    transparent
  );

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 15px;

  opacity: 0;
  transition: 0.3s ease;
}

.galeria-overlay span {
  color: white;
  font-size: 0.9rem;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

@media (max-width: 1024px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}

.btn-instagram {
  display: inline-block;
  margin-top: 40px;

  padding: 14px 30px;
  border-radius: 999px;

  background: transparent;
  border: 1px solid #e88f8a;

  color: #e88f8a;
  text-decoration: none;

  transition: 0.3s ease;
}

.btn-instagram:hover {
  background: #e88f8a;
  color: white;
  transform: translateY(-2px);
}

/*SERVICIOS*/
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  max-width: 1000px;
  margin: 0 auto;
}

.servicios h2 {
  font-family: 'Fuzzy Bubbles', cursive;

  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;

  color: #582c21;

  margin-bottom: 20px;
}

.servicio-card {
  background: white;
  padding: 30px 20px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  text-align: center;

  transition: all 0.3s ease;
}

.servicios-container h2,
.servicios-sub {
  text-align: center;
}

.servicios-sub {
  max-width: 500px;
  margin: 10px auto 50px;
}

.servicios {
  padding: 100px 20px;
}

.servicios {
  background: linear-gradient(
    to bottom,
    #fff,
    #fffaf7
  );
}

.servicios-grid {
  margin-bottom: 80px;
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icono {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  background: #faf8de;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.servicio-card:hover .icono {
  background: #f3c3c1;
}

.servicio-card h3 {
  margin-bottom: 10px;
  color: #582c21;
}

.servicio-card p {
  font-size: 0.95rem;
  color: #6a4a3c;
}

@media (max-width: 1024px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
}

/*SOBRE ELLA*/
.sobre-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 80px;
}

.sobre {
  padding: 120px 20px 140px;
}

.sobre-texto p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.como-pedir {
  padding-top: 100px;
}

.sobre {
  background: linear-gradient(
    to bottom,
    #fff,
    #fffaf7
  );
}

.sobre-img img {
  width: 100%;
  max-width: 400px;

  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-family: 'Fuzzy Bubbles', cursive;

  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;

  color: #582c21;
}

.sobre-destacado {
  font-size: 1.1rem;
  color: #e88f8a;

  margin-bottom: 20px;
}

.sobre-texto p {
  margin-bottom: 15px;
  line-height: 1.6;

  color: #6a4a3c;
}

@media (max-width: 900px) {

  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-img img {
    max-width: 280px;
  }

}

.sobre {
  animation: fadeUp 1s ease;
}

/*COMO PEDIR*/
.pedido-section {
  padding: 80px 20px 0;
}

/* BLOQUE PASOS */
.como {
  padding: 120px 20px 80px;
}

.como-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.como h2 {
  font-family: 'Fuzzy Bubbles', cursive;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #582c21;
  margin-bottom: 10px;
}

/* SUBTEXTO */
.como-sub {
  max-width: 500px;
  margin: 0 auto 60px;
  color: #6a4a3c;
}

/* GRID */
.como-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;

  max-width: 900px;
  margin: 0 auto;
}

/* CARDS */
.paso {
  background: white;
  padding: 35px 25px;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  text-align: center;

  transition: all 0.3s ease;
}

.paso:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}


/* ICONO */
.paso-icono {
  width: 55px;
  height: 55px;

  margin: 0 auto 15px;

  border-radius: 50%;
  background: #f3c3c1;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: #582c21;
}

/* CTA GRANDE */
.cta {
  padding: 140px 20px;
  background: #faf8de;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

/* TÍTULO CTA */
.cta h2 {
  font-family: 'Fuzzy Bubbles', cursive;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 20px;
  color: #582c21;
  line-height: 1.2;
}

/* TEXTO CTA */
.cta p {
  max-width: 500px;
  margin: 0 auto 40px;
  color: #6a4a3c;
}

/* BOTÓN */
.btn-cta {
  background: linear-gradient(135deg, #e88f8a, #f3b1ac);
  color: white;

  padding: 16px 40px;
  border-radius: 999px;

  border: none;
  cursor: pointer;

  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(232, 143, 138, 0.3);
}



/*FORMULARIO*/
.formulario {
  padding: 100px 20px;
  background: #fffaf7;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

/* BLOQUES */
.form-bloque {
  background: white;
  padding: 25px;
  margin-bottom: 20px;

  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* INPUTS */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;

  border-radius: 10px;
  border: 1px solid #eee;

  font-size: 0.95rem;
}

textarea {
  resize: none;
}

/* BOTÓN */
.btn-enviar {
  margin-top: 20px;

  background: linear-gradient(135deg, #e88f8a, #f3b1ac);
  color: white;

  padding: 14px 30px;
  border-radius: 999px;

  border: none;
  cursor: pointer;

  transition: 0.3s ease;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232, 143, 138, 0.3);
}

/* RESUMEN */
.resumen-botones {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.resumen-botones button {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

/* ÉXITO */
.exito {
  text-align: center;
}

/* MOBILE */
@media (max-width: 600px) {
  .form-bloque {
    padding: 20px;
  }
}

/*REDES Y CONTACTO */
.redes {
  padding: 100px 20px;
  text-align: center;
  background: #fdf8f5;
  padding: 120px 20px;
}

.redes h2 {
  font-family: 'Fuzzy Bubbles', cursive;
  font-size: clamp(2rem, 4vw, 2.6rem);

  margin-bottom: 10px;
  color: #582c21;
}

.redes p {
  color: #6a4a3c;
}

.redes-sub {
  color: #6a4a3c;
  margin-bottom: 40px;
}

.redes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;

  max-width: 700px;
  margin: 0 auto;
}

.red-card {
  padding: 25px 15px;

  border-radius: 20px;

  text-decoration: none;
  color: #582c21;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

.red-card {
  background: #ffffff;
  border: 1px solid #f1e5df;
}

.red-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.red-icon {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: #f3c3c1;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
}

@media (max-width: 700px) {
  .redes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*FOOTER*/
.footer {
  padding: 60px 20px 0;
}

.footer {
  background: #f0e3de; /* antes muy oscuro */
  color: #ffffff;
}

/* TEXTO */
.footer p {
  color: #582c21;
}


/* LINKS */
.footer a {
  color: #000000;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

/* BARRA FINAL */
.footer-aura-bar {
  background: #5a3d32;
  color: #000000;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;

  flex-wrap: wrap;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.momomi-logo {
  width: 80px;
}

.momomi-info {
  max-width: 260px;
}

.brand-name {
  font-family: 'Fuzzy Bubbles', cursive;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.momomi-info p {
  font-size: 0.9rem;
  color: #000000;
}

.footer-contact {
  margin-top: 10px;
}

.footer-contact p {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgb(4, 0, 0);
  font-size: 0.9rem;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #000000;
}

.footer-aura-bar {
  width: 100%;
  margin-top: 50px;

  padding: 18px 20px;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.15)
  );

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.footer {
  overflow: hidden;
}

.aura-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aura-brand img {
  width: 30px;
}

.aura-name {
  font-weight: 500;
}

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

}


img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

.exito-icono {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.exito-icono img {
  width: 180px;       /* 👈 ajusta aquí el tamaño */
  max-width: 70%;
  height: auto;
}

@media (max-width: 768px) {

  .header-container {
    width: 95%;
  }

  .logo img {
    width: 45px;
  }

}

@media (max-width: 768px) {

  .hero {
    min-height: 500px;
    padding: 40px 15px;
  }

  .btn-hero {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

}

@media (max-width: 600px) {

  .form-container {
    width: 100%;
  }

  .form-bloque {
    padding: 18px;
    border-radius: 15px;
  }

  input, select, textarea {
    font-size: 1rem;
    padding: 14px;
  }

  .btn-enviar {
    width: 100%;
    padding: 16px;
  }

}

@media (max-width: 600px) {

  .resumen-botones {
    flex-direction: column;
  }

}

@media (max-width: 600px) {

  /* 🧠 TEXTO GENERAL */
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.6rem !important;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* 📦 CONTENEDORES */
  .container,
  .form-container {
    width: 92%;
  }

  /* 🧁 HERO */
  .hero-content {
    padding: 0 10px;
  }

  /* 🔘 BOTONES */
  .btn-hero,
  .btn-cta,
  .btn-enviar {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }

  /* 📋 FORMULARIO (MUY IMPORTANTE) */
  input, select, textarea {
    padding: 16px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .form-bloque {
    padding: 20px;
    margin-bottom: 18px;
  }

  /* 📊 RESUMEN BOTONES */
  .resumen-botones {
    flex-direction: column;
    gap: 12px;
  }

  /* 🧁 CARDS SERVICIOS */
  .servicio-card {
    padding: 25px;
  }

  /* 🧠 SOBRE */
  .sobre-container {
    gap: 30px;
  }

}



