/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-darkest: #0d0614;
    --plum-dark: #1a0a2e;
    --plum-mid: #2d1548;
    --plum-light: #4a2068;
    --plum-glow: #6b3090;
    --amber-dark: #8b6914;
    --amber: #c8a44e;
    --amber-light: #e8c96a;
    --amber-glow: #f0d98c;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --text-primary: #f0ead6;
    --text-secondary: #b8a8c8;
    --text-muted: #7a6890;
    --border-subtle: rgba(200, 164, 78, 0.12);
    --border-medium: rgba(200, 164, 78, 0.25);
    --shadow-gold: rgba(200, 164, 78, 0.15);
    --shadow-plum: rgba(13, 6, 20, 0.6);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--plum-darkest);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--plum-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber);
    display: block;
    margin-bottom: 16px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--plum-mid);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--amber-dark), var(--amber-light));
    border-radius: 2px;
    animation: loaderProgress 1.4s ease forwards;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(13, 6, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--plum-darkest);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--amber-light);
    background: rgba(200, 164, 78, 0.08);
}

.nav-link--cta {
    background: linear-gradient(135deg, var(--amber-dark), var(--amber));
    color: var(--plum-darkest);
    font-weight: 600;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--plum-darkest);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(107, 48, 144, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 164, 78, 0.06) 0%, transparent 50%),
        var(--plum-darkest);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(200, 164, 78, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(107, 48, 144, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(200, 164, 78, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.badge-line {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn--gold {
    background: linear-gradient(135deg, var(--amber-dark), var(--amber));
    color: var(--plum-darkest);
    box-shadow: 0 4px 24px var(--shadow-gold);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn--outline:hover {
    border-color: var(--amber);
    color: var(--amber-light);
    background: rgba(200, 164, 78, 0.06);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-main {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 6, 20, 0.4) 100%);
    border-radius: 20px;
}

.hero-image-small {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--plum-dark);
}

.hero-image-small img {
    width: 220px;
    height: 155px;
    object-fit: cover;
    display: block;
}

.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--amber);
    opacity: 0.3;
    animation: heroAccentSpin 20s linear infinite;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--amber), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.label-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--amber), transparent);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.text-gold {
    font-style: italic;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NOSOTROS ===== */
.nosotros {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(107, 48, 144, 0.12) 0%, transparent 60%),
        var(--plum-darkest);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nosotros-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.85;
}

.nosotros-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 164, 78, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.value-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.value-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nosotros-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.nosotros-img-1 img,
.nosotros-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.nosotros-img-1 {
    min-height: 320px;
}

.nosotros-img-2 {
    min-height: 200px;
}

.nosotros-accent-box {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: linear-gradient(135deg, var(--plum-mid), var(--plum-dark));
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.accent-box-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 4px;
}

.accent-box-city {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PRODUCTOS ===== */
.productos {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 50% 50% at 10% 50%, rgba(200, 164, 78, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--plum-darkest) 0%, var(--plum-dark) 50%, var(--plum-darkest) 100%);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.producto-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 10, 46, 0.6);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    display: block;
}

.producto-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border-medium);
}

.producto-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.producto-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 6, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.producto-card:hover .producto-img-overlay {
    opacity: 1;
}

.producto-img-overlay svg {
    color: var(--amber);
    transform: translateX(-8px);
    transition: var(--transition-smooth);
}

.producto-card:hover .producto-img-overlay svg {
    transform: translateX(0);
}

.producto-info {
    padding: 24px;
}

.producto-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.producto-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.producto-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 164, 78, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--amber);
}

/* ===== HORARIO ===== */
.horario {
    padding: 120px 0;
    position: relative;
    background: var(--plum-darkest);
}

.horario-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.horario-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.horario-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.horario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(26, 10, 46, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.horario-row:hover {
    border-color: var(--border-medium);
    background: rgba(26, 10, 46, 0.7);
}

.horario-dia {
    font-weight: 500;
    color: var(--text-primary);
}

.horario-hora {
    font-size: 0.9rem;
    color: var(--amber);
    font-weight: 500;
}

.horario-row--closed .horario-hora {
    color: var(--text-muted);
}

.horario-card {
    background: linear-gradient(135deg, rgba(200, 164, 78, 0.08), rgba(107, 48, 144, 0.08));
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
}

.horario-card-icon {
    color: var(--amber);
    margin-bottom: 16px;
}

.horario-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.horario-card-accent {
    color: var(--amber);
    opacity: 0.4;
}

.horario-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse 50% 40% at 90% 60%, rgba(107, 48, 144, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--plum-darkest) 0%, var(--plum-dark) 100%);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacto-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contacto-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(26, 10, 46, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.contacto-item:hover {
    border-color: var(--border-medium);
    background: rgba(26, 10, 46, 0.7);
    transform: translateX(4px);
}

.contacto-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 164, 78, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.contacto-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contacto-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contacto-item a:hover {
    color: var(--amber-light);
}

.contacto-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

/* ===== FORM ===== */
.form-card {
    background: rgba(26, 10, 46, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(13, 6, 20, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--amber);
    background: rgba(13, 6, 20, 0.8);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 164, 78, 0.1);
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--amber);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 0;
    background: var(--plum-darkest);
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--amber-dark), var(--amber));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-darkest);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 8px 24px var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .nosotros-grid {
        gap: 48px;
    }

    .horario-wrapper {
        gap: 48px;
    }

    .contacto-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(13, 6, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 14px 24px;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        justify-content: center;
    }

    .hero-image-main img {
        height: 360px;
    }

    .hero-image-small {
        left: 16px;
        bottom: -16px;
    }

    .hero-image-small img {
        width: 160px;
        height: 112px;
    }

    .hero-stats {
        gap: 16px;
    }

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

    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nosotros-img-grid {
        order: -1;
    }

    .nosotros-accent-box {
        right: 16px;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .horario-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .horario-visual {
        order: -1;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px)
{
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .form-card {
        padding: 24px;
    }

    .productos-grid {
        gap: 16px;
    }
}
