
:root {
    --primary-color: #232222; /* Gris oscuro para el color primario */
    --secondary-color: rgb(12, 21, 39); /* Azul oscuro para el color secundario */
    --accent-color: #b8a07d; /* Dorado suave como acento */
    --light-color: #fcf9f9; /* Blanco suave */
    --dark-color: #000000; /* Negro */
    --gray-color: #0C1527; /* Gris oscuro */
    --light-gray: #ffffff; /* Blanco */
    --font-main: 'Montserrat', sans-serif; /* Fuente principal */
    --font-heading: 'Playfair Display', serif; /* Fuente para encabezados */
    --transition: all 0.3s ease; /* Transición suave */
    --shadow: 0 5px 15px rgb(254, 251, 251); /* Sombra para elementos */
    --shadow-hover: 0 8px 25px rgb(251, 248, 248); /* Sombra de hover */
    --border-radius: 8px; /* Bordes redondeados */
    --section-padding: 80px 0; /* Espaciado de secciones */
}

/* =============================
   RESET GENERAL
   ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color); /* Aplica el color primario gris oscuro al texto */
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color); /* Fondo blanco suave */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================
   UTILIDADES GLOBALES
   ============================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================
   BOTONES
   ============================= */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color); /* Usa el color secundario (azul oscuro) para el botón primario */
    color: var(--light-color); /* Texto blanco */
}

.btn-primary:hover {
    background-color: #030bf5; /* Cambia a azul claro cuando se pasa el ratón */
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover); /* Sombra suave de hover */
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-color); /* Blanco para el texto */
    border: 2px solid var(--light-color); /* Borde blanco */
}

.btn-secondary:hover {
    background-color: var(--light-color); /* Fondo blanco cuando se pasa el ratón */
    transform: translateY(-3px);
    color: var(--primary-color); /* Cambia el texto a gris oscuro */
    box-shadow: var(--shadow-hover); /* Sombra suave de hover */
}

/* =============================
   TÍTULOS DE SECCIÓN
   ============================= */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================
   RESPONSIVE DESIGN COMPLETO
   ============================= */

/* 📲 Móviles normales (361px – 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .btn {
        font-size: 0.85rem;
        width: 100%;
        padding: 12px 20px;
        text-align: center;
    }

    .container {
        padding: 0 12px;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* 📱 Celulares grandes y tablets pequeñas (481px – 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .section-title {
        font-size: 2.2rem;
    }

    .btn {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* 💻 Laptops medianos (768px – 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .btn {
        padding: 10px 24px;
    }
}

/* 🖥️ Escritorios (992px – 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
    .section-title {
        font-size: 2.4rem;
    }

    .btn {
        font-size: 0.95rem;
    }
}

/* 🖥️🧠 Pantallas extra grandes (1400px en adelante) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 1rem;
    }
}

/* 💡 Protección total contra desbordes */
body, html {
    width: 100%;
    overflow-x: hidden;
}

.container, .section-header, .section-title, .section-subtitle, .btn {
    max-width: 100%;
}








/* CODIGO CSS HEADER */
.header {
    background-color: #f5f5f5; /* Beige claro para un diseño elegante */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #eaeaea; /* Cambio a gris suave cuando se hace scroll */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 80px; /* Aumento del tamaño del logo */
    width: auto;
}

/* Frase bajo el logo */
.marca-clara {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.3px;
}

.marca-clara strong {
    color: #f8b303; /* Dorado suave para resaltar la marca */
    font-weight: 600;
}

/* Navbar refinado */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 12px;
}

.nav-link {
    color: #333; /* Color oscuro para los textos */
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fda900; /* Dorado elegante para resaltar */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fcb501;
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
}

/* Search Box - Desktop only */
.search-box {
    position: relative;
    margin-right: 20px;
    display: none;
    align-items: center;
}

@media (min-width: 992px) {
    .search-box {
        display: flex;
    }
}

.search-input {
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    width: 180px;
    transition: width 0.3s;
    background-color: #fff;
    color: #333;
}

.search-input:focus {
    border-color: #080808;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    color: #f0b00d;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Iconos usuario y carrito */
.user-icon, .cart-icon {
    color: #333;
    font-size: 18px;
    margin-left: 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.user-icon:hover,
.cart-icon:hover {
    color: #edab05; /* Dorado suave en hover */
}

/* Carrito */
.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #C0392B;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
}

.cart-count[data-items] {
    display: flex;
}

@media (max-width: 768px) {
    .cart-count {
        top: -8px;
        right: -8px;
        width: 16px;
        height: 16px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #080808;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .search-box {
        margin-right: 10px;
    }
    
    .search-input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Ajuste para logo en pantallas pequeñas */
    }
    
    .search-box {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .search-box.active {
        display: flex;
    }
    
    .search-input {
        width: 100%;
    }
    
    .header-icons {
        margin-left: auto;
    }
    
    .user-icon, .cart-icon {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 50px; /* Ajuste del tamaño del logo */
    }
    
    .cart-count {
        width: 15px;
        height: 15px;
        font-size: 8px;
    }
}

/* Para pantallas extra grandes (más de 1400px) */
@media (min-width: 1400px) {
    .header-container {
        max-width: 1400px;
    }

    .nav-link {
        font-size: 18px;
    }

    .search-input {
        width: 220px;
    }
}

/* Para pantallas intermedias (entre 481px y 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .nav-link {
        font-size: 15px;
    }

    .search-input {
        width: 140px;
    }

    .header-icons {
        gap: 12px;
    }
}

/* Para pantallas muy pequeñas (menos de 360px) */
@media (max-width: 360px) {
    .nav-link {
        font-size: 14px;
    }

    .search-input {
        font-size: 12px;
        padding: 6px 10px;
    }

    .user-icon,
    .cart-icon {
        font-size: 16px;
    }

    .hamburger .bar {
        width: 20px;
        height: 2px;
    }
}
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Usando la fuente moderna y limpia Montserrat */
}

body {
    background-color: #fff; /* Fondo blanco */
    color: #333; /* Texto gris oscuro */
}

/* Header */
.header {
    background-color: #f5f5f5; /* Beige claro para un diseño elegante */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #eaeaea; /* Cambio a gris suave cuando se hace scroll */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 80px; /* Aumento del tamaño del logo */
    width: auto;
}

/* Frase bajo el logo */
.marca-clara {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.3px;
}

.marca-clara strong {
    color: #f8b303; /* Dorado suave para resaltar la marca */
    font-weight: 600;
}

/* Navbar refinado */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 12px;
}

.nav-link {
    color: #333; /* Color oscuro para los textos */
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fda900; /* Dorado elegante para resaltar */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fcb501;
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
}

/* Search Box - Desktop only */
.search-box {
    position: relative;
    margin-right: 20px;
    display: none;
    align-items: center;
}

@media (min-width: 992px) {
    .search-box {
        display: flex;
    }
}

.search-input {
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    width: 180px;
    transition: width 0.3s;
    background-color: #fff;
    color: #333;
}

.search-input:focus {
    border-color: #080808;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    color: #f0b00d;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Iconos usuario y carrito */
.user-icon, .cart-icon {
    color: #333;
    font-size: 18px;
    margin-left: 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.user-icon:hover,
.cart-icon:hover {
    color: #edab05; /* Dorado suave en hover */
}

/* Carrito */
.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #C0392B;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
}

.cart-count[data-items] {
    display: flex;
}

@media (max-width: 768px) {
    .cart-count {
        top: -8px;
        right: -8px;
        width: 16px;
        height: 16px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #080808;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .search-box {
        margin-right: 10px;
    }
    
    .search-input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Ajuste para logo en pantallas pequeñas */
    }
    
    .search-box {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .search-box.active {
        display: flex;
    }
    
    .search-input {
        width: 100%;
    }
    
    .header-icons {
        margin-left: auto;
    }
    
    .user-icon, .cart-icon {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 50px; /* Ajuste del tamaño del logo */
    }
    
    .cart-count {
        width: 15px;
        height: 15px;
        font-size: 8px;
    }
}

/* Para pantallas extra grandes (más de 1400px) */
@media (min-width: 1400px) {
    .header-container {
        max-width: 1400px;
    }

    .nav-link {
        font-size: 18px;
    }

    .search-input {
        width: 220px;
    }
}

/* Para pantallas intermedias (entre 481px y 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .nav-link {
        font-size: 15px;
    }

    .search-input {
        width: 140px;
    }

    .header-icons {
        gap: 12px;
    }
}

/* Para pantallas muy pequeñas (menos de 360px) */
@media (max-width: 360px) {
    .nav-link {
        font-size: 14px;
    }

    .search-input {
        font-size: 12px;
        padding: 6px 10px;
    }

    .user-icon,
    .cart-icon {
        font-size: 16px;
    }

    .hamburger .bar {
        width: 20px;
        height: 2px;
    }
}












/* HERO SECTION: DOMINATE */
.hero-dominate{
  position: relative;
  min-height: 100vh;          /* NO se achica el video */
  min-height: 100svh;
  width: 100%;
  background: #000;
  overflow: hidden;
  isolation: isolate;

  /* Centrado del bloque */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Deja espacio bajo el header fijo (alto del header) */
  padding-top: 96px;          /* ← ajusta si tu header mide otra cosa */
  box-sizing: border-box;
}

/* Video de fondo, siempre cubre */
.hero-dominate-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-dominate-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
  pointer-events: none;
}

