/* ===== FUENTES PERSONALIZADAS ===== */
@font-face {
    font-family: 'Trajan Pro';
    src: url('fonts/TrajanPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Trajan Pro';
    src: url('fonts/TrajanPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

    /* ===== FUENTES DE GOOGLE ===== */
    /* Playfair Display - Títulos secundarios elegantes */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');
    /* Inter - Cuerpo de texto legible y moderna */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* ===== VARIABLES Y RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #FFE200;
    --gold-dark: #F3A200;
    --black: #000000;
    --gray: #2A2A2A;
    --white: #FFFFFF;
}

body {
    font-family: 'Cinzel Decorative', serif;
    background-color: var(--black);
    color: var(--gold);
    overflow-x: hidden;
}

/* Textura de mármol muy sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.01) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

html, body {
  height: 100%;
}

/* ===== LOADER 3D ===== */
.loader-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.loader-3d.fade-out {
    opacity: 0;
    pointer-events: none;
}

#canvas3D {
    width: 100%;
    height: 100%;
}

/* ===== SECCIÓN HERO ===== */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 40%, #1A1A1A 100%);
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== MANDALAS - VERSIÓN ESCRITORIO ===== */
.mandala-container {
    position: absolute;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
}

.mandala {
    position: absolute;
    opacity: 0.7;
}

.mandala-gris {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotateCounterClockwise 60s linear infinite;
}

.mandala-dorado {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateClockwise 40s linear infinite;
}

@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

/* ===== CONTENIDO HERO ===== */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nfc-logo img {
    width: 220px;
    height: 220px;
}

/* ===== TIPOGRAFÍA ===== */
.main-title {
    font-family: 'Trajan Pro', serif;
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    line-height: 1.65;
}

.scramble {
    display: inline-block;
    white-space: nowrap;
}

/* ===== Spotlight Background Layer ===== */

.spotlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.spotlight-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0);
    transition: filter 0.3s ease-out;
}

.spotlight-img.mobile {
    display: none;
}

.spotlight-reveal {
    filter: none !important;
    -webkit-mask-image: radial-gradient(
        circle 200px at var(--spot-x) var(--spot-y),
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.95) 40%,
        rgba(255,255,255,0.5) 60%,
        rgba(255,255,255,0) 90%
    );
    mask-image: radial-gradient(
        circle 200px at var(--spot-x) var(--spot-y),
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.95) 40%,
        rgba(255,255,255,0.5) 60%,
        rgba(255,255,255,0) 90%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: -webkit-mask-image 0s, mask-image 0s;
}


/* Desktop rules – enforce desktop image over mobile */
@media screen and (min-width: 768px) {
    .spotlight-img.desktop {
        display: block !important;
    }
    .spotlight-img.mobile {
        display: none !important;
    }
}

/* ===== Spotlight Atmosférico (Elegante) ===== */
#atmosSpotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.09) 0%,
        rgba(255, 255, 255, 0.04) 35%,
        rgba(255, 255, 255, 0) 60%
    );

    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.45s ease-out;
    filter: blur(20px);

    z-index: 1;
}

    /* Golden Button Estilo Midas */
.midas-button {
  width: 120px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #D4AF37,
    #FFE200,
    #D4AF37,
    #D4AF37,
    #FFE200,
    #D4AF37
  );
  background-size: 250%;
  background-position: left;
  color: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.8s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  margin-top: 4rem;
  font-family: inherit;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.midas-button.visible {
  animation: buttonAppear 0.8s ease-out forwards;
}

@keyframes buttonAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.midas-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: transparent;
  transition: all 1s ease;
  z-index: 0;
}

.midas-button:hover {
  background-position: right;
  transform: scale(1.05);
}

.midas-button:active {
  transform: scale(0.95);
}

/* ===== SECCIÓN INICIO ===== */
.inicio-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 50%, #0A0A0A 100%);
    overflow: hidden;
}

/* ===== DECORACIÓN NFC: TELÉFONO CON ONDAS ===== */
.nfc-decoration {
    position: absolute;
    bottom: 150px;
    left: 120px;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
}

.nfc-wave {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: nfcWaveExpand 3s ease-out infinite;
}

.nfc-wave-1 {
    animation-delay: 0s;
}

.nfc-wave-2 {
    animation-delay: 1s;
}

.nfc-wave-3 {
    animation-delay: 2s;
}

