/* ==== RESET GENERAL ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #fdf6f2;
  color: #3f3a36;
  line-height: 1.6;
  text-align: center;
  overflow-x: hidden;
}

/* ==== HEADER ==== */
header {
  margin-top: 40px;
  margin-bottom: 20px;
  animation: fadeIn 1.8s ease-in-out;
}

.logo {
  width: 140px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
}

.logo:hover { transform: scale(1.07); }

h1 {
  font-size: 2rem;
  color: #2c2522;
  margin-top: 12px;
  animation: fadeDown 1.5s ease-in-out;
}

.subtitulo {
  font-style: italic;
  color: #6b5f5a;
  margin-top: 6px;
}

/* ==== INTRO ==== */
.intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  animation: fadeIn 2s ease;
}

.intro ul { list-style: none; }

/* ==== GALERÍA ==== */
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 35px auto;
  max-width: 1000px;
}

.galeria img {
  width: 240px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* ==== CONTACTO ==== */
.contacto {
  background: #fff8f5;
  padding: 40px 20px;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

input, textarea {
  width: 80%;
  padding: 10px;
  border: 1px solid #d7ccc8;
  border-radius: 8px;
  background: white;
  margin-top: 6px;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-enviar,
.btn-whatsapp {
  padding: 10px 22px;
  border-radius: 26px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  display: inline-block;
}

/* enviar */
.btn-enviar {
  background: #e6a59a;
}

.btn-enviar:hover {
  background: #d4897f;
  transform: scale(1.05);
}

/* whatsapp */
.btn-whatsapp {
  background: #7e9676;
}

.btn-whatsapp:hover {
  background: #6b845f;
  transform: scale(1.05);
}

/* ==== REDES ==== */
.iconos {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 10px;
}

.iconos svg:hover {
  transform: scale(1.18);
  transition: 0.3s;
}

/* ==== UBICACIÓN ==== */
.ubicacion {
  margin-top: 40px;
  padding-bottom: 40px;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7e9676;
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.btn-maps svg {
  width: 20px;
  height: 20px;
}

.btn-maps:hover {
  background: #6b845f;
  transform: translateY(-3px);
}

/* ==== FOOTER ==== */
.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #4a3f3a;
}

/* ==== ANIMACIONES ==== */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

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