/* Contenido centrado y “re-centrado” visualmente */
.hero-dominate-content {
position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* centro exacto PC */
  margin: 0;
  max-width: 1100px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* Chip de marca */
.brand-chip{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  font-size: 13px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
}
.brand{ font-weight:700; }
.chip-divider{ width:1px; height:14px; background: rgba(255,255,255,.5); }
.chip-text{ opacity:.85; }

/* Título + subtítulo */
.hero-title{
  margin:0;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.01em;
}
.hero-sub{
  margin:0;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
  opacity:.9;
}

/* CTA */
.hero-cta{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 28px; border-radius:999px;
  background:#fff; color:#111; text-decoration:none;
  font-weight:700; font-size:14px; letter-spacing:.08em; text-transform:uppercase;
  box-shadow:0 8px 28px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.hero-cta:hover{ transform:translateY(-2px); box-shadow:0 12px 36px rgba(0,0,0,.22); opacity:.95; }
.cta-arrow{ display:inline-block; }

/* Indicador de scroll */
.hero-scroll{
  position:absolute; left:50%; bottom:20px; transform:translateX(-50%);
  z-index:2; background:transparent; border:1px solid rgba(255,255,255,.4);
  color:#fff; font-size:10px; letter-spacing:.3em; padding:8px 16px; border-radius:999px;
  opacity:.85; cursor:pointer; text-shadow:0 1px 8px rgba(0,0,0,.3);
  transition: opacity .25s ease, transform .25s ease;
}
.hero-scroll:hover{ opacity:1; transform:translateX(-50%) translateY(-2px); }

/* Móvil pequeño: ajustes finos */
@media (max-width: 480px){
  .hero-dominate-content{ width: 92vw; gap: 14px; transform: translateY(-40px); } /* 40 = mitad de ~80px */
  .hero-title{ font-size: clamp(28px, 8vw, 40px); }
  .hero-cta{ padding:10px 22px; font-size:13px; }
}

/* En móviles: baja un poco más y evita el corte */
@media (max-width: 768px){
  .hero-dominate-content{
    top: 55%;                       /* empuja el bloque más abajo */
    transform: translateX(-50%);    /* solo centrado horizontal */
  }
}

/* Utilidades de encuadre del video si necesitas mover el sujeto */
.hero--focus-top .hero-dominate-video{ object-position: center top; }
.hero--focus-bottom .hero-dominate-video{ object-position: center bottom; }













/* CODIGO SECCION CATEGORIAS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Usando fuente moderna y limpia */
}

body {
    background-color: #fff; /* Fondo blanco */
    color: #333; /* Texto oscuro */
}

/* Categories Section */
.categories {
    padding: 40px;
    background-color: #f5f5f5; /* Beige suave */
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    
    /* Control de Altura Dinámica */
    grid-auto-rows: minmax(200px, auto);
    align-items: stretch; /* Estira los elementos para igualar la altura */

    /* Optimización para Imágenes y Contenido */
    & > * {
        height: 100%; /* Ocupa toda la altura disponible */
        min-height: 200px; /* Altura mínima garantizada */
        overflow: hidden; /* Contenido excedente */
    }

    /* Variantes de Altura */
    &[data-layout="square"] > * {
        aspect-ratio: 1/1; /* Items cuadrados */
    }

    &[data-layout="vertical"] > * {
        aspect-ratio: 3/4; /* Items verticales */
    }

    /* Ajustes Responsivos */
    @media (max-width: 768px) {
        grid-auto-rows: minmax(500px, auto);
        gap: clamp(15px, 2.5vw, 80px);
    }

    @media (max-width: 1000px) {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

/* Category Cards */
.category-card {
    background-color: #ffffff;
    border-radius: 15px; /* Bordes redondeados */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.category-card:hover {
    transform: translateY(-10px); /* Efecto hover sutil */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Sombra más intensa en hover */
}

/* Category Image */
.category-img {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.05); /* Efecto de zoom suave */
}

/* Overlay for category images */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

/* Category Title */
.category-card h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem; /* Tamaño de fuente más grande */
    font-weight: 600;
    color: #333; /* Texto oscuro para el título */
}

/* Category Link */
.category-link {
    color: #8c8a8a; /* Gris suave */
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link:hover {
    color: #f5d670; /* Dorado suave */
    gap: 10px; /* Espacio entre el texto y la flecha */
}

.category-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsive Design: Mobile */
@media (max-width: 768px) {
    .categories {
        padding: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }

    .category-card h3 {
        font-size: 1.3rem; /* Ajuste de tamaño de fuente en móviles */
    }

    .category-link {
        font-size: 0.8rem; /* Fuente más pequeña en móviles */
    }
}

@media (max-width: 480px) {
    .category-img {
        height: 300px; /* Ajuste de altura en pantallas pequeñas */
    }
}











/*CODIGO CSS DE PRODUCTOS*/
.featured-products {
    padding: 4rem 2rem;
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
}

/* ================================
   GRID de Tarjetas (Efecto Galería Premium)
   ================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 2rem;
    grid-auto-rows: minmax(500px, auto);
}

/* ================================
   Tarjeta de Producto (Estilo Luxury)
   ================================ */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    background-color: #fff;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ================================
   Imagen del Producto (Efecto Zoom Elegante)
   ================================ */
.product-img {
    flex: 0 0 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s ease;
    padding: 20px;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* ================================
   Información del Producto (Estilo Premium)
   ================================ */
.product-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    position: relative;
    z-index: 2;
}

/* TÍTULO HERMOSO Y ÚNICO */
.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2a2a2a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

/* PRECIO QUE DESTACA */
.product-price-container {
    margin: 0.8rem 0;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff4757;
    display: inline-block;
    position: relative;
}

.current-price::before {
    content: '';
    font-size: 0.9em;
    margin-right: 2px;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* BOTÓN CAUTIVANTE */
.add-to-cart-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(110, 142, 251, 0.3);
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 142, 251, 0.4);
    background: linear-gradient(135deg, #a777e3, #6e8efb);
}

.add-to-cart-btn:active {
    transform: scale(0.98);
}

.add-to-cart-btn::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover::after {
    opacity: 1;
    right: 1rem;
}

/* ================================
   Badges (Estilo Moderno)
   ================================ */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ff8a00, #ff5e00);
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}

.product-badge.hot {
    background: linear-gradient(45deg, #ff5a5f, #ff1a1f);
}

.product-badge.sale {
    background: linear-gradient(45deg, #00c9ff, #0095ff);
}

/* ================================
   Botones flotantes (Estilo Premium)
   ================================ */
.product-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 3;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-view,
.add-wishlist {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.quick-view:hover,
.add-wishlist:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ================================
   Rating (Estilo Mejorado)
   ================================ */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.product-rating span {
    color: #777;
    font-size: 0.9rem;
    margin-left: 5px;
}

/* ================================
   RESPONSIVE (Optimizado)
   ================================ */
@media (min-width: 1600px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .current-price {
        font-size: 1.7rem;
    }
}

@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .featured-products {
        padding: 3rem 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 0 1rem;
    }
    
    .product-img {
        flex: 0 0 60%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn {
        padding: 10px 0;
    }
}










/*CODIGO CSS DE OFERTAS ESPECIALES*/
.special-offer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff2e63, #ff5e3a);
  color: white;
  padding: 4rem 2rem;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
  transition: all 0.5s ease; /* Nueva propiedad */
}

/* Estado inactivo del contenedor */
.special-offer.inactive-cycle {
  background: linear-gradient(135deg, #6c757d, #495057);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.special-offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 1px, transparent 1px),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  animation: particleMove 20s linear infinite;
  transition: opacity 0.5s ease; /* Nueva propiedad */
}

.special-offer.inactive-cycle::before {
  opacity: 0.3;
}

.offer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.offer-content {
  flex: 1;
  animation: fadeInLeft 0.8s ease forwards;
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  animation: pulse 2s infinite alternate;
  transition: all 0.4s ease; /* Nueva propiedad */
}

/* Estado inactivo del badge */
.offer-badge.inactive {
  background: rgba(108, 117, 125, 0.7);
  animation: none;
}

@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.offer-title {
  animation: soft-float 6s ease-in-out infinite;
}

/* Estado inactivo del título */
.special-offer.inactive-cycle .offer-title {
  animation: none;
  opacity: 0.9;
}

.offer-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1.2s 0.3s forwards;
}

.countdown-highlight {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.time-btn {
  background: linear-gradient(135deg, #ff2a2a, #ff6b6b);
  border: none;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  min-width: 90px;
  cursor: default;
  box-shadow: 0 8px 20px rgba(255, 42, 42, 0.4);
  transition: all 0.5s ease; /* Nueva propiedad */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Estado inactivo del botón de tiempo */
.time-btn.inactive {
  background: linear-gradient(135deg, #6c757d, #495057);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.98);
}

.time-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.time-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.time-number.animate {
  animation: flipIn 0.5s ease;
}

.btn-shop-now {
  display: inline-block;
  background: white;
  color: #ff2e63;
  padding: 1.1rem 2.4rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Estado inactivo del botón */
.btn-shop-now.inactive {
  background: #e9ecef;
  color: #6c757d;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: none !important;
}

.btn-shop-now:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-shop-now:hover::after {
  left: 100%;
}

.offer-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInRight 0.8s 0.2s forwards;
}

.offer-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s ease;
}

.offer-image:hover img {
  transform: scale(1.05);
}

/* === ANIMACIONES CLAVE === */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(255,255,255,0.1); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,255,255,0.3); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,255,255,0.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes flipIn {
  0% { transform: rotateX(-90deg); opacity: 0; }
  50% { transform: rotateX(20deg); opacity: 1; }
  100% { transform: rotateX(0); }
}

@keyframes particleMove {
  from { background-position: 0 0; }
  to { background-position: 50px 50px; }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .offer-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .offer-image {
    order: -1;
    margin-bottom: 2rem;
  }
}













/*CODIGO CSS DE TESTIMONIO*/
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-heading);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray-color);
}











/* CODIGO CSS Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5b5d5c 100%);
    color: white;
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content {
    flex: 1;
    padding-right: 50px;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-text {
    opacity: 0.8;
    max-width: 400px;
}

.newsletter-form {
    flex: 1;
    display: flex;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.btn-newsletter {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background-color: white;
}

.mensaje-exito {
  color: green;
  font-weight: bold;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

.btn-newsletter:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}








/*CODIGO FOOTER */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about-text {
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.7;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods img {
    height: 25px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}



/* Media Queries para Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        padding-bottom: 50px;
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-media {
        height: 400px;
    }
    
    .offer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .offer-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .offer-timer {
        justify-content: center;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .newsletter-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-icons {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-timer {
        gap: 10px;
    }
    
    .timer-number {
        font-size: 1.5rem;
        min-width: 60px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
    }
}










/*ESTILOS CSS PARA CONTACTO */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/contact-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 100px 20px 80px; /* Ajuste para pantallas grandes */
  padding-top: 150px; /* Espacio superior para pantallas grandes */
}

/* Ajuste específico para pantallas pequeñas */
@media (max-width: 468px) {
  .contact-hero {
    /* Usamos un margin-top en lugar de padding-top para dispositivos móviles */
    margin-top: 80px; /* Aumentamos el espacio encima del hero para evitar que se tape el título */
    padding-top: 0; /* Eliminar el padding-top para evitar un exceso de espacio */
  }
}


.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.contact-hero-breadcrumb {
    font-size: 0.9rem;
}

.contact-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-hero-breadcrumb a:hover {
    color: #d4af73;
}

.contact-hero-breadcrumb span {
    color: #d4af73;
}

/* Sección de contacto principal */
.contact-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 0 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #d4af73;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    color: #d4af73;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #b38f5b;
}

.contact-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Formulario de contacto */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 15px;
}

.form-group.double {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #d4af73;
    outline: none;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
}

.btn-submit {
    background-color: #d4af73;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: #b38f5b;
}

/* Mapa de ubicación */
.contact-map {
    padding: 60px 0;
    background-color: #fff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.map-iframe {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Preguntas frecuentes */
.contact-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Cuando el acordeón está activo, hacemos que la respuesta sea visible */
.faq-item.active .faq-answer {
    max-height: 500px; /* Ajusta este valor según el tamaño de tus respuestas */
    opacity: 1;
    padding-top: 20px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: #666;
    margin-bottom: 20px;
}

.btn-faq {
    background-color: #333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-faq:hover {
    background-color: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .form-group.double {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .map-iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 25px;
    }

    .map-iframe {
        height: 250px;
    }
}










/* Estilos para la página Descubrir */
.discover-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.discover-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.discover-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discover-hero .hero-title span {
    color: #d4af73;
}

.discover-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filter-btn:hover, .filter-btn.active {
    background: #fff;
    color: #000;
}

.all-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.all-products .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
}

.sort-options select:focus {
    outline: none;
    border-color: #d4af73;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn, .next-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover, .next-btn:hover {
    background: #f0f0f0;
}

.page-btn.active {
    background: #d4af73;
    color: #fff;
    border-color: #d4af73;
}

.page-dots {
    padding: 0 10px;
}

.next-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .discover-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .all-products .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .discover-hero {
        padding: 100px 0 60px;
    }
    
    .discover-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .discover-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .discover-hero {
        padding: 80px 0 40px;
    }
    
    .discover-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}