@keyframes nfcWaveExpand {
    0% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        width: 280px;
        height: 280px;
        opacity: 0;
    }
}

.nfc-phone {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 280px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.95));
    border: 3px solid var(--gold);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    animation: screenPulse 2s ease-in-out infinite;
}

@keyframes screenPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
}

.nfc-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    animation: nfcIconPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes nfcIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.9));
    }
}

.inicio-mandala {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.03;
    animation: rotateMandalaInicio 180s linear infinite;
    pointer-events: none;
    color: var(--gold);
}

@keyframes rotateMandalaInicio {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.inicio-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== GRID ASIMÉTRICO ===== */
.inicio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: start;
}

/* ===== TÍTULO GRANDE ===== */
.inicio-title-block {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    opacity: 0;
    animation: fadeInLeft 1s ease 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.inicio-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.inicio-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.inicio-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 400;
}

/* ===== CARD HERO (Grande) ===== */
.card-hero {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUpInicio 1s ease 0.4s forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes fadeInUpInicio {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-hero::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(212, 175, 55, 0.4) 50%, 
        transparent 70%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    background-size: 200% 200%;
    animation: borderGlowInicio 3s ease infinite;
}

@keyframes borderGlowInicio {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.card-hero:hover::before {
    opacity: 1;
}

.card-hero:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.card-hero:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 400;
}

/* ===== CARDS PEQUEÑAS ===== */
.card-small {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-small-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    animation: fadeInUpInicio 1s ease 0.6s forwards;
}

.card-small-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    animation: fadeInUpInicio 1s ease 0.8s forwards;
}

.card-small::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 226, 0, 0.3) 50%, 
        transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card-small:hover::before {
    opacity: 1;
}

.card-small:hover {
    border-color: var(--gold-light);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.card-icon-small {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.card-small:hover .card-icon-small {
    transform: scale(1.15) rotate(-5deg);
}

.card-title-small {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.card-description-small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 400;
}

/* ===== BOTÓN CTA ===== */
.inicio-cta {
    text-align: center;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUpInicio 1s ease 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* ===== HEADER FIJO ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.85) 70%, 
        rgba(0, 0, 0, 0) 100%
    );
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}


