


.icono-perfume{
	text-align:center;
    font-size:40px;
    color:#c9a227;
    margin-bottom:15px;
}

.titulo-catalogo{
    font-family:'Playfair Display',serif;
    text-align:center;
    font-size:3rem;
    margin-top:30px;
}

.subtitulo{
    text-align:center;
    color:#777;
    margin-bottom:40px;
}


.body{
     background: linear-gradient(to bottom,#f8f8f8,#ffffff);
     font-family: 'Segoe UI', sans-serif;
	 min-height: 100vh;
	 display: flex;
	 flex-direction: column;
 }


.producto-img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:12px 12px 0 0;
    transition:0.5s;
}

.card:hover .producto-img{
    transform:scale(1.08);
}

 	
.btn-success{
    width: 100%;
    border-radius: 25px;
    font-weight: 600;
}


/* Título */
.titulo-catalogo{
    text-align:center;
    margin:40px 0;
    font-size:3rem;
    font-weight:700;
    letter-spacing:4px;
    color:#222;
}

.titulo-catalogo::after{
    content:'';
    display:block;
    width:120px;
    height:3px;
    background:#c9a227;
    margin:15px auto;
}

/* Tarjetas */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Imagen */
.producto-img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}


/* Nombre */
.card-text{
    font-size:1.1rem;
    font-weight:600;
    color:#222;
    text-align:center;
    margin-bottom:10px;
}

/* Marca */
.marca{
    text-align:center;
    color:#888;
    font-size:.9rem;
    margin-bottom:10px;
}

/* Precio */
.precio{
	font-size:1.6rem;
	    font-weight:700;
	    color:#c9a227;
	    text-align:center;
	    margin-top:10px;
}

/* Estrellas */
.estrellas{
	text-align:center;
	    color:#c9a227;
	    font-size:18px;
	    margin-bottom:10px;
}

.btn-perfume{
    width:100%;
    border:none !important;
    border-radius:30px;
    padding:12px;
    font-weight:600;
    color:#c9a227 !important; /* dorado */
    background:#111 !important;
    transition:.3s;
}

.btn-perfume:hover{
    background:#000 !important;
    color:#e0c15a !important;
    transform:scale(1.03);
}

/* Etiqueta */
.badge-premium{
    position:absolute;
    top:12px;
    left:12px;
    background:#c9a227;
    color:white;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

/* Corazón */
.favorito{
    position:absolute;
    top:12px;
    right:12px;
    width:40px;
    height:40px;
    background:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    cursor:pointer;
}

.imagen-container{
    position:relative;
    overflow:hidden;
}


.precio{
    font-size:1.6rem;
    font-weight:700;
    color:#c9a227;
    text-align:center;
    margin-top:10px;
}





.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


 
.hero {
    height: 20vh; /* 👈 toda la pantalla */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px 15px;
    transition: 0.3s;
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
    color: white;
}
.oferta-titulo{
    color:#d4af37;
    text-shadow:
        0 0 10px rgba(212,175,55,.8),
        0 0 20px rgba(212,175,55,.6);
    animation: brillo 2s infinite;
}

@keyframes brillo{
    0%{
        opacity:1;
    }
    50%{
        opacity:.7;
    }
    100%{
        opacity:1;
    }
}
.btn-whatsapp{
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}