/* Estilos generales para la sección de productos */
.featured-products {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
}

/* Grid de productos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Tarjeta de producto */
.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Badges de producto */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #4CAF50;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-badge.hot {
  background: #F44336;
}

.product-badge.sale {
  background: #FF9800;
}

/* Imagen del producto */
.product-img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
  cursor: pointer; /* Mano al pasar el mouse */
}

.product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* Acciones del producto */
.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.add-wishlist {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-wishlist:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #F44336;
}

/* Información del producto */
.product-info {
  padding: 1.25rem;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

.old-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #FFC107;
}

.product-rating span {
  color: #666;
  font-size: 0.8rem;
  margin-left: 0.25rem;
}

/* Botón de añadir al carrito */
.add-to-cart {
  width: 100%;
  padding: 0.75rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart:hover {
  background: #555;
}

/* Modal del producto */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-modal.active {
  display: block;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.modal-content {
  display: flex;
  overflow: auto;
}

/* Galería del modal */
.modal-gallery {
  width: 50%;
  padding: 2rem;
  border-right: 1px solid #eee;
}

.main-image {
  width: 100%;
  height: 400px;
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-container {
  position: relative;
  width: 100%;
}

.thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  scrollbar-width: none; /* Firefox */
}

.thumbnails::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: border 0.2s ease;
}

.thumbnails img:hover,
.thumbnails img.active {
  border: 2px solid #333;
}

.thumbnail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.thumbnail-nav:hover {
  background: rgba(255, 255, 255, 0.95);
}

.prev-thumb {
  left: -15px;
}

.next-thumb {
  right: -15px;
}

/* Información del producto en modal */
.modal-product-info {
  width: 50%;
  padding: 2rem;
  overflow-y: auto;
}

.product-modal-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}

.product-modal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-rating {
  color: #FFC107;
}

.review-count {
  color: #666;
  font-size: 0.9rem;
}

.availability {
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}

.in-stock {
  background: #E8F5E9;
  color: #4CAF50;
}

.modal-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-pricing .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
}

.modal-pricing .old-price {
  font-size: 1.25rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: #FFEB3B;
  color: #333;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-modal-description {
  margin-bottom: 1.5rem;
}

.product-modal-description h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.product-modal-description p {
  color: #666;
  line-height: 1.6;
}

/* Opciones de color y talla */
.product-modal-colors,
.product-modal-sizes {
  margin-bottom: 1.5rem;
}

.product-modal-colors h3,
.product-modal-sizes h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.color-options,
.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.selected {
  border-color: #333;
  transform: scale(1.1);
}