.main-header.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-logo:hover {
    transform: scale(1.01);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.header-logo:hover .header-title {
    text-shadow: 0 0 1px rgba(212, 175, 55, 0.6);
}

.header-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.header-title {
    font-family: 'Trajan Pro', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.15rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* ===== NAVEGACIÓN HEADER ===== */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.05rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.icon-button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.icon-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.icon-button:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

.icon-button:hover img {
    filter: brightness(0);
}

/* ===== HAMBURGUESA Y SIDEBAR (OCULTOS EN DESKTOP) ===== */
.hamburger-btn {
    display: none;
}

.sidebar,
.sidebar-overlay {
    display: none;
    overflow-x: hidden;
}

/* ===== SECCIÓN PRODUCTOS - CAROUSEL 3D ===== */
.productos-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.productos-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel 3D Wrapper */
.productos-carousel-3d {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

/* ===== DETALLES DEL PRODUCTO ===== */
.producto-detalles {
    flex: 0 0 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    padding-right: 3rem;
    z-index: 100;
}

.producto-categoria {
    font-size: 0.75rem;
    letter-spacing: 0.3rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease 0.2s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.producto-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease 0.3s forwards;
}

.producto-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease 0.4s forwards;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 400;
}

.producto-precio-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease 0.5s forwards;
}

.producto-precio {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.producto-moneda {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.producto-cta {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease 0.6s forwards;
}

.producto-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

/* ===== STACK DE PRODUCTOS (CENTRO + DERECHA) ===== */
.productos-stack {
    flex: 1;
    position: relative;
    height: 500px;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Producto Item */
.producto-item {
    position: absolute;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.producto-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Estado ACTIVO (Centro) */
.producto-item.active {
    transform: translateX(0) translateZ(0) scale(1);
    opacity: 1;
    filter: blur(0px);
    z-index: 10;
}

/* Producto 1 */
.producto-item.next-1 {
    transform: translateX(200px) translateZ(-300px) scale(0.7);
    opacity: 0.6;
    filter: blur(3px);
    z-index: 5;
}

/* Producto 2 */
.producto-item.next-2 {
    transform: translateX(320px) translateZ(-500px) scale(0.5);
    opacity: 0.3;
    filter: blur(5px);
    z-index: 1;
}

/* Productos ocultos */
.producto-item.hidden {
    transform: translateX(400px) translateZ(-700px) scale(0.3);
    opacity: 0;
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

/* ===== BOTONES DE NAVEGACIÓN ===== */
.carousel-3d-btn {
    position: absolute;
    bottom: -2rem;
    width: 60px;
    height: 60px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d-btn:hover {
    background: transparent;
    backdrop-filter: none;
    border: none;
    transform: scale(1.2);
}

.carousel-3d-btn.prev {
    left: 50%;
    transform: translateX(-80px);
}

.carousel-3d-btn.prev:hover {
    transform: translateX(-80px) scale(1.1);
}

.carousel-3d-btn.next {
    left: 50%;
    transform: translateX(20px);
}

.carousel-3d-btn.next:hover {
    transform: translateX(20px) scale(1.1);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HTML DE PRODUCTOS */
.productos-header {
    text-align: center;
    padding-top: 3rem;
    margin-bottom: 0rem;
}

.productos-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.productos-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.title-decoration-productos {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 0 auto;
    opacity: 0.3;
    position: relative;
}

.title-decoration-productos::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== SEPARADOR ENTRE SECCIONES ===== */
.section-separator {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent 100%
    );
    opacity: 0.3;
    margin: 0;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}


/* =====================================================
   PÁGINAS DE PRODUCTO - HTML DE PRODUCTOS
   ===================================================== */

/* Header de producto */
.product-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.85) 70%, 
        rgba(0, 0, 0, 0) 100%
    );
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.product-header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Logo centrado */
.product-header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.product-header-logo img {
    width: 50px;
    height: 50px;
}

/* Lado derecho */
.product-header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-section-label {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.8;
}

/* ===== BOTÓN "VOLVER" - OPCIÓN D ===== */
.back-button-text {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.back-button-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.back-button-text:hover::after {
    width: 100%;
}

.back-button-text:hover {
    transform: translateX(-5px);
}

/* Tabs de categorías - STICKY */
.category-tabs {
    position: sticky;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
    padding: 0;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 3rem;
}

.tab-item {
    flex: 1;
    max-width: 200px;
    padding: 0.8rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.5);
    text-decoration: none;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.tab-item:hover {
    color: var(--gold);
}

.tab-item.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-item.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Contenedor principal del producto */
.product-page {
    min-height: 100vh;
    padding: 160px 8% 6rem;
    background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 40%, #1A1A1A 100%);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge de categoría */
.product-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Visor 3D principal */
.product-3d-viewer {
    width: 100%;
    max-width: 700px;
    height: 500px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    position: relative;
}

.product-3d-viewer canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Nombre del producto */
.product-name {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

/* Descripción */
.product-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Separador decorativo */
.product-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
    margin: 3rem auto;
    opacity: 0.3;
    position: relative;
}

.product-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* CONFIG Y CARAC */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.details-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2.5rem;
    position: relative;
}

/* Esquinas decorativas */
.details-box::before,
.details-box::after {
    content: '';
    position: absolute;
    background: var(--gold);
}

.details-box::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
}

.details-box::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 40px;
}

.details-box-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Opciones de configuración */
.config-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.config-option:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.config-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.config-option label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.8);
    cursor: pointer;
    flex: 1;
}


/* Sección de precio y CTA */
.price-cta-section {
    text-align: center;
    margin-bottom: 5rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-price {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
}

.price-currency {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: rgba(250, 250, 250, 0.6);
}

.configure-button {
    display: inline-block;
    padding: 1.3rem 4rem;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.configure-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.configure-button:hover {
    color: var(--marble-black);
}

.configure-button:hover::before {
    width: 100%;
}

/* Galería de productos relacionados */
.related-products {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.related-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--marble-white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.15rem;
}

.related-title span {
    color: var(--gold);
}

.related-gallery {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.related-gallery::-webkit-scrollbar {
    height: 6px;
}

.related-gallery::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
}

.related-gallery::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.related-card {
    flex: 0 0 250px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.related-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.related-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 30px;
    background: var(--gold);
}

.related-card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.related-card-image canvas {
    width: 100% !important;
    height: 100% !important;
}

.related-card-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.related-card-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.6);
    text-align: center;
}

/* ===== DROPDOWN DESKTOP - PRODUCTOS ===== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

/* Triangulito decorativo arriba */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.98);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-icon {
    font-size: 1.2rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    filter: grayscale(0);
}

/* =====================================================
   PÁGINA DE CATÁLOGO - GRID GALLERY
   ===================================================== */

/* Hero del Catálogo */
.catalogo-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 50%, #1A1A1A 100%);
    padding: 10rem 3rem 6rem;
    text-align: center;
}

