/* === Estilos generales === */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #fff0f6, #ffffff);
  color: #5a5a5a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* === Navbar === */
.navbar {
  background-color: #e91e63 !important;
  padding: 0.8rem 1rem;
  transition: background 0.3s ease-in-out;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.navbar-brand, .nav-link {
  color: #fff !important;
}

.nav-link {
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: #ffd1e6 !important;
  transform: scale(1.05);
}

/* === Carrusel === */
#carruselZapatos {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

#carruselZapatos img {
  height: 650px;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

#carruselZapatos img:hover {
  transform: scale(1.05);
}

/* Carrusel responsivo */
@media (max-width: 768px) {
  #carruselZapatos {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px auto;
  }

  #carruselZapatos img {
    height: 250px;
  }
}

/* === Secciones === */
h2 {
  color: #d81b60;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #e91e63;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* === Tarjetas de productos === */
.card {
  background-color: #ffe6f0;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(215, 140, 140, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(215, 140, 140, 0.6);
}

.card-title {
  color: #c2185b;
  font-weight: bold;
}

.card-text {
  color: #d98282;
}

.btn-dark {
  background-color: #c2185b;
  border: none;
  transition: background 0.3s ease;
}

.btn-dark:hover {
  background-color: #ad1457;
}

/* === Íconos (ofrecemos) === */
.icono-ofrecemos {
  font-size: 2.5rem;
  color: #e91e63;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icono-ofrecemos:hover {
  color: #c2185b;
  transform: scale(1.2) rotate(5deg);
}

/* === Formulario de contacto === */
form label {
  font-weight: bold;
  color: #c2185b;
}

form .form-control {
  border-radius: 10px;
  border: 1px solid #f8bbd0;
  transition: all 0.3s ease;
}

form .form-control:focus {
  border-color: #e91e63;
  box-shadow: 0 0 8px rgba(233, 30, 99, 0.4);
}

/* === Mapa === */
#contacto iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(224, 146, 146, 0.6);
}

/* === Footer === */
footer {
  background-color: #c2185b;
  color: white;
  font-size: 0.9rem;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #ffd1e6;
  margin: 0 8px;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer a:hover {
  color: #fff;
  transform: scale(1.2);
}