.size-option {
  min-width: 40px;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option:hover {
  border-color: #999;
}

.size-option.selected {
  background: #333;
  color: white;
  border-color: #333;
}

.size-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Selector de cantidad */
.product-modal-quantity {
  margin-bottom: 1.5rem;
}

.product-modal-quantity h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.qty-minus,
.qty-plus {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-minus:hover,
.qty-plus:hover {
  background: #eee;
}

.qty-input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  -webkit-appearance: textfield; /* Chrome, Safari, Edge */
  -moz-appearance: textfield;    /* Firefox */
  appearance: textfield;         /* Estándar moderno */
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ====================== */
/* FICHA TÉCNICA MEJORADA */
/* ====================== */
.ficha-tecnica-modal {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding: 15px 0;
  margin-top: 25px;
  border-top: 1px solid #f0f0f0;
}

.ficha-item {
  display: flex;
  margin-bottom: 12px;
  line-height: 1.5;
}

.ficha-titulo {
  font-weight: 600;
  color: #555;
  min-width: 100px;
  display: inline-block;
}

.ficha-valor {
  color: #333;
  flex-grow: 1;
}

.medidas-titulo {
  margin: 25px 0 15px 0;
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.tabla-medidas {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}

.tabla-medidas th {
  background-color: #f8f8f8;
  color: #555;
  font-weight: 600;
  padding: 12px 15px;
  text-align: left;
}

.tabla-medidas td {
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.tabla-medidas tr:last-child td {
  border-bottom: none;
}

.tabla-medidas tr:hover {
  background-color: #fafafa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .modal-product-info {
    width: 100%;
    padding: 1rem;
  }
  
  .ficha-item {
    flex-direction: column;
    margin-bottom: 15px;
  }
  
  .ficha-titulo {
    margin-bottom: 5px;
    min-width: auto;
  }
  
  .tabla-medidas {
    font-size: 13px;
    min-width: 100%;
  }
  
  .tabla-medidas th,
  .tabla-medidas td {
    padding: 8px 10px;
  }
}

/* Acciones del modal */
.product-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.add-to-cart-btn,
.buy-now-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn {
  background: #333;
  color: white;
}

.add-to-cart-btn:hover {
  background: #555;
}

.buy-now-btn {
  background: #4CAF50;
  color: white;
}

.buy-now-btn:hover {
  background: #3d8b40;
}

.add-wishlist-btn {
  width: 50px;
  background: #f5f5f5;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-wishlist-btn:hover {
  background: #eee;
  color: #F44336;
}

/* Detalles técnicos */
.product-modal-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.details-list li:last-child {
  border-bottom: none;
}

.details-list li span:first-child {
  font-weight: 600;
  color: #333;
}

.details-list li span:last-child {
  color: #666;
}






/* Modal de pago directo */
.modal-pago-directo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-pago-directo.active {
  display: flex;
  opacity: 1;
}

.modal-pago-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.modal-pago-close,
.modal-pago-back {
  position: absolute;
  top: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.modal-pago-close {
  right: 15px;
}

.modal-pago-back {
  left: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.modal-pago-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.modal-pago-section {
  margin-bottom: 2rem;
}

.modal-pago-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.modal-pago-table {
  width: 100%;
  border-collapse: collapse;
}

.modal-pago-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.modal-pago-table td:first-child {
  width: 30%;
  color: #666;
}

.modal-pago-table td:last-child {
  font-weight: 600;
}

.modal-pago-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.qr-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 0.5rem;
}

.modal-pago-btns {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.btn-profesional {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-profesional.yape {
  background: #685AC0;
  color: white;
}

.btn-profesional.plin {
  background: #00BFA5;
  color: white;
}

.btn-profesional.pay {
  background: #4CAF50;
  color: white;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
}

.btn-profesional:hover {
  opacity: 0.9;
}

.modal-pago-note {
  text-align: center;
  color: #666;
  margin: 1rem 0;
}

.modal-pago-note a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
}

.resumen-total {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
}

.resumen-total p {
  margin: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}

#totalItems,
#totalAmount {
  font-weight: 600;
}






/* Mini carrito */
.mini-cart {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #333;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.mini-cart:hover {
  background: #555;
  transform: translateY(-3px);
}

.cart-icon {
  position: relative;
}

.cart-icon i {
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #4CAF50;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.cart-total {
  font-weight: 600;
}

/* Modal del Carrito */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-modal.active {
  display: block;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cart-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #333;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.cart-close:hover {
  color: #333;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.empty-cart {
  text-align: center;
  padding: 2rem 0;
  color: #666;
}

.empty-cart i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.empty-cart p {
  margin: 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.cart-item-variants {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.cart-item-variants span {
  display: block;
}

.cart-item-price {
  font-weight: 600;
  color: #333;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.cart-item-qty button {
  width: 25px;
  height: 25px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-qty input {
  width: 30px;
  height: 25px;
  border: none;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.cart-item-qty input::-webkit-outer-spin-button,
.cart-item-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #F44336;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
}

.cart-summary {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-weight: 600;
  font-size: 1.1rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #3d8b40;
}

.checkout-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
  .cart-container {
    width: 95%;
  }
  
  .cart-item {
    flex-direction: column;
  }
  
  .cart-item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }
  
  .modal-gallery,
  .modal-product-info {
    width: 100%;
  }
  
  .modal-gallery {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .main-image {
    height: 300px;
  }
  
  .modal-pago-qr-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-pago-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-modal-actions {
    flex-direction: column;
  }
  
  .add-to-cart-btn,
  .buy-now-btn {
    width: 100%;
  }
}
/* Modal QR */
.qr-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.qr-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
    text-align: center;
}

.qr-modal-content img {
    width: 100%;
    margin: 15px 0;
}

.close-qr-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close-qr-modal:hover {
    color: #000;
}









/* =====CODIGO CSS MUJERES ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images/damass.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #fff;
  padding-top: 140px
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* solo oscurece un poco para leer bien */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8),
               0 0 15px rgba(255, 255, 255, 0.6);
}


.hero-content button {
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-content button:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content button {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}








/*CODIGO CSS HOMBRES */
.hero-hombres {
  position: relative;
  height: 100vh;
  background-color: #dcdcdc; /* Gris suave como fondo neutro */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff; /* Texto blanco para contraste */
}

.hero-hombres .hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
  color: #2d2d2d; /* Gris oscuro para el texto */
}

.hero-hombres h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 5vw;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.hero-hombres p {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5vw;
  font-weight: 400;
  margin-bottom: 30px;
  color: #7d7d7d;
}

.hero-hombres button {
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5vw;
  font-weight: 600;
  color: #fff;
  background-color: #2c2c2c;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  animation: glow 1.5s infinite alternate;
}

.hero-hombres button:hover {
  background-color: #b8a07d;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(184, 160, 125, 0.8);
}

/* Animación para el efecto de brillo en el botón */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(184, 160, 125, 0.5), 0 0 20px rgba(184, 160, 125, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(184, 160, 125, 1), 0 0 40px rgba(184, 160, 125, 0.7);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 10px rgba(184, 160, 125, 0.5), 0 0 20px rgba(184, 160, 125, 0.5);
    transform: scale(1);
  }
}


/* Media Queries - Para tamaños de pantallas más pequeñas */
@media (max-width: 1024px) {
  .hero-hombres h1 {
    font-size: 6vw;
  }
  .hero-hombres p {
    font-size: 3vw;
  }
  .hero-hombres button {
    padding: 12px 24px;
    font-size: 2vw;
  }
}

@media (max-width: 768px) {
  .hero-hombres h1 {
    font-size: 7vw;
  }
  .hero-hombres p {
    font-size: 4.5vw;
  }
  .hero-hombres button {
    padding: 10px 20px;
    font-size: 2.5vw;
  }
}

@media (max-width: 480px) {
  .hero-hombres h1 {
    font-size: 8vw;
  }
  .hero-hombres p {
    font-size: 5vw;
  }
  .hero-hombres button {
    padding: 8px 18px;
    font-size: 3vw;
  }
}










/*CODIGO CSS NIÑOS */
.hero {
  position: relative;
  height: 100vh; /* Alto para ocupar toda la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #2d2d2d; /* Gris oscuro para el texto */
  background-color: #f5f5f5; /* Fondo por defecto gris suave */
  background-size: cover;
  background-position: center;
}

/* Overlay que oscurece el fondo */
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Oscurecimiento suave */
  z-index: 0;
}

.hero .hero-content {
  z-index: 1;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5vw; /* Ajuste responsivo */
  font-weight: 700;
  margin-bottom: 20px;
  color: #232222; /* Gris oscuro para el título */
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5vw;
  font-weight: 400;
  margin-bottom: 30px;
  color: #b8a07d; /* Dorado suave para el subtítulo */
}

.hero .hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #0c1527; /* Gris oscuro para los botones */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #b8a07d; /* Dorado suave al pasar el ratón */
  transform: scale(1.05);
}

/* Indicador de scroll */
.hero .hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
}

.hero .scroll-arrow {
  margin-top: 10px;
  width: 30px;
  height: 30px;
  border: solid 2px #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 1.5s infinite alternate; /* Efecto de rebote en la flecha */
}

/* Animación para la flecha */
@keyframes bounce {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

/* Media Queries para tamaños más pequeños */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 7vw; /* Ajuste aún más pequeño para pantallas medianas */
  }
  .hero p {
    font-size: 3.5vw;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 8vw; /* Ajuste a pantallas más pequeñas */
  }
  .hero p {
    font-size: 4vw;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 10vw; /* Ajuste aún más pequeño para pantallas móviles */
  }
  .hero p {
    font-size: 5vw;
  }
  .cta-button {
    padding: 8px 18px;
    font-size: 1.2rem;
  }
}













/* CODIGO CSS COLECCIONES */
.hero {
  position: relative;
  height: 100vh; /* Alto para ocupar toda la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #2d2d2d; /* Gris oscuro para el texto */
  background-color: #f5f5f5; /* Fondo por defecto gris suave */
  background-size: cover;
  background-position: center;
}

/* Overlay que oscurece el fondo */
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Oscurecimiento suave */
  z-index: 0;
}

.hero .hero-content {
  z-index: 1;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5vw; /* Ajuste responsivo */
  font-weight: 700;
  margin-bottom: 20px;
  color: #232222; /* Gris oscuro para el título */
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5vw;
  font-weight: 400;
  margin-bottom: 30px;
  color: #b8a07d; /* Dorado suave para el subtítulo */
}

.hero .hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #0c1527; /* Gris oscuro para los botones */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #b8a07d; /* Dorado suave al pasar el ratón */
  transform: scale(1.05);
}

.video-btn {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.video-btn:hover {
  background-color: #fff;
  color: #2d2d2d; /* Gris oscuro para el texto */
  transform: scale(1.05);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-down:hover {
  transform: translateY(5px);
}

.scroll-down i {
  font-size: 1.8rem;
  animation: bounce 1.5s infinite alternate; /* Efecto de rebote en la flecha */
}

/* Animación para la flecha */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

/* Media Queries para tamaños más pequeños */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 7vw; /* Ajuste aún más pequeño para pantallas medianas */
  }
  .hero p {
    font-size: 3.5vw;
  }
  .cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 8vw; /* Ajuste a pantallas más pequeñas */
  }
  .hero p {
    font-size: 4vw;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 10vw; /* Ajuste aún más pequeño para pantallas móviles */
  }
  .hero p {
    font-size: 5vw;
  }
  .cta-btn {
    padding: 8px 18px;
    font-size: 1.2rem;
  }
}