.catalogo-hero-content {
    max-width: 800px;
}

.catalogo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.catalogo-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.title-decoration-catalog {
    width: 200px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
    margin: 0 auto 2rem;
    opacity: 0.3;
    position: relative;
}

.title-decoration-catalog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.catalogo-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.7);
}

/* Secciones de Categorías */
.catalog-category {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.category-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.6);
}

/* Grid de Productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

/* Card de Producto */
.product-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before,
.product-card::after {
    content: '';
    position: absolute;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
}

.product-card::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 40px;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.product-card:hover::before,
.product-card:hover::after {
    opacity: 1;
}

.product-card-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.product-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card-price {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
}

.product-card-price span {
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.5);
    font-weight: 400;
}

/* Sección de Paquetes */
.packages-section {
    padding: 8rem 3rem;
    background: linear-gradient(180deg, #0F0F0F 0%, #0A0A0A 100%);
}

.packages-header {
    text-align: center;
    margin-bottom: 5rem;
}

.packages-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.packages-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.2rem;
}

.packages-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(250, 250, 250, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.package-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.package-card::before,
.package-card::after {
    content: '';
    position: absolute;
    background: var(--gold);
}

.package-card::before {
    top: 0;
    left: 0;
    width: 50px;
    height: 1px;
}

.package-card::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 50px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.package-featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.package-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.package-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 2rem;
}

.package-includes {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.includes-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.package-pricing {
    margin-bottom: 2rem;
}

.package-price {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.package-savings {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 500;
}

.package-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.package-button:hover {
    color: var(--black);
}

.package-button:hover::before {
    left: 0;
}

.package-featured .package-button {
    background: var(--gold);
    color: var(--black);
}

.package-featured .package-button::before {
    background: transparent;
    border: 1px solid var(--gold);
}

.package-featured .package-button:hover {
    background: transparent;
    color: var(--gold);
}

/* CTA Paquete Personalizado */
.custom-package-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.custom-package-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 2rem;
}

.custom-package-button {
    display: inline-block;
    padding: 1.3rem 4rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--black);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.custom-package-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

/* ===== ITEM DESTACADO DEL DROPDOWN ===== */
.dropdown-item-featured {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    font-weight: 600;
    color: var(--gold) !important;
}

.dropdown-item-featured:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Divisor en dropdown */
.dropdown-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 50%,
        transparent 100%
    );
    margin: 0.5rem 0;
}


/* =====================================================
   SECCIÓN CÓMO FUNCIONA - COMPLETA
   ===================================================== */

.como-funciona-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 50%, #0A0A0A 100%);
    overflow: hidden;
}

.como-funciona-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== 1. HEADER ===== */
.como-funciona-header {
    text-align: center;
    margin-bottom: 5rem;
}

.como-funciona-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.como-funciona-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.title-decoration-como-funciona {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 0 auto 2rem;
    opacity: 0.3;
    position: relative;
}

.title-decoration-como-funciona::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.como-funciona-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(250, 250, 250, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SEPARADORES INTERNOS ===== */
.section-separator-interno {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    margin: 6rem auto;
}

/* ===== 2. VIDEO SHOWCASE ===== */
.video-showcase {
    margin-bottom: 6rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: var(--black);
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.video-wrapper video {
    display: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper video.playing {
    display: block;
}

.video-thumbnail.hidden {
    display: none;
}

.video-caption {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.5);
    margin-top: 2rem;
    font-style: italic;
}

/* ===== 3. STEPS TIMELINE ===== */
.steps-section {
    margin-bottom: 6rem;
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.steps-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.6);
}

.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    margin-top: 1rem;
}

.step-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.step-text {
    flex: 1;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.step-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.7;
}

.step-visual {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 26, 0.4);
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 4. FEATURES GRID ===== */
.features-section {
    margin-bottom: 6rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.features-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.4) 50%, transparent 70%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-large {
    grid-column: span 2;
}

