/* ======== Reset básico ======== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

/* ======== Header ======== */
.header {
  background: linear-gradient(90deg, #8b5a2b, #d2a679);
  color: white;
  padding: 20px 0;
  text-align: center;
}
.header h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
.header .social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.header .social li a {
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.header .social li a:hover {
  transform: scale(1.2);
}

/* ======== Carrusel ======== */
.carousel-inner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.carousel-caption {
  background-color: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 10px;
}
.carousel-caption h3 {
  color: #ffd700;
}

/* ======== Botón madera ======== */
.boton-madera {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(145deg, #7e420b, #a05d2f);
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.boton-madera:hover {
  background: linear-gradient(145deg, #a05d2f, #7e420b);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* ======== Imágenes ======== */
.second img, .third img, .fourth img, .text img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.second img:hover, .third img:hover, .fourth img:hover, .text img:hover {
  transform: scale(1.05);
}

/* ======== Footer ======== */
.footer {
  background-color: #222;
  color: white;
  padding: 20px;
}
.footer .social li a {
  color: white;
}
.footer .social li a:hover {
  color: #ffd700;
}

/* ======== Botón flotante WhatsApp ======== */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}
.btn-whatsapp:hover {
  transform: scale(1.1);
}
