@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8f8f8;
  color: #222;
  line-height: 1.5;
}

header .d-flex img {
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
header .d-flex img:hover {
  transform: scale(1.15);
  background-color: rgba(255, 255, 255, 0.08);
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #c9a24d;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border-radius: 5px;
}

.dropdown-item:hover {
  background-color: #222;
  color: #fff;
}

/* Logo */
.navbar-brand img {
  border-radius: 14px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
  box-shadow: 0 6px 16px rgba(201, 162, 77, 0.25);
}
.navbar-brand span {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.navbar-brand:hover span {
  opacity: 1;
}

/* Responsive navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-collapse > div {
    justify-content: center;
    margin-top: 10px;
  }
}
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}
main section {
  margin-bottom: 40px;
}
main h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

/* Destacados */
.destacados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .destacados-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  main {
    margin: 20px auto;
    padding: 10px;
  }
  main h2 {
    font-size: 1.3rem;
    text-align: center;
  }
  .destacados-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.footer {
  background-color: #111;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.footer-item p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}
.footer-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer-item:hover .footer-icon {
  transform: scale(1.2);
  filter: brightness(1.2);
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 20px 0;
}

@media (max-width: 500px) {
  .footer-item {
    justify-content: center;
    text-align: center;
  }
}
/* Artículos */
article {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin: 10px 0;
}
article h3 {
  margin-bottom: 5px;
}

/* Productos */
.producto {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.producto {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.producto img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.producto.destacado {
  border: 5px solid #c9a24d;
}
.producto p {
  font-weight: bold;
}
.producto:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Colecciones */
.coleccion-item {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coleccion-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.coleccion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tag-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #c9a24d;
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* CONTENEDOR GENERAL */
.contacto-main {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

/* HERO */
.contacto-hero {
  text-align: center;
  margin-bottom: 60px;
}
.contacto-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.contacto-hero p {
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.75;
  font-size: 0.95rem;
}

/* CONTENIDO */
.contacto-contenido {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* INFO IZQUIERDA */
.contacto-info {
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.08), rgba(0, 0, 0, 0));
  padding: 30px;
  border-radius: 12px;
}
.contacto-info h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.contacto-info p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 20px;
}
.contacto-info ul {
  list-style: none;
  padding: 0;
}
.contacto-info ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.contacto-info ul li strong {
  color: #c9a24d;
}

/* CARD FORMULARIO */
.contacto-form {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  border: 1px solid #ddd;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.contacto-form h2 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  text-align: center;
}

/* FORM */
.contacto-formulario {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CAMPOS */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  opacity: 0.5;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a24d;
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.25);
}

/* BOTÓN */
.btn-enviar {
  margin-top: 10px;
  background: linear-gradient(135deg, #c9a24d, #b08d3f);
  color: #111;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-contenido {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contacto-form {
    padding: 25px;
  }
}
.btn-comprar {
  background-color: #111;
  color: #c9a24d;
  border: 2px solid #c9a24d;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
}

.btn-comprar:hover {
  background-color: #c9a24d;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tabs Colecciones */
.colecciones-tabs .nav-pills .nav-link {
  background-color: transparent;
  color: #111;
  border: 2px solid transparent;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 18px;
  transition: all 0.3s ease;
}
.colecciones-tabs .nav-pills .nav-link:hover {
  border-color: #c9a24d;
  color: #c9a24d;
}
.colecciones-tabs .nav-pills .nav-link.active {
  background-color: #111;
  color: #c9a24d;
  border-color: #c9a24d;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  z-index: 999;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/*# sourceMappingURL=styles.css.map */
