@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores base de la marca - DORADOS SUAVES */
    --gold: #c9a24d;
    --gold-light: #deb887;
    --gold-dark: #9d8344;
    --gold-accent: #d4a574;
    
    /* Fondos oscuros elegantes - más suaves */
    --bg-dark: #1a1817;
    --bg-darker: #0f0d0b;
    --bg-surface: #2a2723;
    --bg-card: #3a3531;
    
    /* Fondos claros elegantes */
    --ivory: #faf8f3;
    --cream: #f5f0e6;
    --linen: #faf3e0;
    
    /* Familia Floral */
    --rose-gold: #c9a5a5;
    --jasmine: #e8d4b0;
    --orchid: #d9a8d9;
    
    /* Familia Fresca */
    --aqua: #7db8b0;
    --mint: #89bfb2;
    --sky: #8fbdd1;
    
    /* Familia Amaderada */
    --sandalwood: #8d6b5a;
    --cedar: #8b8270;
    --amber: #c9a574;
    
    /* Familia Oriental */
    --spice: #b8704d;
    --vanilla: #f0dba8;
    --musk: #8b8878;
    
    /* Textos y neutrales */
    --charcoal: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #f7f7f7;
    --slate: #4a5568;
    --white: #ffffff;
    
    /* Variables de uso */
    --primary: var(--bg-dark);
    --secondary: var(--bg-surface);
    --accent-1: var(--gold);
    --accent-2: var(--gold-accent);
    --accent-3: var(--rose-gold);
    --text-primary: var(--text-light);
    --text-secondary: var(--slate);
    --glow: rgba(201, 162, 77, 0.6);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 162, 77, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(201, 165, 165, 0.08) 0%, transparent 40%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(201, 162, 77, 0.03) 2px,
            rgba(201, 162, 77, 0.03) 4px
        );
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50%);
    }
}

/* Floating Orbs - AJUSTADOS para no salirse */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: min(250px, 25vw);
    height: min(250px, 25vw);
    background: radial-gradient(circle, var(--accent-1), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: min(200px, 20vw);
    height: min(200px, 20vw);
    background: radial-gradient(circle, var(--accent-2), transparent);
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}

.orb-3 {
    width: min(150px, 15vw);
    height: min(150px, 15vw);
    background: radial-gradient(circle, var(--accent-3), transparent);
    bottom: 20%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-10px, 10px) scale(0.9);
    }
}

/* Container - AJUSTADO para contener todo */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hero Section - AJUSTADO para no desbordar */
.hero {
    max-width: min(1200px, 90vw);
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

/* Left Content */
.hero-content {
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 2;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(1rem, 2vw, 1.2rem);
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.15), rgba(212, 165, 116, 0.15));
    border: 1px solid rgba(201, 162, 77, 0.4);
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    backdrop-filter: blur(10px);
    animation: pulse-glow 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 162, 77, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 162, 77, 0.7);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

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

.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: min(500px, 100%);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

.btn {
    padding: clamp(0.9rem, 1.8vw, 1.1rem) clamp(1.5rem, 2.5vw, 2rem);
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.8rem);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: var(--bg-darker);
    box-shadow: 0 10px 40px rgba(201, 162, 77, 0.4);
    font-weight: 900;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 162, 77, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--accent-1);
    background: rgba(201, 162, 77, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.3);
}

/* Right Visual - AJUSTADO para no desbordar */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
    width: 100%;
    height: auto;
    max-width: 100%;
    overflow: visible;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.perfume-showcase {
    position: relative;
    width: 100%;
    height: clamp(280px, 40vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.showcase-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 77, 0.25);
    max-width: 100%;
}

.circle-1 {
    width: clamp(200px, 35vw, 400px);
    height: clamp(200px, 35vw, 400px);
    animation: rotate-circle 20s linear infinite;
}

.circle-2 {
    width: clamp(160px, 28vw, 320px);
    height: clamp(160px, 28vw, 320px);
    animation: rotate-circle 15s linear infinite reverse;
}

.circle-3 {
    width: clamp(120px, 22vw, 240px);
    height: clamp(120px, 22vw, 240px);
    animation: rotate-circle 25s linear infinite;
}

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

