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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffdfb;
  color: #333;
  line-height: 1.6;
}

/* Utilidades */
h1, h2, h3 {
  font-family: 'Pacifico', cursive;
  color: #ff6600;
}

a {
  text-decoration: none;
  color: inherit;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}
.menu-principal {
  background-color: #fff4e6;
  padding: 1rem 5%;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.contenedor-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
}

.logo-flotante img {
  max-width: 350px; /* cámbialo a 400px o más si lo deseas */
	.left: 105%;
transform: translateX(-50%);
}

.nav-principal ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-principal a {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  transition: color 0.2s ease;
}

.nav-principal a:hover {
  color: #ff6600;
}
/* Responsive nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-principal ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 5%;
    width: 80%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-principal ul.activo {
    display: flex;
  }
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  color: white;
  background-color: #ff6600;
  transition: 0.3s ease;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #cc5200;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero .contenido h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: #ff6600;
  margin-bottom: 1rem;
}

/* Escalar en pantallas grandes */
@media (min-width: 1400px) {
  .hero .contenido h1 {
    font-size: 4rem;
  }
}
.hero-img {
  flex: 1 1 400px;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-img img {
  max-width: 300px;
  border-radius: 10px;
}

/* DESTACADOS / SERVICIOS */
.destacados {
  padding: 3rem 5%;
  background-color: #fffaf6;
  text-align: center;
}

.destacados h2 {
  margin-bottom: 2rem;
}

.servicios {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.servicio {
  background-color: #fff;
  border: 2px solid #f3d0c3;
  border-radius: 10px;
  padding: 1rem;
  max-width: 280px;
  transition: transform 0.3s;
}

.servicio:hover {
  transform: translateY(-5px);
}

.servicio img {
  width: 100%;
  border-radius: 8px;
}

.servicio h3 {
  margin: 0.5rem 0;
}

.precio {
  font-size: 1.3rem;
  color: #c64b00;
  font-weight: bold;
}

.urgente {
  font-style: italic;
  color: #c00;
  margin-top: 1rem;
}

/* GALERÍA */
#galeria {
  padding: 3rem 5%;
  background-color: #fff;
}

#galeria h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.galeria-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* CÓMO FUNCIONA */
.como-funciona {
  background: #fff6e0;
  padding: 3rem 5%;
  text-align: center;
}

.como-funciona h2 {
  margin-bottom: 1.5rem;
}

.como-funciona ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  list-style: decimal inside;
}

.como-funciona li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* CONTACTO */
#contacto {
  padding: 3rem 5%;
  background-color: #f0f0f0;
  text-align: center;
}

#contacto h2 {
  margin-bottom: 1rem;
}

#contacto ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

#contacto li {
  margin-bottom: 0.5rem;
}

/* FOOTER */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .servicios {
    flex-direction: column;
    align-items: center;
  }
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