/* CODIGO CSS ACCESORIOS */
.hero-categorias {
  position: relative;
  height: 100vh; /* Ocupa toda la altura de la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff; /* Texto blanco para resaltar sobre el fondo */
  background-color: #f5f5f5; /* Fondo gris suave por defecto */
  background-size: cover;
  background-position: center;
  padding: 0 20px; /* Añadido un poco de padding para el contenido */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Oscurecimiento suave para resaltar los textos */
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.titulo-principal {
  font-family: 'Playfair Display', serif;
  font-size: 5vw; /* Ajuste responsivo */
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff; /* Blanco para el título */
}

.botones-categorias {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Asegura que los botones se ajusten en pantallas pequeñas */
}

.cat-btn {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #0c1527; /* Gris oscuro para los botones */
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cat-btn:hover {
  background-color: #b8a07d; /* Dorado suave al pasar el ratón */
  transform: scale(1.05); /* Efecto de escala */
}

.cat-btn:active {
  transform: scale(0.95); /* Efecto al hacer clic */
}

/* Estilos para el lienzo (canvas) */
.diamond-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Para no interferir con la interacción de los botones */
}

/* Media Queries para tamaños más pequeños */
@media (max-width: 1024px) {
  .titulo-principal {
    font-size: 6vw; /* Ajuste aún más pequeño para pantallas medianas */
  }
  .cat-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .titulo-principal {
    font-size: 7vw; /* Ajuste a pantallas más pequeñas */
  }
  .cat-btn {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .titulo-principal {
    font-size: 10vw; /* Ajuste aún más pequeño para pantallas móviles */
  }
  .cat-btn {
    padding: 8px 18px;
    font-size: 1.2rem;
  }
}








/* CODIGO CSS OFERTAS */
.hero-publicidad {
  position: relative;
  padding: 40px 20px; /* Espaciado dentro de la sección */
  background-color: #f5f5f5; /* Fondo gris suave */
  color: #232222; /* Gris oscuro para el texto */
  text-align: center;
  margin-top: 100px; /* Asegura que no se tape con el header fijo */
  z-index: 1;
}

/* Banner de urgencia */
.urgency-banner {
  background-color: #b8a07d; /* Dorado suave */
  color: #fff;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 30px;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* Título principal */
.headline-pro {
  font-family: 'Playfair Display', serif;
  font-size: 4vw; /* Ajuste responsivo */
  font-weight: 700;
  margin-bottom: 20px;
}

.headline-pro .highlight {
  color: #b8a07d; /* Dorado suave para el destaque */
}

.headline-pro small {
  display: block;
  font-size: 1.2rem;
  color: #555; /* Gris claro para el texto pequeño */
  margin-top: 10px;
}

/* Contenedor de porcentajes */
.porcentajes-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Cada bloque de porcentaje */
.porcentaje-pro {
  background-color: #fff;
  padding: 20px;
  width: 30%;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.porcentaje-pro .numero-pro {
  font-size: 3rem;
  font-weight: 700;
  color: #b8a07d; /* Dorado suave para el porcentaje */
}

.porcentaje-pro .copy-pro {
  font-size: 1rem;
  margin-bottom: 15px;
}

.porcentaje-pro .btn-pro {
  background-color: #0c1527; /* Gris oscuro para los botones */
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.porcentaje-pro .btn-pro:hover {
  background-color: #b8a07d; /* Dorado suave al pasar el ratón */
  transform: scale(1.05);
}

/* Badge (etiqueta de cantidad vendida o limitación) */
.badge-pro {
  font-size: 1rem;
  margin-top: 10px;
  background-color: #b8a07d; /* Dorado suave para los badges */
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Elementos de confianza */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.trust-item {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0c1527; /* Gris oscuro para los textos de confianza */
}

/* Media Queries para tamaños más pequeños */
@media (max-width: 1024px) {
  .headline-pro {
    font-size: 6vw; /* Ajuste más pequeño para pantallas medianas */
  }
  .porcentaje-pro {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .headline-pro {
    font-size: 8vw; /* Ajuste a pantallas más pequeñas */
  }
  .porcentaje-pro {
    width: 100%; /* Los bloques de porcentaje se apilan en pantallas más pequeñas */
    margin-bottom: 20px;
  }
}











/* codigo css politica de envio y cambio*/
#shipping-returns {
  padding: 60px 20px;
  background-color: #fff;
  margin-top: 80px; /* Espacio para evitar que el contenido se oculte detrás del header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilos para el título principal (h1) */
#shipping-returns h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

/* Estilos para los subtítulos (h2) */
#shipping-returns h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Estilo de los Párrafos */
#shipping-returns p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Estilos para las listas */
#shipping-returns ul {
  list-style-type: disc;
  margin-left: 20px;
}

#shipping-returns ul li {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 10px;
}

#shipping-returns ul li:last-child {
  margin-bottom: 0;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
  #shipping-returns h1 {
    font-size: 2rem;
  }

  #shipping-returns h2 {
    font-size: 1.5rem;
  }

  #shipping-returns p {
    font-size: 1rem;
  }

  #shipping-returns ul li {
    font-size: 1rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #shipping-returns h1 {
    font-size: 1.75rem;
  }

  #shipping-returns h2 {
    font-size: 1.25rem;
  }

  #shipping-returns p {
    font-size: 0.95rem;
  }

  #shipping-returns ul li {
    font-size: 0.95rem;
  }

  .container {
    padding: 10px;
  }
}








/* codigo css politica de reembolso*/
#refund-policy {
  padding: 60px 20px;
  background-color: #fff;
  margin-top: 80px; /* Espacio para evitar que el contenido se oculte detrás del header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilos para el título principal (h1) */
#refund-policy h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

/* Estilos para los subtítulos (h2) */
#refund-policy h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Estilo de los Párrafos */
#refund-policy p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Estilos para las listas */
#refund-policy ul {
  list-style-type: disc;
  margin-left: 20px;
}

#refund-policy ul li {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 10px;
}

#refund-policy ul li:last-child {
  margin-bottom: 0;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
  #refund-policy h1 {
    font-size: 2rem;
  }

  #refund-policy h2 {
    font-size: 1.5rem;
  }

  #refund-policy p {
    font-size: 1rem;
  }

  #refund-policy ul li {
    font-size: 1rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #refund-policy h1 {
    font-size: 1.75rem;
  }

  #refund-policy h2 {
    font-size: 1.25rem;
  }

  #refund-policy p {
    font-size: 0.95rem;
  }

  #refund-policy ul li {
    font-size: 0.95rem;
  }

  .container {
    padding: 10px;
  }
}







            
/* codigo css whatsapp flotante*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    font-size: 24px;
}

.whatsapp-text {
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease;
    font-size: 14px;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    width: auto;
}











/* CODIGO CSS Politica de Privacidad */
#privacy-policy {
  padding: 60px 20px;
  background-color: #fff;
  margin-top: 80px; /* Espacio para evitar que el contenido se oculte detrás del header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilos para el título principal (h1) */
#privacy-policy h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

/* Estilos para los subtítulos (h2) */
#privacy-policy h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Estilos para los párrafos */
#privacy-policy p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Estilos para las listas */
#privacy-policy ul {
  list-style-type: disc;
  margin-left: 20px;
}

#privacy-policy ul li {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 10px;
}

#privacy-policy ul li:last-child {
  margin-bottom: 0;
}

/* Estilos para la responsividad */
@media (max-width: 768px) {
  #privacy-policy h1 {
    font-size: 2rem;
  }

  #privacy-policy h2 {
    font-size: 1.5rem;
  }

  #privacy-policy p {
    font-size: 1rem;
  }

  #privacy-policy ul li {
    font-size: 1rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #privacy-policy h1 {
    font-size: 1.75rem;
  }

  #privacy-policy h2 {
    font-size: 1.25rem;
  }

  #privacy-policy p {
    font-size: 0.95rem;
  }

  #privacy-policy ul li {
    font-size: 0.95rem;
  }

  .container {
    padding: 10px;
  }
}













/* CODIGO CSS SOBRE NOSOSTROS */
.sn-section {
  --sn-primary: #2c3e50;
  --sn-accent: #e74c3c;
  --sn-light: #f8f9fa;
  --sn-dark: #212529;
  --sn-gray: #6c757d;
  --sn-border-radius: 12px;
  --sn-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --sn-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  background-color: var(--sn-light);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.sn-container {
  max-width: min(1200px, 90%);
  margin: 0 auto;
  position: relative;
  padding-top: 80px;  /* Espacio para que no quede cubierto por el header */
}

.sn-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sn-text-content {
  position: relative;
  z-index: 2;
}

.sn-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--sn-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.sn-heading::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 3rem;
  height: 0.25rem;
  background-color: var(--sn-accent);
  border-radius: 2px;
}

.sn-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--sn-dark);
  margin-bottom: 2rem;
}

.sn-highlights {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.sn-highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sn-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  stroke: var(--sn-accent);
  margin-top: 0.25rem;
}

.sn-highlight-title {
  font-size: 1.25rem;
  color: var(--sn-primary);
  margin-bottom: 0.25rem;
}

.sn-highlight-text {
  font-size: 1rem;
  color: var(--sn-gray);
  line-height: 1.6;
}

.sn-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--sn-primary);
  color: white;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--sn-border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--sn-transition);
  margin-top: 1rem;
}

.sn-cta-button:hover {
  background-color: var(--sn-accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.sn-cta-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.sn-cta-button[aria-expanded="true"] .sn-cta-icon {
  transform: rotate(90deg);
}

.sn-image-wrapper {
  position: relative;
  border-radius: var(--sn-border-radius);
  overflow: hidden;
  box-shadow: var(--sn-box-shadow);
  width: 100%;
  height: 100%;
}

.sn-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--sn-transition);
}

.sn-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.2) 0%, rgba(44, 62, 80, 0.6) 100%);
}

