* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f9f5f2;
    color: #2c2c2c;
}

/* NAV */
header {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b48a5a;
}

/* HERO */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f3e7dc, #e6d3bf);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* PRODUCTS */
.products {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #b48a5a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.price {
    display: block;
    margin: 1rem 0;
    font-weight: bold;
    color: #b48a5a;
}

.btn-buy {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #b48a5a;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
}

/* CONTACT */
.contact {
    background: #fff;
    text-align: center;
    padding: 3rem;
}




/* HEADER LUJO */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #7a5c3d;
    position: relative;
}

/* línea elegante abajo */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #b48a5a;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}



/* HERO LUJO */
.hero-luxe {
    height: 80vh;
    background: linear-gradient(
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.9)
    ),
    url("img/gucci-shoes.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background: rgba(255,255,255,0.85);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #7a5c3d;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-btn {
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, #b48a5a, #e0c9a6);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(180,138,90,0.4);
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.08);
}




/* CARRUSEL HERO */
.hero-carousel {
   height: 55vh;
    background: linear-gradient(135deg, #f6c1cc, #f4d7b5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slides {
    position: absolute;
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
    transform: translateY(20px);
}

.slides.active {
    opacity: 1;
    transform: translateY(0);
}

.slides h1 {
    font-size: 3rem;
    color: #7a3e48;
}

.slides p {
    font-size: 1.2rem;
    color: #5a2e35;
    margin-top: 1rem;
}



.product-card {
    background: #fff;
    border-radius: 25px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    border-radius: 20px;
}

.price {
    display: block;
    margin: 1rem 0;
    font-weight: bold;
    color: #b76e79;
    font-size: 1.2rem;
}

/* BOTÓN COTIZAR */
.btn-cotizar {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #f4a6b8, #d4af37);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(212,175,55,0.5);
}



.whatsapp-femme {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #f4a6b8, #25D366);
    color: white;
    font-size: 1.8rem;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}



.btn-cotizar:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212,175,55,0.6);
}



/* NAV PREMIUM */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.95rem;
    color: #7a3e48;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Línea elegante debajo */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4a6b8);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #b76e79;
}

.nav-links a:hover::after {
    width: 100%;
}



.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #7a3e48;
}



.header {
    transition: box-shadow 0.3s ease;
}

.header:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}




.products,
.contact {
    padding: 6rem 2rem;
}



body {
    background: #fcefed; /* crema-rosado suave, elegante */
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}




/* CARRUSEL HERO REDUCIDO */
.hero-carousel {
    height: 45vh; /* antes estaba 55vh, ahora más compacto */
    background: linear-gradient(135deg, #f1c6cf, #efe3d8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem; /* espacio superior */
}

.slides h1 {
    font-size: 2.5rem; /* un poco más pequeño para que no se vea gigante */
    color: #7a3e48;
}

.slides p {
    font-size: 1.1rem;
    color: #5a2e35;
    margin-top: 0.5rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-carousel {
        height: 35vh; /* más pequeño en tablets y móviles */
        padding-top: 3rem;
    }

    .slides h1 {
        font-size: 2rem;
    }

    .slides p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 30vh;
        padding-top: 2rem;
    }

    .slides h1 {
        font-size: 1.8rem;
    }

    .slides p {
        font-size: 0.95rem;
    }
}






h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 1px;
}





.slides h1 {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slides p {
    margin-top: 0;
    letter-spacing: 1px;
}
.slides h1 {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slides p {
    margin-top: 0;
    letter-spacing: 1px;
}
.slides h1 {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slides p {
    margin-top: 0;
    letter-spacing: 1px;
}



.hero-carousel {
    align-items: flex-start;
    padding-top: 6rem;
}






.joyeria {
  background-color: #111;
  color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Playfair Display', serif;
}

.joyeria h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ffd700;
}

.productos {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.producto {
  background: #1c1c1c;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.producto img {
  width: 100%;
  height: auto;
}

.producto h3 {
  margin: 15px 0 5px 0;
  font-size: 1.3em;
  color: #ffd700;
}

.producto p {
  font-size: 0.95em;
  margin-bottom: 10px;
  color: #ccc;
}

.precio {
  font-weight: bold;
  font-size: 1.1em;
  color: #ffd700;
  display: block;
  margin-bottom: 15px;
}

.producto button {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95em;
  transition: background 0.3s, color 0.3s;
}

.producto button:hover {
  background: #ffd700;
  color: #111;
}

.producto:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}




/* SECCIÓN JOYERÍA */
.joyeria {
    background: #fcf8f6; /* mismo color de fondo que productos */
    color: #2c2c2c;
    padding: 6rem 2rem;
}

.joyeria h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #b48a5a; /* mismo color dorado que tus productos */
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Contenedor de tarjetas de joyería */
.joyeria .productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Tarjetas de joyería */
.joyeria .producto {
    background: #fff; /* mismo color de tarjetas productos */
    border-radius: 25px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* igual que productos */
    transition: transform 0.4s, box-shadow 0.4s;
}

.joyeria .producto:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(180,138,90,0.3); /* sombra premium */
}

.joyeria .producto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.joyeria .producto h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.3rem;
    margin: 15px 0 10px;
    color: #7a3e48; /* mismo tono que títulos productos */
}

.joyeria .producto p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.joyeria .producto .precio {
    font-weight: bold;
    font-size: 1.1rem;
    color: #b48a5a;
    display: block;
    margin-bottom: 15px;
}

/* Botones de joyería */
.joyeria .producto .btn-cotizar {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #f4a6b8, #d4af37); /* mismo estilo botones productos */
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(212,175,55,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.joyeria .producto .btn-cotizar:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212,175,55,0.6);
}




/* FLECHAS CARRUSEL ROSA LLAMATIVO */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ff4fa3; /* rosa fuerte */
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background-size: 60% 60%;
}

/* Fondo semitransparente para que destaquen más */
.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}

/* Hover más llamativo */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #ff1f8f;
}




.mision-vision h3 {
  font-family: 'Playfair Display', serif;
  color: #7a3e48;
  margin-bottom: 1rem;
}

.mision-vision p {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 0.95rem;
}

.icon-luxe {
  font-size: 3rem;
  color: #d4af37;
}







/* MAPA ELEGANTE RECTANGULAR */
.mapa-elegante {
  width: 90%;
  max-width: 700px;
  height: 350px;
  border-radius: 20px;       /* bordes suaves y elegantes */
  overflow: hidden;
  border: 3px solid #d4af37; /* dorado premium */
  box-shadow: 0 8px 25px rgba(180,138,90,0.25); /* sombra suave */
  transition: transform 0.3s, box-shadow 0.3s;
}

.mapa-elegante iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hover elegante */
.mapa-elegante:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(180,138,90,0.3);
}

/* TÍTULO UBICACIÓN CON ICONO */
.ubicacion-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2rem;
  color: #7a3e48;
  gap: 10px; /* espacio entre icono y texto */
}

/* ICONO DEL TÍTULO */
.ubicacion-titulo i {
  font-size: 2.2rem;
  color: #d4af37;
}

/* RESPONSIVO */
@media (max-width: 576px) {
  .mapa-elegante {
    height: 220px;
  }

  .ubicacion-titulo {
    font-size: 1.5rem;
  }

  .ubicacion-titulo i {
    font-size: 1.8rem;
  }
}





.products,
.joyeria,
.contact {
    background: #fcefed; /* mismo color suave crema-rosa */
    padding: 6rem 2rem;
}
