/* --- RESET GENERAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #fff; color: #333; }


.header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Esto empuja los elementos a las esquinas */
    padding: 0 80px; /* Más espacio a los lados */
    height: 90px;
    background: #5a0f2e; 
}

/* --- LOGO AL CENTRO O IZQUIERDA --- */
.logo img { 
    height: 320px; 
    width: auto;
    margin-top: 70px;
    filter: brightness(1.2); /* Que resalte más */
}

/* --- ELEMENTO CENTRAL (Para llenar el vacío del buscador) --- */
/* Puedes agregar un <div> en tu HTML con la clase "header-center" */
.header-center {
    font-family: 'Montserrat', sans-serif;
    color: #e5c07b; /* Dorado */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
}

/* --- EL SELLO DEL CATÁLOGO --- */
.catalogo-badge {
    text-decoration: none;
    display: block;
    padding: 10px 25px;
    border: 1px solid rgba(229, 192, 123, 0.4); /* Dorado sutil */
    position: relative;
    background: rgba(255, 255, 255, 0.03); /* Un toque de brillo */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Efecto de luz al pasar el mouse */
.catalogo-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 192, 123, 0.2), transparent);
    transition: 0.5s;
}

.catalogo-badge:hover::before {
    left: 100%;
}

.catalogo-badge:hover {
    border-color: #e5c07b;
    background: rgba(229, 192, 123, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.badge-text-top, .badge-text-bottom {
    font-size: 8px;
    letter-spacing: 3px;
    color: #e5c07b;
    text-transform: uppercase;
    font-weight: 400;
}

.badge-main {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 2px 0;
}

/* --- AJUSTE EXTRA PARA EL HEADER --- */
/* Para que el badge no se vea apretado */
.header-top {
    height: 110px; /* Le damos un poco más de aire */
}

/* --- BOTONES DE LA DERECHA --- */
.header-icons {
    display: flex;
    gap: 40px;
}

.icon-item-btn {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
    transition: 0.3s;
}

.icon-item-btn:hover {
    color: #e5c07b;
    opacity: 1;
}



/* --- ICONOS DE CABECERA PREMIUM --- */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-item-btn {
    background: transparent;
    border: 1px solid rgba(229, 192, 123, 0.3);
    color: #e5c07b;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-item-btn:hover {
    background: #e5c07b;
    color: #2b0716;
    box-shadow: 0 0 15px rgba(229, 192, 123, 0.4);
}

/* --- MENU --- */
.menu { display: flex; justify-content: center; gap: 40px; padding: 15px; background: #5a0f2e; }
.menu a { text-decoration: none; color: #F8F9FA; font-weight: 500; }

/* --- HERO --- */
.hero { position:relative; height:80vh; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.hero-video { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.45); z-index:-1; }
.hero-text { text-align:center; color:white; max-width:900px; }
.hero-title { font-family:'Playfair Display', serif; font-size:72px; font-weight:600; letter-spacing:2px; margin-bottom:15px; }
.hero-subtitle { font-family:'Poppins', sans-serif; font-size:20px; letter-spacing:6px; text-transform:uppercase; opacity:0.9; }

/* --- PERFUMES DESTACADOS --- */
.destacados { padding:80px; text-align:center; background:#fafafa; }
.destacados h2 { font-size:36px; margin-bottom:50px; color:#5a0f2e; font-family:'Playfair Display', serif; }
.perfume-grid { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; }
.perfume-card { background:white; width:250px; border-radius:15px; overflow:hidden; box-shadow:0 10px 25px rgba(0,0,0,0.1); transition:0.3s; }
.perfume-card img { width:100%; height:260px; object-fit:cover; }
.perfume-card h3 { margin-top:15px; font-size:20px; }
.perfume-card p { color:#8b1e3f; font-weight:600; margin:10px 0; }
.perfume-card button { margin-bottom:20px; padding:10px 25px; border:none; background:#5a0f2e; color:white; border-radius:25px; cursor:pointer; }

/* --- FOOTER --- */
.footer { background:#2b0716; color:white; padding-top:60px; }
.footer-container { max-width:1200px; margin:auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; padding:0 40px 60px; }
.footer-logo img { width:250px; }
.footer-links { display:flex; flex-direction:column; }
.footer-links h3 { margin-bottom:15px; }
.footer-links a { text-decoration:none; color:#ddd; margin-bottom:8px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); text-align:center; padding:20px; }

/* --- WHATSAPP --- */
.whatsapp-btn { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; z-index: 100; }


/* --- SLIDER DE MARCAS PROFESIONAL --- */
.slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.slider h3 { 
    margin-bottom: 40px; 
    color: #5a0f2e; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 18px;
}

.slide-track {
    display: flex;
    width: calc(250px * 14); /* Ajustado para el movimiento infinito */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 250px;       /* Ancho fijo para que todos ocupen lo mismo */
    height: 100px;      /* Alto fijo para alinear verticalmente */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0 20px;
}

.slide img {
    max-width: 100%;    /* La imagen nunca se saldrá de su caja de 250px */
    max-height: 100%;   /* La imagen nunca se saldrá de su caja de 100px */
    object-fit: contain; /* ESTO ES LO QUE HACE QUE TODOS SE VEAN IGUAL */
    filter: grayscale(100%);
    transition: 0.3s;
}

.slide img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Animación ajustada para el ancho de los slides */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1750px); } 
}

/* --- BARRA DE CONFIANZA PROFESIONAL --- */
/* --- BARRA DE CONFIANZA COMPACTA --- */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px; /* Reducimos el espacio entre ítems */
    padding: 50px 20px; /* Reducimos drásticamente el padding vertical (antes 100px) */
    background: #ffffff;
}

.trust-item {
    text-align: center;
    max-width: 180px; /* Tarjetas más angostas */
    padding: 15px; /* Menos padding interno */
    /* Mantenemos el borde sutil si te gusta, o lo quitamos para más limpieza */
    border: 1px solid #f0f0f0; 
    border-radius: 8px; /* Bordes más finos */
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px); /* Movimiento más sutil */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- ICONOS MÁS PEQUEÑOS --- */
.trust-item .icon {
    font-size: 24px; /* Iconos notablemente más pequeños (antes 30px+) */
    color: #000;
    margin-bottom: 15px; /* Menos espacio debajo del icono */
    display: inline-block;
}

/* --- TEXTOS REFINADOS Y MÁS COMPACTOS --- */
.trust-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 13px; /* Título más pequeño */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 6px; /* Menos espacio debajo del título */
}

.trust-item p {
    font-size: 11px; /* Descripción más pequeña */
    color: #666;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6; /* Interlineado más apretado */
}

/* --- AJUSTE RESPONSIVE --- */
@media (max-width: 768px) {
    .trust-bar {
        flex-wrap: wrap; /* Permitimos que se envuelvan si no caben */
        gap: 20px;
        padding: 40px 10px;
    }
    .trust-item {
        max-width: 45%; /* Dos por fila en móviles medianos */
    }
}
@media (max-width: 480px) {
    .trust-item {
        max-width: 100%; /* Uno por fila en móviles pequeños */
    }
}


.trust-item {
    text-align: center;
    max-width: 220px;
    padding: 20px;
    background: white; /* Esto crea la tarjeta */
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.trust-item:hover {
    transform: translateY(-10px); /* Efecto al pasar el mouse */
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Sombra elegante */
}

.divider {
    width: 60px;
    height: 3px;
    background: #5a0f2e;
    margin: -30px auto 50px auto; /* Ajusta el espacio con el título */
    border-radius: 2px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Color oficial de WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px; /
}

.whatsapp-float:hover {
    transform: scale(1.1); 
    background-color: #128c7e; 
}

/* Contenedor principal */
.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* El cuadro de texto (Globo) */
.whatsapp-message {
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
    white-space: nowrap;
    animation: fadeSide 1s ease-in-out; /* Animación de entrada */
}

/* La flechita del globo */
.whatsapp-message::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
}

/* El botón circular */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-float img { width: 32px; }

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

/* Animación para que el texto aparezca suavemente */
@keyframes fadeSide {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* MEJORA DE LAS CARDS DE PERFUMES */
.perfume-card {
    background: white;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-bottom: 20px;
    border: 1px solid #f9f9f9;
}

/* Efecto en la imagen al pasar el mouse sobre la card */
.perfume-card:hover img {
    transform: scale(1.1) translateY(-10px); /* Zoom y subida */
}

.perfume-card img {
    width: 100%;
    height: 300px;
    object-fit: contain; /* Para que no se corte el perfume */
    padding: 20px;
    transition: 0.5s;
}

/* Efecto al presionar o interactuar con el botón */
.perfume-card button {
    margin-top: 15px;
    padding: 12px 30px;
    border: none;
    background: #5a0f2e;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.perfume-card button:hover {
    background: #8b1e3f;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(90, 15, 46, 0.3);
}

.perfume-card button:active {
    transform: scale(0.95); /* Se hunde un poco al hacer clic */
}

.perfume-grid {
    display: grid;
    /* Crea 3 columnas iguales */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.perfume-card {
    width: 100%; /* Ahora la tarjeta se adapta al tamaño de la columna del grid */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f9f9f9;
    padding-bottom: 25px;
}

/* Ajuste para que en tablets se vean 2 y en celulares 1 */
@media (max-width: 992px) {
    .perfume-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .perfume-grid { grid-template-columns: repeat(1, 1fr); }
}

/* Contenedor de iconos */
.header-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Estilo para los botones de la esquina */
.icon-item-btn {
    background: transparent;
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.icon-item-btn:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* El icono de carrito (puedes usar un emoji o imagen) */
.cart-count {
    background: #e5c07b; /* Un dorado suave para resaltar */
    color: #5a0f2e;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: -5px;
}

/* ==========================================
   RESPONSIVE PROFESIONAL - CELULARES
========================================== */

@media screen and (max-width:768px){

body{
    overflow-x:hidden;
}

/* ================= HEADER ================= */

.header{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    height:auto;
    gap:10px;
}

.logo img{
    height:90px;
    margin-top:0;
}

.header-center{
    flex:1;
    text-align:center;
    font-size:9px;
    letter-spacing:2px;
    padding:0 8px;
}

.catalogo-badge{
    padding:8px 12px;
}

.badge-main{
    font-size:11px;
}

.badge-text-top,
.badge-text-bottom{
    font-size:6px;
    letter-spacing:1px;
}

.menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    padding:12px;
}

.menu a{
    font-size:14px;
}

/* HERO */

.hero{
    height:60vh;
}

.hero-title{
    font-size:42px;
}

.hero-subtitle{
    font-size:14px;
    letter-spacing:2px;
    padding:0 20px;
}

/* DESTACADOS */

.destacados{
    padding:50px 20px;
}

.destacados h2{
    font-size:30px;
}

/* PERFUMES */

.perfume-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:10px;
}

.perfume-card{
    width:100%;
}

.perfume-card img{
    height:180px;
    padding:10px;
    object-fit:contain;
}

.perfume-card h3{
    font-size:15px;
    padding:0 8px;
}

.perfume-card p{
    font-size:15px;
}

.perfume-card a{
    font-size:13px !important;
    padding:8px 15px !important;
}

/* SLIDER */

.slide{
    width:170px;
    height:80px;
}

.slide-track{
    animation-duration:30s;
}

/* FOOTER */

.footer-container{
    flex-direction:column;
    text-align:center;
}

.footer-logo img{
    width:180px;
}

    /* ---------- BARRA DE CONFIANZA ---------- */

@media (max-width:768px){

.trust-bar{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.trust-item{
    max-width:100%;
    padding:12px 8px;
}

.trust-item .icon{
    font-size:20px;
}

.trust-item h3{
    font-size:10px;
    letter-spacing:1px;
}

.trust-item p{
    font-size:9px;
    line-height:1.3;
}

}

.footer-links{
    align-items:center;
}

/* WHATSAPP */

.whatsapp-container{
    right:15px;
    bottom:15px;
}

.whatsapp-message{
    display:none;
}

.whatsapp-float{
    width:55px;
    height:55px;
}

.whatsapp-float img{
    width:28px;
}

}
/* ===== FOOTER RESPONSIVE - 3 COLUMNAS ===== */

@media screen and (max-width:768px){

    .footer-container{
        display:grid !important;
        grid-template-columns:repeat(3,1fr);
        gap:15px;
        align-items:flex-start;
        text-align:left;
        padding:20px 15px;
    }

    .footer-logo{
        display:none;
    }

    .footer-links,
    .footer-contact{
        width:100%;
    }

    .footer-links h3,
    .footer-contact h4{
        font-size:20px;
        margin-bottom:12px;
    }

    .footer-links a,
    .footer-links summary,
    .footer-contact span,
    .footer-contact a{
        font-size:13px;
    }

    .contact-item{
        margin-bottom:10px;
    }

    .icon-box{
        width:30px;
        height:30px;
        margin-right:8px;
    }

    .footer-bottom{
        text-align:center;
        font-size:12px;
    }

}
/* Evita el desplazamiento horizontal */
html,
body{
    width:100%;
    overflow-x:hidden;
}
*{
    max-width:100%;
}