.sn-additional-content {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sn-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.sn-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  height: 100%;
  width: 2px;
  background-color: var(--sn-accent);
}

.sn-timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
}

.sn-timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--sn-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--sn-light), 0 3px 10px rgba(231, 76, 60, 0.3);
}

.sn-timeline-content h3 {
  font-size: 1.25rem;
  color: var(--sn-primary);
  margin-bottom: 0.5rem;
}

.sn-timeline-content p {
  color: var(--sn-gray);
  line-height: 1.7;
}

.sn-values-title {
  text-align: center;
  font-size: 1.75rem;
  color: var(--sn-primary);
  margin-bottom: 2rem;
}

.sn-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sn-value-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--sn-border-radius);
  box-shadow: var(--sn-box-shadow);
  text-align: center;
  transition: var(--sn-transition);
}

.sn-value-card:hover {
  transform: translateY(-5px);
}

.sn-value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sn-value-card h4 {
  font-size: 1.25rem;
  color: var(--sn-primary);
  margin-bottom: 0.75rem;
}

.sn-value-card p {
  color: var(--sn-gray);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sn-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sn-image-wrapper {
    order: -1;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .sn-section {
    padding: 4rem 0;
  }

  .sn-container {
    padding-top: 100px;  /* Espacio adicional para la imagen y header */
  }

  .sn-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sn-image-wrapper {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
    height: auto; /* Ajuste de altura de la imagen para pantallas pequeñas */
  }

  .sn-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .sn-section {
    padding: 3rem 0;
  }

  .sn-heading {
    font-size: 1.75rem;
  }

  .sn-description p {
    font-size: 1rem;
  }

  .sn-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .sn-section {
    padding: 2rem 0;
  }

  .sn-heading {
    font-size: 1.5rem;
  }

  .sn-description p {
    font-size: 0.9rem;
  }

  .sn-cta-button {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .sn-values-title {
    font-size: 1.5rem;
  }

  .sn-timeline-item {
    padding-left: 2rem;
  }

  .sn-timeline-year {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}











/* CODIGO CSS TRABAJA CON NOSOTROS */
.trabaja-con-nosotros-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9; /* Fondo más claro para un look moderno */
}

/* Contenedor central */
.tcn-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Cabecera de la sección */
.tcn-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Título */
.tcn-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Subtítulo */
.tcn-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Estilos para los beneficios */
.tcn-benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tcn-benefit-card {
    background: #fff;
    padding: 1.5rem;
    width: calc(33.33% - 1rem);
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tcn-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tcn-benefit-icon {
    margin-bottom: 1rem;
    font-size: 30px; /* Reducido el tamaño de los iconos */
    color: #27ae60; /* Color verde para los iconos */
}

.tcn-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.tcn-benefit-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilos del Formulario */
.tcn-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.tcn-form-group {
    margin-bottom: 1.25rem;
}

.tcn-form-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.tcn-form-input,
.tcn-form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.tcn-form-input:focus,
.tcn-form-textarea:focus {
    border-color: #27ae60; /* Cambié el color de borde a verde */
    outline: none;
}

.tcn-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.tcn-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tcn-form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60; /* Fondo verde */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.tcn-form-submit:hover {
    background-color: #2ecc71; /* Fondo verde más oscuro al pasar el mouse */
}

/* Mensajes de Error */
.tcn-form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.tcn-form-error.visible {
    display: block;
}

/* Mensaje de Éxito */
#tcn-success-message[hidden] {
    display: none !important;
}

.tcn-success-message {
    padding: 2rem;
    background-color: #eafaf1;
    text-align: center;
    border-radius: 8px;
}

.tcn-success-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27ae60;
}

.tcn-success-desc {
    font-size: 1rem;
    color: #666;
}

.tcn-success-button {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid #27ae60;
    color: #27ae60;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.tcn-success-button:hover {
    background-color: #27ae60;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .tcn-benefits {
        flex-direction: column;
        align-items: center;
    }

    .tcn-benefit-card {
        width: 100%;
    }

    .tcn-title {
        font-size: 1.8rem;
    }

    .tcn-form-container {
        padding: 1.5rem;
    }

    .tcn-form-group {
        margin-bottom: 0.75rem;
    }

    .tcn-form-submit {
        padding: 1rem;
    }
}

/* Ajuste para asegurar que el contenido no se tape en pantallas pequeñas */
.tcn-container {
    padding-top: 80px; /* Espacio para evitar que el header tape el contenido */
}










/* Sección de Formas de Pago */
.pago-empresa-section {
  padding: 5rem 2rem;
  background-color: #f7f9fc; /* Fondo suave para un look elegante */
  font-family: 'Roboto', sans-serif;
  margin-top: 120px; /* Asegura que el header no tape la sección */
  transition: all 0.3s ease-in-out;
}

/* Contenedor principal */
.pago-empresa-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Título de la Sección */
.pago-empresa-title {
  text-align: center;
  font-size: 2.6rem;
  color: #1a365d; /* Color oscuro elegante */
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Subtítulo */
.pago-empresa-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

/* Métodos de pago en grid responsivo */
.pago-empresa-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Estilo de cada tarjeta de método de pago */
.pago-empresa-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2.2rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #3182ce; /* Bordes de color azul para destacar */
}

/* Efecto hover para tarjetas de métodos de pago */
.pago-empresa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Icono de cada método de pago */
.pago-empresa-icon {
  font-size: 2.8rem;
  color: #3182ce;
  margin-bottom: 1.8rem;
}

/* Título de cada tarjeta */
.pago-empresa-card h3 {
  font-size: 1.6rem;
  color: #2d3748;
  margin-bottom: 0.9rem;
}

/* Descripción debajo del título */
.pago-empresa-card p {
  color: #718096;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Estilo de los botones dentro de las tarjetas */
.pago-empresa-btn {
  background-color: #3182ce;
  color: white;
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Efecto hover para los botones */
.pago-empresa-btn:hover {
  background-color: #2b6cb0;
  transform: translateY(-2px);
}

/* Estilos para los modales */
.pago-empresa-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Estilo del contenido del modal */
.pago-modal-content {
  background-color: #ffffff;
  margin: 8% auto;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 520px;
  position: relative;
  animation: pagoModalAppear 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Modales con QR */
.pago-qr-modal {
  max-width: 420px;
}

/* Botón para cerrar el modal */
.pago-close-modal {
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-size: 2rem;
  color: #a0aec0;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.pago-close-modal:hover {
  color: #e53e3e;
  transform: rotate(90deg);
}

/* Títulos dentro del modal */
.pago-modal-content h3 {
  color: #1a365d;
  margin-bottom: 1.8rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
}

/* Detalles dentro del modal */
.pago-banco-info, .pago-wallet-info {
  margin-bottom: 2rem;
}

/* Detalles de banco y billetera */
.pago-banco-detail, .pago-wallet-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #edf2f7;
}

/* Etiquetas de los detalles */
.pago-detail-label {
  font-weight: 600;
  color: #2d3748;
  width: 140px;
  margin-right: 1.2rem;
  font-size: 1rem;
}

/* Valores de los detalles */
.pago-detail-value {
  flex: 1;
  color: #4a5568;
  word-break: break-all;
  font-size: 1.05rem;
}

/* Botones de copiar */
.pago-copy-btn {
  background-color: #38a169;
  color: white;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 0.8rem;
  font-weight: 500;
}

/* Efecto hover para copiar */
.pago-copy-btn:hover {
  background-color: #2f855a;
  transform: translateY(-1px);
}

/* Contenedor QR */
.pago-qr-container {
  text-align: center;
  margin: 2rem 0;
}

/* Imagen QR */
.pago-qr-image {
  width: 260px;
  height: 260px;
  border: 1px solid #e2e8f0;
  padding: 0.8rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Nota en el modal */
.pago-modal-note {
  font-size: 0.9rem;
  color: #718096;
  text-align: center;
  margin-top: 1.8rem;
  font-style: italic;
  line-height: 1.5;
}

/* Animación única para modal */
@keyframes pagoModalAppear {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design Único */
@media (max-width: 992px) {
  .pago-empresa-section {
    padding: 4rem 1.5rem;
  }
  
  .pago-empresa-title {
    font-size: 2.1rem;
  }
  
  .pago-empresa-subtitle {
    font-size: 1.05rem;
  }
  
  .pago-modal-content {
    margin: 12% auto;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .pago-empresa-methods {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .pago-empresa-card {
    padding: 1.8rem;
  }
  
  .pago-qr-image {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .pago-empresa-section {
    padding: 3rem 1rem;
  }
  
  .pago-empresa-title {
    font-size: 1.9rem;
  }
  
  .pago-modal-content {
    width: 95%;
    padding: 1.5rem;
  }
  
  .pago-banco-detail, .pago-wallet-detail {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pago-detail-label {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  
  .pago-copy-btn {
    margin-left: 0;
    margin-top: 0.6rem;
  }
  
  .pago-qr-image {
    width: 200px;
    height: 200px;
  }
}








/* CODIGO CSS TERMINOS Y CONDICIONES */
#terms-conditions {
  padding: 60px 20px;
  background-color: #fff;
  margin-top: 80px; /* Espacio para evitar que el contenido se oculte detrás del header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilos para el título principal (h1) */
#terms-conditions h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

/* Estilos para los subtítulos (h2) */
#terms-conditions h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Estilo de los Párrafos */
#terms-conditions p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
  #terms-conditions h1 {
    font-size: 2rem;
  }

  #terms-conditions h2 {
    font-size: 1.5rem;
  }

  #terms-conditions p {
    font-size: 1rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #terms-conditions h1 {
    font-size: 1.75rem;
  }

  #terms-conditions h2 {
    font-size: 1.25rem;
  }

  #terms-conditions p {
    font-size: 0.95rem;
  }

  .container {
    padding: 10px;
  }
}









/* --- GUIA DE TALLAS 2026 --- */
.talla-guide-section {
  padding: 3rem 2rem;
  font-family: var(--font-main);
  background-color: #1a1a1a; /* Fondo negro profundo para dar elegancia */
    /* Asegurar que el contenido del hero esté debajo del header fijo */
  padding-top: 110px; /* Ajusta según la altura de tu header */ /* Sin margen superior para que esté pegado al header */
}

/* Título */
.talla-guide-title {
  color: #d4af37; /* Dorado metálico, ideal para lujo */
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 80px; /* Asegura que el título no quede tapado por el header */
}

/* Subtítulo */
.talla-guide-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #b0b0b0; /* Gris plata, elegante y sutil */
}

/* Botones de las pestañas (Mujer, Hombre, Niños) */
.talla-guide-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.talla-tab {
  background: transparent;
  border: 2px solid #d4af37; /* Borde dorado metálico */
  color: #d4af37; /* Dorado metálico */
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Efecto de fondo dinámico al hacer hover o estar activo */
.talla-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%;
  height: 100%;
  background: #d4af37; /* Dorado metálico */
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: 30px;
  transform: translateX(-50%);
}

.talla-tab.active,
.talla-tab:hover {
  color: #fff;  /* Cambiar el color del texto al hacer hover o estar activo */
}

.talla-tab.active::before,
.talla-tab:hover::before {
  left: 0;
  width: 100%;
}

.talla-tab.active {
  background: #d4af37; /* Dorado metálico de fondo */
  color: #fff;  /* Color blanco para el texto cuando está activo */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);  /* Eleva el botón al estar activo */
}

.talla-tab:hover {
  background: #d4af37; /* Dorado metálico */
  color: #fff;  /* Asegura que el color de texto cambie al hacer hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);  /* Sutil efecto de elevación */
}

/* Contenido de cada sección */
.talla-tab-content {
  display: none;
  animation: fadeIn 0.7s ease-in-out;
}

.talla-tab-content.active {
  display: block;
}

.talla-instructions h2,
.talla-table-container h3,
.talla-tips h3 {
  color: #d4af37; /* Dorado metálico para títulos */
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.talla-instructions ol {
  padding-left: 2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* --- AJUSTE PARA INSTRUCCIONES DE HOMBRE (MÁS CLARIDAD) --- */
#men-tab .talla-instructions {
  background-color: #222; /* Fondo gris oscuro para separar del negro */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#men-tab .talla-instructions h2 {
  color: #ffffff; /* Blanco puro */
}

#men-tab .talla-instructions li {
  color: #f5f5f5; /* Blanco más puro para máxima legibilidad */
}

#men-tab .talla-instructions li::marker {
  color: #d4af37; /* Números dorados para toque de lujo */
}

/* --- AJUSTE PARA INSTRUCCIONES DE MUJERES --- */
#women-tab .talla-instructions {
  background-color: #333; /* Fondo gris oscuro, similar al de hombres */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#women-tab .talla-instructions h2 {
  color: #ffffff; /* Blanco puro */
}

