:root {
--yellow: #ffffff;
--yellow-bright: #fff3f3;
--red: #ff2f31;
--red-bright: #ff2f31;
--dark: #111111;
--card: #161616;
--border: rgba(255,215,0,0.15);
--text: #F0F0F0;
--muted: #888;
--radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
background: var(--red);
color: var(--black);
font-family: 'DM Sans', sans-serif;
overflow-x: hidden;
line-height: 1.6;
}

/* ── NOISE OVERLAY ── */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 0;
opacity: 0.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: var(--red);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
font-family: 'Unbounded', sans-serif;
font-size: 1.6rem;
font-weight: 900;
color: var(--yellow);
letter-spacing: -1px;
text-decoration: none;
}
.logo span { color: var(--text); }

nav a.nav-link {
color: var(--muted);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.2s;
}
nav a.nav-link:hover { color: var(--yellow); }

/* ── HERO ── */
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 140px 24px 80px;
overflow: hidden;
}

.hero-glow {
position: absolute;
width: 700px; height: 700px;
background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
top: 50%; left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255,215,0,0.1);
border: 1px solid rgba(255,215,0,0.3);
border-radius: 50px;
padding: 8px 18px;
font-size: 0.78rem;
font-weight: 500;
color: var(--yellow);
letter-spacing: 0.05em;
text-transform: uppercase;
margin-bottom: 28px;
animation: fadeUp 0.8s ease both;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero h1 {
font-family: 'Unbounded', sans-serif;
font-size: clamp(2.8rem, 7vw, 6rem);
font-weight: 900;
line-height: 1.05;
letter-spacing: -2px;
margin-bottom: 24px;
animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 .accent { color: var(--yellow); display: block; }

.hero p.sub {
font-size: clamp(1rem, 2vw, 1.2rem);
color: var(--muted);
max-width: 520px;
margin: 0 auto 48px;
font-weight: 300;
animation: fadeUp 0.8s 0.2s ease both;
}

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

/* ── BUTTONS GRID ── */
.buttons-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
max-width: 640px;
width: 100%;
animation: fadeUp 0.8s 0.3s ease both;
}

