/* --- VARIABLES & RESET --- */
:root {
    --bg-app: #F2F2F7;
    --bg-card: #FFFFFF;
    --text-main: #1C1C1E;
    --text-muted: #8E8E93;
    --accent: #d0191f;
    --accent-glow: rgba(208, 25, 31, 0.15);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.04);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
    
    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
    margin: 0; padding: 0;
    font-family: var(--font-sans);
    background-color: var(--bg-app);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: 100px;
}

/* --- UTILS --- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* --- HEADER --- */
.glass-header {
    position: absolute;
    top: 15px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 30px); max-width: 960px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 100px;
    padding: 10px 30px; 
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex; justify-content: center;
}
.header-content {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.logo img { 
    height: auto; 
    max-height: 75px; 
    width: auto; 
    max-width: 240px;
    display: block; 
}
.header-status {
    font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
}
.status-dot {
    width: 8px; height: 8px; background: #34C759; border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.2);
}

/* --- HERO SECTION --- */
.hero-2026 {
    padding-top: 160px; padding-bottom: 60px; text-align: center;
}
.badge-pill {
    display: inline-block; background: #000; color: #fff;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.headline-xl {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
    margin: 0 0 24px 0;
}
.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.lead-text {
    font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px;
}
.hero-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 0 28px; height: 56px; border-radius: 100px;
    font-weight: 600; font-size: 1rem; transition: transform 0.1s;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
    background: var(--text-main); color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-glass {
    background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.1);
}
/* NEU: WhatsApp Button Style */
.btn-wa-hero {
    background: #25D366; color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}
.btn-wa-hero:hover {
    background: #1ebc57;
}

/* --- BENTO GRID SYSTEM --- */
.bento-section { margin-bottom: 60px; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.bento-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    padding: 24px; position: relative; overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}
.bento-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* Grid Placement */
.card-location { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.card-hours    { grid-column: span 2; }
.card-parking  { grid-column: span 1; }
.card-whatsapp { grid-column: span 1; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; }
.card-google   { grid-column: span 2; display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; }

/* Styles */
.card-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.arrow-link { font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.address-block { margin-bottom: 20px; font-size: 1.1rem; }
.address-block strong { display: block; font-size: 1.5rem; }
.map-preview-static {
    background: #e5e5ea; flex-grow: 1; border-radius: var(--radius-md); min-height: 180px;
    position: relative; cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23ddd" width="100" height="100"/><path stroke="%23fff" stroke-width="3" d="M-10 30 L110 50 M30 -10 L50 110"/></svg>');
}
.map-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.05);
    display: flex; align-items: center; justify-content: center;
}
.map-hidden { display: none; }
#interactive-map { flex-grow: 1; border-radius: var(--radius-md); min-height: 180px; overflow: hidden; }

.hours-display {
    display: flex; justify-content: space-between; align-items: flex-end; margin: 12px 0;
}
.hours-display .time { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.sub-note { font-size: 0.85rem; color: #34C759; font-weight: 600; background: rgba(52, 199, 89, 0.1); padding: 4px 8px; border-radius: 6px; }

.parking-graphic { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.p-sign {
    background: #007AFF; color: white; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-weight: bold;
}
.free-badge { color: #007AFF; font-weight: 700; font-size: 0.9rem; }
.parking-info strong { font-size: 1.1rem; display: block; line-height: 1.2; }
.parking-info p { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0 0 0; }

.wa-content { display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 600; width: 100%; }
.wa-text { font-size: 0.9rem; line-height: 1.3; }

.g-logo { 
    width: 24px; height: 24px; background: white; border-radius: 50%; color: #4285F4; 
    display: flex; align-items: center; justify-content: center; font-weight: bold; 
}

/* --- FAQ & FOOTER --- */
.section-spacer { margin-bottom: 80px; }
.section-title { font-size: 1.8rem; margin-bottom: 24px; }
details {
    background: var(--bg-card); padding: 20px; border-radius: var(--radius-md);
    margin-bottom: 12px; transition: all 0.2s;
}
details[open] { background: white; box-shadow: var(--shadow-soft); }
summary { font-weight: 600; cursor: pointer; list-style: none; position: relative; padding-right: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+'; position: absolute; right: 0; font-weight: 300; font-size: 1.5rem; line-height: 1;
}
details[open] summary::after { content: '−'; transform: rotate(180deg); }
details p { margin: 12px 0 0 0; color: var(--text-muted); line-height: 1.6; }

footer { background: #E5E5EA; padding: 40px 0 120px; text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.legal-links a { color: var(--text-main); font-weight: 500; }
.sep { margin: 0 8px; }
.disclaimer { margin-top: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- MOBILE DOCK --- */
.mobile-dock {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: #1C1C1E; color: white;
    padding: 8px 12px; border-radius: 100px;
    display: flex; gap: 8px; align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
}
.dock-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 60px; height: 50px; border-radius: 16px; transition: background 0.2s;
}
.dock-item:active { background: rgba(255,255,255,0.15); }
.dock-item .icon { font-size: 1.2rem; margin-bottom: 2px; }
.dock-item .label { font-size: 0.6rem; font-weight: 500; opacity: 0.8; }
.dock-item.main-action {
    background: var(--accent); width: 64px; height: 64px; margin: -20px 4px 0; border-radius: 20px;
    box-shadow: 0 8px 20px rgba(208, 25, 31, 0.4);
}
.dock-item.main-action .icon { font-size: 1.5rem; margin-bottom: 0; }
.dock-item.main-action .label { display: none; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .card-location { grid-column: span 2; }
    .card-hours { grid-column: span 2; }
    .card-parking { grid-column: span 1; }
    .card-whatsapp { grid-column: span 1; }
    .card-google { grid-column: span 2; }
    
    .headline-xl { font-size: 2.2rem; }
    
    .glass-header { 
        top: 10px; width: calc(100% - 20px); padding: 8px 16px; 
    }
    .logo img { max-height: 55px; } 
    .header-status { font-size: 0.75rem; }
    
    .hero-2026 { padding-top: 140px; }
}