#women-tab .talla-instructions li {
  color: #f5f5f5; /* Blanco más puro para máxima legibilidad */
}

#women-tab .talla-instructions li::marker {
  color: #e91e63; /* Rosa para un toque femenino y elegante */
}

/* --- AJUSTE PARA INSTRUCCIONES DE NIÑOS --- */
#kids-tab .talla-instructions {
  background-color: #444; /* Fondo gris con un toque más suave que el de hombres y mujeres */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#kids-tab .talla-instructions h2 {
  color: #ffffff; /* Blanco puro */
}

#kids-tab .talla-instructions li {
  color: #f5f5f5; /* Blanco más puro para máxima legibilidad */
}

#kids-tab .talla-instructions li::marker {
  color: #ff9800; /* Naranja para un toque juvenil y vibrante */
}


.talla-measurement-image {
  text-align: center;
  margin-bottom: 2rem;
}

.talla-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 10px; /* Sombra suave */
}

.talla-img-caption {
  font-size: 1rem;
  color: #bbb; /* Gris claro para los subtítulos */
  margin-top: 0.8rem;
}

.talla-table-container {
  margin-bottom: 2.5rem;
}

.talla-table-scroll {
  overflow-x: auto;
}

.talla-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: #2a2a38; /* Fondo oscuro para tablas */
  border-radius: 12px;
  overflow: hidden;
}

.talla-table th,
.talla-table td {
  padding: 1rem;
  border: 1px solid #444;
  text-align: center;
  color: #fff;
}

.talla-tips-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.talla-tip-card {
  background-color: #34495e; /* Fondo oscuro para tarjetas */
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 10px;
  transition: transform 0.4s ease;
}

.talla-tip-card:hover {
  transform: translateY(-8px);
}

.talla-disclaimer {
  font-size: 1rem;
  margin-top: 2.5rem;
  text-align: center;
  color: #bbb; /* Gris suave */
  border-top: 1px solid #444;
  padding-top: 1.5rem;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Media Queries --- */

/* Para móviles pequeños (<= 480px) */
@media (max-width: 480px) {
  .talla-guide-title {
    font-size: 2.2rem;
  }

  .talla-guide-subtitle {
    font-size: 1rem;
  }

  .talla-tab {
    padding: 0.5rem 1rem;
  }

  .talla-img {
    max-width: 90%;
  }

  .talla-table {
    font-size: 0.9rem;
  }

  .talla-tips-grid {
    grid-template-columns: 1fr;
  }
}

/* Para tabletas (<= 768px) */
@media (max-width: 768px) {
  .talla-guide-title {
    font-size: 2.5rem;
  }

  .talla-guide-subtitle {
    font-size: 1.1rem;
  }

  .talla-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .talla-tab {
    padding: 0.8rem 1.5rem;
  }

  .talla-img {
    max-width: 90%;
  }

  .talla-table {
    font-size: 1rem;
  }
}

/* Para pantallas de escritorio (>= 1024px) */
@media (min-width: 1024px) {
  .talla-guide-container {
    max-width: 980px;
    margin: auto;
  }

  .talla-guide-title {
    font-size: 3rem;
  }

  .talla-tips-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .talla-table th,
  .talla-table td {
    font-size: 1.1rem;
  }
}








/* CODIGO CSS GUIA DE COMPRAS */
.guia-compras-section {
  background-color: #0f1118;
  color: #f2f2f2;
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 1;
  box-sizing: border-box;

  /* Asegurar que el contenido del hero esté debajo del header fijo */
  padding-top: 155px; /* Ajusta según la altura de tu header */
}

/* El contenedor donde está el logo y el menú */
.guia-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Título */
.guia-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff; /* 🔹 Blanco puro */
  line-height: 1.2;
  z-index: 2; /* Asegura que el título quede encima de otros elementos */
  position: relative; /* Posiciona el título dentro de la sección */
}

/* Subtítulo */
.guia-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Container para los pasos */
.guia-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.guia-step {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 18px rgba(0, 255, 200, 0.05);
}

.step-number {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: bold;
  color: #00ffc8;
  min-width: 2rem;
  text-align: center;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #ffffff;
}

.step-content p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #ccc;
  margin-bottom: 1rem;
}