.feature-wide {
    grid-column: span 3;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Inter', sans-serif;
font-size: 1rem;
color: rgba(250, 250, 250, 0.7);
line-height: 1.6;
}

.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}


/* ===== 5. COMPARISON SECTION ===== */
.comparison-section {
    margin-bottom: 6rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.comparison-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.6);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-column {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.badge-traditional {
    background: rgba(150, 150, 150, 0.3);
    color: rgba(250, 250, 250, 0.6);
    border: 1px solid rgba(150, 150, 150, 0.3);
}

.badge-nfc {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.negative .comparison-icon {
    color: #FF6B6B;
}

.positive .comparison-icon {
    color: var(--gold);
}

.negative .comparison-text {
    color: rgba(250, 250, 250, 0.5);
}

.positive .comparison-text {
    color: rgba(250, 250, 250, 0.8);
}

/* ===== 6. FAQ ACCORDION ===== */
.faq-section {
    margin-bottom: 6rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.6);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-text {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: left;
    flex: 1;
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ===== 7. CTA FINAL ===== */
.como-funciona-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-button-final {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--black);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button-final:hover::before {
    left: 100%;
}

.cta-button-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.cta-button-final:active {
    transform: translateY(-2px);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.cta-button-final:hover .cta-arrow {
    transform: translateX(5px);
}

/* =====================================================
   SECCIÓN CONTACTO - FORMULARIO INTELIGENTE
   ===================================================== */

.contacto-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 50%, #1A1A1A 100%);
    overflow: hidden;
}

.contacto-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.contacto-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contacto-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contacto-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.title-decoration-contacto {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 0 auto 2rem;
    opacity: 0.3;
    position: relative;
}

.title-decoration-contacto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.contacto-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(250, 250, 250, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== GRID PRINCIPAL ===== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

/* ===== FORMULARIO ===== */
.contacto-formulario-wrapper {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.contacto-form {
    position: relative;
}

/* Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInForm 0.4s ease;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-step-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 2rem;
}

/* Botones de Motivo (Paso 1) */
.motivo-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.motivo-btn {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.motivo-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.4) 50%, transparent 70%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.motivo-btn:hover,
.motivo-btn.selected {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.motivo-btn:hover::before,
.motivo-btn.selected::before {
    opacity: 1;
}

.motivo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.motivo-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.motivo-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.4;
}

/* Grid de Productos */
.productos-grid-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.producto-checkbox {
    cursor: pointer;
}

.producto-checkbox input[type="checkbox"] {
    display: none;
}

.producto-card-form {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.producto-checkbox input[type="checkbox"]:checked + .producto-card-form {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.producto-icon-form {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.producto-name-form {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.8);
}

.producto-checkbox input[type="checkbox"]:checked + .producto-card-form .producto-name-form {
    color: var(--gold);
    font-weight: 600;
}

/* Grid de Programación */
.programacion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.programacion-checkbox {
    cursor: pointer;
}

.programacion-checkbox input[type="checkbox"] {
    display: none;
}

.programacion-card {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.programacion-checkbox input[type="checkbox"]:checked + .programacion-card {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.programacion-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.programacion-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.8);
}

.programacion-checkbox input[type="checkbox"]:checked + .programacion-card .programacion-name {
    color: var(--gold);
    font-weight: 600;
}

/* Botones de Soporte/Info/Empresa */
.soporte-buttons,
.info-buttons,
.empresa-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.soporte-btn,
.info-btn,
.empresa-btn {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.soporte-btn:hover,
.info-btn:hover,
.empresa-btn:hover,
.soporte-btn.selected,
.info-btn.selected,
.empresa-btn.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.soporte-icon,
.info-icon,
.empresa-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.soporte-title,
.info-title,
.empresa-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.8);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(250, 250, 250, 0.5);
    margin-top: 0.5rem;
}

.form-counter {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(250, 250, 250, 0.5);
    text-align: right;
    margin-top: 0.25rem;
}

/* Teléfono Wrapper */
.telefono-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.telefono-prefix {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.telefono-wrapper input {
    flex: 1;
}

/* Checkboxes */
.form-checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.checkbox-label span {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.8);
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

/* Botones de Navegación */
.btn-volver {
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.btn-volver:hover {
    transform: translateX(-5px);
}

.btn-siguiente {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-siguiente:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background-position: right center;
}

.btn-enviar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-enviar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.btn-enviar:hover .btn-arrow {
    transform: translateX(5px);
}

.form-security {
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(250, 250, 250, 0.5);
    margin-top: 1rem;
}

/* ===== COLUMNA DERECHA: WHATSAPP E INFO ===== */
.contacto-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.whatsapp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.whatsapp-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.whatsapp-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.whatsapp-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 1.5rem;
}

.whatsapp-qr {
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.qr-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.6);
}

.whatsapp-divider {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.5);
    margin: 1rem 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: #25D366;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-arrow {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-arrow {
    transform: translateX(5px);
}

.whatsapp-respuesta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #25D366;
    margin-top: 1rem;
    font-weight: 600;
}

/* Info Cards */
.contacto-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.info-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card-content {
    flex: 1;
}

.info-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.info-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.5;
}

.info-card-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.info-card-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== REDES SOCIALES ===== */
.redes-sociales-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 20px;
}

.redes-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.redes-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 2.5rem;
}

.redes-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.red-social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.red-icon {
    width: 20px;
    height: 20px;
}

.instagram {
    border-color: #E1306C;
    color: #E1306C;
}

.instagram:hover {
    background: #E1306C;
    color: white;
}

.facebook {
    border-color: #1877F2;
    color: #1877F2;
}

.facebook:hover {
    background: #1877F2;
    color: white;
}

.tiktok {
    border-color: #00F2EA;
    color: #00F2EA;
}

.tiktok:hover {
    background: #00F2EA;
    color: #000;
}

.linkedin {
    border-color: #0A66C2;
    color: #0A66C2;
}

.linkedin:hover {
    background: #0A66C2;
    color: white;
}

/* ===== FAQ LINK ===== */
.contacto-faq {
    text-align: center;
    padding: 2rem;
}

.faq-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 0.5rem;
}