.perfume-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.logo-aron {
    width: clamp(120px, 25vw, 220px);
    height: clamp(120px, 25vw, 220px);
    object-fit: contain;
    border-radius: 50%;
    animation: float-icon 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--glow));
    max-width: 100%;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Feature Cards - CORREGIDAS para no salirse */
.features {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.feature-card {
    position: absolute;
    padding: 0.8rem 1.2rem;
    background: rgba(42, 39, 35, 0.9);
    border: 1px solid rgba(201, 162, 77, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float-card 3s ease-in-out infinite;
    font-size: 0.85rem;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 3;
}

.feature-card i {
    font-size: 1.2rem;
    color: var(--accent-1);
    flex-shrink: 0;
}

.feature-card span {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
}

/* POSICIONES AJUSTADAS para no salirse */
.feature-1 {
    top: 15%;
    left: -10px;
    animation-delay: 0s;
}

.feature-2 {
    top: 55%;
    right: -10px;
    animation-delay: 1s;
}

.feature-3 {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
    min-width: 160px;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section - AJUSTADO para no desbordar */
.stats {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    animation: fadeInUp 1s ease-out 0.5s both;
    width: 100%;
    max-width: 100%;
}

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

.stat-item {
    text-align: center;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(42, 39, 35, 0.6);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
    box-shadow: 0 10px 40px rgba(201, 162, 77, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.stat-label {
    color: var(--text-secondary);
    font-size: clamp(0.7rem, 1.3vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Desktop grande - pero con límites */
@media (min-width: 1200px) {
    .hero {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .feature-1 {
        left: -20px;
    }
    
    .feature-2 {
        right: -20px;
    }
}

/* Tablet Landscape - 1024px y menos */
@media (max-width: 1024px) {
    .container {
        padding: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: clamp(2rem, 3vw, 2.5rem);
        max-width: min(800px, 90vw);
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: min(600px, 90vw);
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .perfume-showcase {
        height: clamp(250px, 35vw, 400px);
    }

    .feature-card {
        position: relative;
        display: inline-block;
        margin: 0.5rem;
        max-width: 160px;
    }

    .features {
        position: relative;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
        height: auto;
    }

    .feature-1, .feature-2, .feature-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 0.5rem;
    }
}

/* Tablet - 768px y menos */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .hero {
        padding: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
        line-height: 1.5;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .perfume-showcase {
        height: clamp(200px, 40vw, 350px);
    }

    .circle-1 {
        width: clamp(160px, 30vw, 280px);
        height: clamp(160px, 30vw, 280px);
    }
    
    .circle-2 {
        width: clamp(130px, 25vw, 220px);
        height: clamp(130px, 25vw, 220px);
    }
    
    .circle-3 {
        width: clamp(100px, 20vw, 180px);
        height: clamp(100px, 20vw, 180px);
    }

    .logo-aron {
        width: clamp(100px, 20vw, 180px);
        height: clamp(100px, 20vw, 180px);
    }

    .features {
        display: none; /* Ocultamos en móvil para más espacio */
    }
}

/* Mobile - 480px y menos */
@media (max-width: 480px) {
    .container {
        padding: 0;
    }

    .hero {
        padding: 1rem 0.75rem;
    }

    .hero {
        gap: 1.5rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        max-width: 100%;
    }

    .perfume-showcase {
        height: 200px;
    }

    .circle-1 { width: 160px; height: 160px; }
    .circle-2 { width: 130px; height: 130px; }
    .circle-3 { width: 100px; height: 100px; }

    .logo-aron {
        width: 90px;
        height: 90px;
    }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* Mobile muy pequeño - 320px y menos */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-2), var(--accent-1));
}

/* Selection */
::selection {
    background: var(--accent-1);
    color: var(--primary);
}

/* Prevenir desbordamiento horizontal */
img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

/* Asegurar que los textos largos se rompan */
h1, h2, h3, h4, h5, h6, p, span, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Evitar zoom en iOS */
input, textarea, select, button {
    font-size: 16px;
}

/* Forzar que nada se salga */
* {
    max-width: 100%;
    box-sizing: border-box;
}