:root {
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --gold-dim: rgba(201, 169, 98, 0.15);
    --dark: #0a0a0a;
    --darker: #050505;
    --text: #e8e8e8;
    --text-muted: #888;
    --accent: #8b1e3f;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: var(--gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent);
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    z-index: 1001;
}
.logo span { color: var(--text); font-weight: 300; }
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}
.nav-links a {
    color: var(--text);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text);
    letter-spacing: 0.1em;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,0.95) 100%),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--darker);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(201, 169, 98, 0.02) 2px,
        rgba(201, 169, 98, 0.02) 4px
    );
}
.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(139, 30, 63, 0.15) 0%, transparent 60%);
}
.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    animation: fadeUp 1.2s ease-out;
}
.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero h1 .accent { color: var(--gold); font-weight: 400; }
.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 2rem;
    letter-spacing: 0.1em;
}
.hero-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
}
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; stroke: var(--gold); }

/* Sections */
section { padding: 8rem 4rem; position: relative; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--darker); }
.section-gradient { background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%); }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
}
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}
.container { max-width: 1200px; margin: 0 auto; }

/* Girls Grid */
.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.girl-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--gold-dim);
    transition: all 0.5s ease;
}
.girl-card:hover { border-color: rgba(201, 169, 98, 0.4); }
.girl-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.girl-card:hover .girl-card-bg { transform: scale(1.05); }
.girl-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}
.girl-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.girl-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.girl-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
}
.girl-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.girl-card:hover .girl-card-link {
    opacity: 1;
    transform: translateY(0);
}
.girl-card-link svg { width: 14px; height: 14px; }

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, transparent 100%);
    border: 1px solid var(--gold-dim);
    transition: all 0.4s ease;
}
.feature-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}
.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}
.feature-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* Service Cards (Big) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
}
.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.05); }
.service-card-content {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.4) 50%, transparent 100%);
}
.service-card-number {
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(201, 169, 98, 0.15);
    line-height: 1;
}
.service-card h3 { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 400px; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}
.service-card-link:hover { gap: 1rem; }
.service-card-link svg { width: 16px; height: 16px; }

/* Ambiente Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 30px; height: 30px; stroke: var(--gold); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.contact-info h3 { font-size: 2rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-item-content h4 { font-weight: 400; font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
.contact-item-content p { color: var(--text-muted); font-size: 0.9rem; }
.contact-hours {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-dim);
}
.contact-hours h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-item span:first-child { color: var(--text-muted); }
.contact-map {
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--gold-dim);
    overflow: hidden;
    position: relative;
}
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(1) contrast(0.9); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8944d 100%);
    color: var(--dark);
}
.btn-gold:hover { box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3); transform: translateY(-2px); color: var(--dark); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* Forms */
.form-container {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.03) 0%, transparent 100%);
    border: 1px solid var(--gold-dim);
    padding: 3rem;
}
.form-container h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* Girl Detail Page */
.girl-detail { padding-top: 120px; }
.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .separator { margin: 0 0.75rem; color: rgba(201, 169, 98, 0.3); }
.girl-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.girl-gallery { position: sticky; top: 120px; }
.girl-main-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
    margin-bottom: 1rem;
}
.girl-main-image img { width: 100%; height: 100%; object-fit: cover; }
.girl-thumbnails { display: flex; gap: 0.5rem; }
.girl-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.girl-thumbnail.active, .girl-thumbnail:hover { opacity: 1; border-color: var(--gold); }
.girl-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.girl-info h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.girl-subtitle { color: var(--gold); font-size: 1.1rem; margin-bottom: 2rem; }
.girl-motto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-muted);
    padding: 1.5rem 0;
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    margin-bottom: 2rem;
}
.girl-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gold-dim);
    margin-bottom: 2rem;
}
.stat-item {
    padding: 1.25rem;
    background: var(--dark);
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.stat-value { font-size: 1rem; }
.girl-section { margin-bottom: 2.5rem; }
.girl-section h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gold-dim);
}
.girl-section p { color: var(--text-muted); line-height: 1.9; }
.services-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.service-tag {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid var(--gold-dim);
    color: var(--text);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.service-tag:hover { border-color: var(--gold); color: var(--gold); }
.service-tag.extra { border-color: var(--accent); }
.girl-contact-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid var(--gold-dim);
    text-align: center;
}
.girl-contact-box h3 { margin-bottom: 1.5rem; }
.girl-room-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.girl-room-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 4rem;
    background: var(--darker);
    border-top: 1px solid var(--gold-dim);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); letter-spacing: 0.1em; }
.footer-legal { color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.05em; }
.footer-legal a { color: var(--text-muted); margin-left: 2rem; }
.footer-legal a:hover { color: var(--gold); }

/* Age Verification */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-overlay.hidden { display: none; }
.age-modal {
    text-align: center;
    padding: 4rem;
    max-width: 500px;
    border: 1px solid var(--gold-dim);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.03) 0%, transparent 100%);
}
.age-modal .logo { font-size: 2rem; margin-bottom: 2rem; display: block; }
.age-modal h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.age-modal p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.age-buttons { display: flex; gap: 1rem; justify-content: center; }

/* Legal Pages */
.legal-page { padding-top: 140px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal-content h2 { font-size: 1.3rem; color: var(--gold); margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; }
.legal-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; color: var(--text-muted); }
.legal-content li { margin-bottom: 0.5rem; }

/* Flash Messages */
.flash {
    position: fixed;
    top: 100px;
    right: 2rem;
    padding: 1rem 2rem;
    z-index: 1001;
    border: 1px solid;
    animation: fadeUp 0.4s ease;
}
.flash-success { background: rgba(34,139,34,0.9); border-color: #228b22; color: white; }
.flash-error { background: rgba(139,30,63,0.9); border-color: var(--accent); color: white; }

/* Similar Girls */
.similar-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gold-dim);
}
.similar-section h3 { font-size: 1.5rem; margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 1024px) {
    section { padding: 5rem 2rem; }
    .nav { padding: 1rem 2rem; }
    .services-grid, .girl-detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .girl-gallery { position: static; }
    .footer { padding: 2rem; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal a { margin: 0 1rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { letter-spacing: 0.03em; }
    .section-title { font-size: 2rem; }
    .girls-grid { grid-template-columns: 1fr; }
    .girl-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .age-modal { padding: 2rem; margin: 1rem; }
}