.faq-text a {
    color: var(--gold);
    text-decoration: underline;
}

.faq-subtext {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.5);
}

/* =====================================================
   SECCIÓN ACERCA DE - THE MIDAS TOUCH
   ===================================================== */

.acerca-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 50%, #1A1A1A 100%);
    overflow: hidden;
}

.acerca-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.acerca-header {
    text-align: center;
    margin-bottom: 5rem;
}

.acerca-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.acerca-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.title-decoration-acerca {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 0 auto;
    opacity: 0.3;
    position: relative;
}

.title-decoration-acerca::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== HISTORIA/ORIGEN ===== */
.acerca-historia {
    margin-bottom: 5rem;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-text {
    padding-right: 2rem;
}

.historia-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.historia-parrafo {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.historia-parrafo strong {
    color: var(--gold);
    font-weight: 600;
}

.historia-imagen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.historia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== MISIÓN Y VISIÓN ===== */
.mision-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.mv-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.mv-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.mv-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.mv-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.8;
}

/* ===== VALORES ===== */
.valores-section {
    margin-bottom: 5rem;
}

.valores-header {
    text-align: center;
    margin-bottom: 4rem;
}

.valores-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.valores-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.6);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valor-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.valor-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
}

.valor-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.valor-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.valor-card:hover .valor-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 14px rgba(212, 175, 55, 0.5));
}

.valor-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.valor-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

/* ===== POR QUÉ ELEGIRNOS ===== */
.porque-elegirnos-section {
    margin-bottom: 5rem;
}

.porque-header {
    text-align: center;
    margin-bottom: 4rem;
}

.porque-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.porque-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.6);
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.porque-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.porque-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

.porque-numero {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.porque-content {
    flex: 1;
}

.porque-item-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.porque-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

/* ===== EQUIPO ===== */
.equipo-section {
    margin-bottom: 5rem;
}

.equipo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.equipo-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.equipo-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.6);
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.miembro-card {
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.miembro-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.miembro-foto {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.miembro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.miembro-card:hover .miembro-foto img {
    transform: scale(1.05);
}

.foto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(212, 175, 55, 0.2) 100%);
}

.miembro-info {
    padding: 2rem;
    text-align: center;
}

.miembro-nombre {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.miembro-rol {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
}

.miembro-bio {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.miembro-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.miembro-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.miembro-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ===== CTA FINAL ===== */
.acerca-cta {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(250, 250, 250, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.cta-button-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.3rem 2.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta-button-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* =====================================================
   BADGES DE ESTADO PARA PRODUCTOS
   ===================================================== */

/* ===== BADGE AGOTADO ===== */
.product-badge-agotado {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 3rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}