.btn {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
padding: 22px 24px;
border-radius: var(--radius);
text-decoration: none;
cursor: pointer;
border: none;
transition: transform 0.2s, box-shadow 0.2s;
overflow: hidden;
text-align: left;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-icon {
font-size: 1.6rem;
margin-bottom: 4px;
}

.btn-label {
font-family: 'Unbounded', sans-serif;
font-size: 0.8rem;
font-weight: 700;
line-height: 1.3;
text-transform: uppercase;
letter-spacing: 0.02em;
}

.btn-desc {
font-size: 0.78rem;
font-weight: 300;
opacity: 0.75;
line-height: 1.4;
}

/* Primary - yellow */
.btn-primary {
background: var(--yellow);
color: var(--black);
box-shadow: 0 8px 32px rgba(255,215,0,0.3);
grid-column: span 2;
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(255,215,0,0.45); }
.btn-primary .btn-desc { opacity: 0.6; }

/* Secondary */
.btn-secondary {
background: var(--card);
color: var(--text);
border: 1px solid var(--border);
box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.btn-secondary:hover { border-color: rgba(255,215,0,0.4); background: #1c1c1c; }

/* WhatsApp */
.btn-whatsapp {
background: linear-gradient(135deg, #1a3a1a, #0f2d0f);
color: #4ade80;
border: 1px solid rgba(74,222,128,0.2);
}
.btn-whatsapp:hover { border-color: rgba(74,222,128,0.4); }

/* Shimmer effect */
.btn-primary::after {
content: '';
position: absolute;
top: -50%; left: -60%;
width: 40%; height: 200%;
background: rgba(255,255,255,0.2);
transform: skewX(-20deg);
transition: left 0.5s;
}
.btn-primary:hover::after { left: 130%; }

/* ── SECTIONS ── */
section {
position: relative;
z-index: 1;
padding: 100px 24px;
}

.section-inner {
max-width: 1100px;
margin: 0 auto;
}

.section-eyebrow {
font-family: 'Unbounded', sans-serif;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--yellow);
margin-bottom: 16px;
}

.section-title {
font-family: 'Unbounded', sans-serif;
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 900;
letter-spacing: -1px;
line-height: 1.1;
margin-bottom: 16px;
}

.section-sub {
color: var(--muted);
font-size: 1rem;
max-width: 480px;
margin-bottom: 56px;
font-weight: 300;
}

/* ── LOCATIONS ── */
#ubicaciones { background: var(--dark); }

.locations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}

.location-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 20px;
overflow: hidden;
transition: transform 0.3s, border-color 0.3s;
}
.location-card:hover {
transform: translateY(-6px);
border-color: rgba(255,215,0,0.35);
}

.location-map {
width: 100%;
height: 200px;
object-fit: cover;
background: #1a1a1a;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
position: relative;
overflow: hidden;
}

.location-map iframe {
width: 100%; height: 100%;
border: none;
filter: grayscale(0.3) invert(1) hue-rotate(180deg) brightness(0.85);
}

.location-map-placeholder {
width: 100%; height: 200px;
background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 2.5rem;
color: var(--yellow);
}
.location-map-placeholder span {
font-size: 0.75rem;
font-family: 'DM Sans', sans-serif;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.1em;
}

.location-info {
padding: 20px 24px 24px;
}

.location-tag {
display: inline-block;
background: rgba(255,215,0,0.1);
color: var(--yellow);
border-radius: 6px;
padding: 3px 10px;
font-size: 0.72rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 10px;
}

.location-name {
font-family: 'Unbounded', sans-serif;
font-size: 1rem;
font-weight: 700;
margin-bottom: 6px;
line-height: 1.3;
}

.location-address {
color: var(--muted);
font-size: 0.85rem;
display: flex;
align-items: flex-start;
gap: 6px;
}
.location-address::before { content: '📍'; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

.location-hours {
color: #4ade80;
font-size: 0.8rem;
margin-top: 10px;
display: flex;
align-items: center;
gap: 6px;
}
.location-hours::before { content: '🕐'; font-size: 0.75rem; }

.location-cta {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 16px;
padding: 10px 18px;
background: rgba(255,215,0,0.08);
border: 1px solid rgba(255,215,0,0.2);
border-radius: 8px;
color: var(--yellow);
font-size: 0.82rem;
font-weight: 600;
text-decoration: none;
transition: background 0.2s, border-color 0.2s;
}
.location-cta:hover { background: rgba(255,215,0,0.15); border-color: rgba(255,215,0,0.4); }

/* ── CONTACT ── */
#contacto {
background: var(--black);
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start;
}

.contact-cards {
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 24px 28px;
display: flex;
align-items: center;
gap: 20px;
transition: transform 0.2s, border-color 0.2s;
text-decoration: none;
color: inherit;
}
.contact-card:hover { transform: translateX(4px); border-color: rgba(255,215,0,0.35); }

.contact-card-icon {
width: 52px; height: 52px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
flex-shrink: 0;
}
.icon-yellow { background: rgba(255,215,0,0.12); }
.icon-green { background: rgba(74,222,128,0.12); }
.icon-blue { background: rgba(96,165,250,0.12); }

.contact-card-info {}
.contact-card-label {
font-size: 0.75rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 500;
margin-bottom: 4px;
}
.contact-card-value {
font-family: 'Unbounded', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: var(--text);
}
.contact-card-sub {
font-size: 0.78rem;
color: var(--muted);
margin-top: 2px;
}

.contact-divider {
height: 1px;
background: var(--border);
margin: 8px 0;
}

/* Hours table */
.hours-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px;
}
.hours-title {
font-family: 'Unbounded', sans-serif;
font-size: 0.85rem;
font-weight: 700;
margin-bottom: 20px;
color: var(--yellow);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.hours-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid var(--border);
font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { font-weight: 500; color: var(--text); }
.hours-time.open { color: #4ade80; }
.hours-time.closed { color: #f87171; }

/* ── FOOTER ── */
footer {
background: var(--dark);
border-top: 1px solid var(--border);
padding: 40px 24px;
text-align: center;
}
.footer-inner {
max-width: 800px;
margin: 0 auto;
}
.footer-logo {
font-family: 'Unbounded', sans-serif;
font-size: 1.4rem;
font-weight: 900;
color: var(--yellow);
margin-bottom: 12px;
}
footer p {
color: var(--muted);
font-size: 0.82rem;
}

/* ── DIVIDER ── */
.section-divider {
height: 1px;
background: linear-gradient(90deg, transparent, var(--border), transparent);
margin: 0 40px;
}

/* ── FLOATING CTA ── */
.floating-cta {
position: fixed;
bottom: 28px;
right: 28px;
z-index: 90;
display: flex;
flex-direction: column;
gap: 10px;
align-items: flex-end;
}

.float-btn {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 20px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 0.85rem;
box-shadow: 0 8px 24px rgba(0,0,0,0.4);
transition: transform 0.2s, box-shadow 0.2s;
animation: fadeUp 0.6s ease both;
}
.float-btn:hover { transform: scale(1.05); }

.float-wa {
background: #25D366;
color: #fff;
animation-delay: 0.6s;
}
.float-app {
background: var(--yellow);
color: var(--black);
animation-delay: 0.7s;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: var(--muted);
font-size: 0.72rem;
text-transform: uppercase;
letter-spacing: 0.1em;
animation: fadeIn 1s 1s ease both;
}
@keyframes fadeIn { from{opacity:0}to{opacity:1} }

.scroll-line {
width: 1px;
height: 40px;
background: linear-gradient(to bottom, var(--yellow), transparent);
animation: scrollPulse 1.5s infinite;
}
@keyframes scrollPulse {
0%,100%{opacity:0.4}50%{opacity:1}
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
nav { padding: 16px 20px; }
nav .nav-links { display: none; }
.hero { padding: 120px 20px 60px; }
.buttons-grid { grid-template-columns: 1fr; }
.btn-primary { grid-column: span 1; }
.contact-layout { grid-template-columns: 1fr; }
.floating-cta { bottom: 20px; right: 16px; }
.float-btn span.float-label { display: none; }
section { padding: 70px 20px; }
}