.guia-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #00ffc8, #00aaff);
  border: none;
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 3rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.guia-btn:hover {
  background: linear-gradient(to right, #00aaff, #00ffc8);
  transform: translateY(-2px);
}

.btn-hover-effect {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guia-btn:hover .btn-hover-effect {
  opacity: 1;
}

.demo-iframe-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 1rem;
  background-color: #000;
}

.demo-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.guia-demo-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.guia-demo-container.active {
  display: flex;
}

.demo-content {
  background: #1c1e2c;
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  width: 100%;
  max-width: 800px;
}

.demo-close-btn {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.faq-item {
  margin-top: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.8rem;
}

.faq-question {
  background: none;
  border: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #00ffc8;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.4rem 0;
}

.faq-question.open i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.faq-answer.active {
  opacity: 1;
  max-height: 300px;
}

.ad-container {
  margin-top: 3rem;
  text-align: center;
}

.ad-placeholder {
  padding: 1.2rem;
  background: #1c1e2c;
  color: #aaa;
  border-radius: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .guia-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .step-number {
    min-width: auto;
  }
  
  .step-content {
    text-align: center;
  }
}









/* CODIGO CSS whatsapp */
.contact-whatsapp {
  background: linear-gradient(135deg, #0f1118, #141726);
  color: #f1f1f1;
  font-family: 'Space Grotesk', sans-serif;
  padding: 5rem 2rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 140px;
}

.contact-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #00ffc8;
  text-shadow: 0 0 8px rgba(0, 255, 200, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.contact-header p {
  font-size: 1.2rem;
  color: #aab4c2;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.contact-options {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  animation: fadeInUp 1.2s ease-out;
}

.contact-method {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 255, 200, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 200, 0.2);
}

.contact-method img {
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(0, 255, 200, 0.3));
}

.contact-method h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-method p {
  font-size: 1rem;
  color: #d6d6d6;
  margin-bottom: 1.5rem;
}

.whatsapp-button {
  display: inline-block;
  background: linear-gradient(to right, #00ffc8, #00aaff);
  color: #000;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.25);
}

.whatsapp-button:hover {
  background: linear-gradient(to right, #00aaff, #00ffc8);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.35);
}

.ad-banner {
  margin-top: 4rem;
  padding: 1.8rem;
  background-color: #202537;
  border-radius: 1rem;
  color: #a0a8b8;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .contact-header h2 { font-size: 2rem; }
  .contact-header p { font-size: 1rem; }
  .whatsapp-button { font-size: 0.95rem; padding: 0.7rem 1.2rem; }
}










/* CODIGO CSS PEDIDOS */
.pedidos-section {
  background: #10131b;
  color: #f5f5f5;
  padding: 5rem 2rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
  padding-top: 160px; 
}

.pedidos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pedidos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pedidos-title {
  font-size: 2.8rem;
  color: #00f0ff;
  font-weight: 700;
}

.pedidos-subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 0.5rem;
}

.pedidos-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.pedidos-info {
  flex: 1 1 45%;
  display: grid;
  gap: 2rem;
}

.info-card {
  background: #1a1e2d;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,240,255,0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2rem;
  color: #00f0ff;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 1rem;
  color: #ccc;
}

.pedidos-form {
  flex: 1 1 45%;
  background: #1a1e2d;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,240,255,0.05);
}

.pedidos-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00f0ff;
}

.pedido-form .form-group {
  margin-bottom: 1.5rem;
}

.pedido-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.pedido-form input,
.pedido-form select,
.pedido-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #444;
  background-color: #0f1118;
  color: #fff;
  font-size: 1rem;
}

.pedido-form textarea {
  resize: vertical;
}

.submit-btn {
  display: inline-block;
  background: linear-gradient(to right, #00f0ff, #00aaff);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border-radius: 3rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #00aaff, #00f0ff);
}

.pedidos-faq {
  margin-top: 4rem;
}

.pedidos-faq h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #00f0ff;
}

.faq-container {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  color: #00f0ff;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.faq-answer.active {
  opacity: 1;
  max-height: 300px;
}

.faq-question.open::after {
  content: "▲";
  transform: rotate(180deg);
  margin-left: auto;
}

.faq-question::after {
  content: "▼";
  margin-left: auto;
  transition: transform 0.3s ease;
}











/* CODIGO CSS HUELLA DE MODA */
.user-footprint-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fb 100%);
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-top: 140px; 
}

.uf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.uf-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease;
}

.uf-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.uf-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.uf-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.uf-divider-small {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    margin: 0.5rem auto 2rem;
    border-radius: 1px;
}

.uf-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.uf-content:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.uf-options {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.uf-option-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.uf-option-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.uf-option-btn:hover {
    color: #6a11cb;
    background: rgba(106, 17, 203, 0.1);
}

.uf-option-btn.active {
    color: white;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.uf-forms {
    position: relative;
    min-height: 300px;
}

.uf-form {
    display: none;
    animation: fadeIn 0.5s ease;
}

.uf-form.active {
    display: block;
}

.uf-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    resize: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.uf-textarea:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
    outline: none;
}

.uf-signature {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.uf-name-input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.uf-name-input:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
    outline: none;
}

.uf-submit-btn {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.uf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

.uf-submit-btn:active {
    transform: translateY(0);
}





/* Estilos para la carga de fotos */
.uf-upload-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uf-upload-area i {
    font-size: 3rem;
    color: #6a11cb;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.uf-upload-area p {
    color: #666;
    margin: 0;
}

.uf-upload-area:hover {
    border-color: #6a11cb;
    background: rgba(106, 17, 203, 0.05);
}

.uf-preview-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

#preview-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.uf-remove-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uf-remove-btn:hover {
    background: #ff6b81;
}

/* Estilos para las estrellas */
.uf-rating {
    text-align: center;
    margin-bottom: 2rem;
}

.uf-rating p {
    margin-bottom: 1rem;
    color: #666;
}

.uf-stars {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    cursor: pointer;
}

.uf-stars i {
    margin: 0 5px;
    transition: all 0.2s ease;
}

.uf-stars i.active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.uf-rating-text {
    font-size: 1rem;
    color: #6a11cb;
    font-weight: 500;
}

/* Galería de huellas */
.uf-gallery-title {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease;
}

.uf-gallery-title h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.uf-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.uf-gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease;
}

.uf-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.uf-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.uf-gallery-message {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.uf-gallery-author {
    display: flex;
    align-items: center;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #6a11cb;
    font-weight: 500;
}

.uf-gallery-author i {
    margin-right: 8px;
}

.uf-gallery-rating {
    padding: 0 1.5rem 1.5rem;
    color: #FFD700;
}

/* Partículas de fondo */
.uf-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .uf-title {
        font-size: 2.2rem;
    }
    
    .uf-subtitle {
        font-size: 1rem;
    }
    
    .uf-content {
        padding: 1.5rem;
    }
    
    .uf-option-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0.3rem;
    }
    
    .uf-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .uf-title {
        font-size: 1.8rem;
    }
    
    .uf-signature {
        flex-direction: column;
    }
    
    .uf-name-input, .uf-submit-btn {
        width: 100%;
    }
}






/* 🌟 Modal de Boucher Ejecutivo */
#boucherModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
}

/* 🧾 Contenedor del Comprobante - Estilo Corporativo */
#boucherContenido {
  background: #fff;
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: #2d3748;
  position: relative;
  border: 1px solid #e2e8f0;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ❌ Botón de Cierre Premium */
#boucherContenido .close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 1.8em;
  color: #718096;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#boucherContenido .close:hover {
  color: #2d3748;
  background: #f7fafc;
  transform: rotate(90deg);
}

/* 🧍‍♂️ Sección de Datos del Cliente - Estilo Ejecutivo */
#boucherContenido .form-group {
  margin-bottom: 25px;
}
#boucherContenido label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #4a5568;
  font-size: 15px;
  letter-spacing: 0.5px;
}
#boucherContenido input,
#boucherContenido select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2d3748;
}
#boucherContenido input:focus,
#boucherContenido select:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* 📊 Tabla de Productos - Estilo Profesional */
#boucherContenido table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0 20px;
  font-size: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
#boucherContenido th,
#boucherContenido td {
  border: 1px solid #edf2f7;
  padding: 14px 16px;
  text-align: left;
}
#boucherContenido th {
  background-color: #2c5282;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
#boucherContenido tr:nth-child(even) {
  background-color: #f8fafc;
}
#boucherContenido tr:hover {
  background-color: #ebf8ff;
}

/* 💰 Sección de Totales - Estilo Destacado */
#boucherContenido p {
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.6;
}
#boucherContenido p strong {
  color: #2b6cb0;
  font-weight: 700;
}

/* 🎯 Botones de Acción - Estilo Corporativo */
/* Contenedores centrados */
.boton-contenedor {
  text-align: center;
  margin: 30px 0;
}

/* Campo de imagen */
.boucher-subida {
  text-align: center;
  margin: 30px 0;
}

.boucher-subida label {
  font-weight: 600;
  font-size: 1rem;
  color: #2c3e50;
}

.boucher-subida input[type="file"] {
  margin-top: 10px;
  font-size: 0.95rem;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: 0.3s;
}

.boucher-subida input[type="file"]:hover {
  border-color: #3498db;
}

/* Botones profesionales */
.btn-profesional {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-profesional:hover {
  background: linear-gradient(135deg, #16335b, #24457c);
  transform: translateY(-2px);
}

.btn-profesional:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
}

/* 🧾 Pie de Página Corporativo */
#boucherContenido .footer {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
  color: #718096;
  line-height: 1.6;
}
#boucherContenido .footer p {
  margin: 6px 0;
}
#boucherContenido .footer a {
  color: #4299e1;
  text-decoration: none;
  transition: color 0.2s ease;
}
#boucherContenido .footer a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}
#boucherContenido .footer em {
  font-size: 13px;
  color: #a0aec0;
  display: block;
  margin-top: 10px;
  font-style: italic;
}

/* Efectos de transición para interactividad */
#boucherContenido * {
  transition: all 0.25s ease;
}



/* 📱 Responsive para móviles pequeños */
@media (max-width: 480px) {
  #boucherContenido {
    padding: 25px 15px;
  }

  #boucherContenido h2 {
    font-size: 1.2rem;
  }

  #boucherContenido input,
  #boucherContenido select {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  #boucherContenido table,
  #boucherContenido thead,
  #boucherContenido tbody,
  #boucherContenido th,
  #boucherContenido td,
  #boucherContenido tr {
    display: block;
  }

  #boucherContenido thead {
    display: none;
  }

  #boucherContenido tr {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    padding: 10px;
  }

  #boucherContenido td {
    padding: 10px;
    text-align: right;
    position: relative;
    font-size: 0.9rem;
  }

  #boucherContenido td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 10px;
    font-weight: bold;
    color: #4a5568;
    text-align: left;
    font-size: 0.85rem;
  }

  .btn-profesional {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }

  .boucher-subida input[type="file"] {
    font-size: 0.85rem;
  }
}


