/* ══════════════════════════════════════════════════════
   CATÁLOGO LUPITA — Design System & Styles
   ══════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────── */
:root {
    /* Colors */
    --clr-bg:           #f6f8fb;
    --clr-bg-secondary: #ffffff;
    --clr-surface:      #ffffff;
    --clr-surface-hover:#eef4fb;
    --clr-border:       #dbe4ee;
    --clr-text:         #172033;
    --clr-text-muted:   #64748b;
    --clr-accent:       #2563eb;
    --clr-accent-light: #60a5fa;
    --clr-accent-dark:  #1d4ed8;
    --clr-accent-rgb:   37, 99, 235;
    --clr-overlay:      rgba(15, 23, 42, 0.84);
    --clr-soft-shadow:  rgba(15, 23, 42, 0.08);

    /* Typography */
    --ff-heading: 'Outfit', sans-serif;
    --ff-body:    'Inter', sans-serif;

    /* Spacing */
    --sidebar-width: 240px;
    --sidebar-collapsed: 72px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: var(--ff-body);
    background:
        linear-gradient(180deg, #ffffff 0%, var(--clr-bg) 360px),
        var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* ─── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-accent);
}


/* ══════════════════════════════════════════════════════
   SIDEBAR NAVIGATION
   ══════════════════════════════════════════════════════ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--clr-bg-secondary);
    border-right: 1px solid var(--clr-border);
    box-shadow: 12px 0 32px var(--clr-soft-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    z-index: 100;
    transition: transform 0.4s var(--ease-out);
}

.sidebar-logo {
    width: calc(100% - 32px);
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 40px;
    background: var(--clr-surface-hover);
    border: 1px dashed var(--clr-border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.sidebar-logo:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 10px 28px rgba(var(--clr-accent-rgb), 0.12);
}

.sidebar-logo img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.logo-placeholder {
    font-family: var(--ff-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.sidebar-nav {
    list-style: none;
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--ff-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: stroke 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--clr-text);
    background: var(--clr-surface-hover);
}

.nav-link.active {
    color: var(--clr-accent);
    background: rgba(var(--clr-accent-rgb), 0.08);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--clr-accent);
    border-radius: 0 3px 3px 0;
}

/* ─── Mobile Header ─────────────────────────────────── */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    z-index: 99;
    align-items: center;
    padding: 0 20px;
}

.mobile-menu-btn {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-brand {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 16px;
    color: var(--clr-accent);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
}


/* ══════════════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════════════ */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.section {
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ══════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════ */
.hero-section {
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(var(--clr-accent-rgb), 0.1) 0%, transparent 58%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--clr-accent);
    border-radius: 50px;
    font-family: var(--ff-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-accent {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.location-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--clr-accent-rgb), 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.location-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(var(--clr-accent-rgb), 0.12);
}

.location-card:hover::before {
    opacity: 1;
}

.location-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--clr-accent-rgb), 0.1);
    border-radius: 50%;
}

.location-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--clr-accent);
}

.location-name {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-address {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-accent);
    transition: gap 0.3s var(--ease-out);
}

.location-link svg {
    width: 14px;
    height: 14px;
}

.location-link:hover {
    gap: 10px;
}

.location-card--map {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.location-card--map .location-name {
    margin-bottom: 4px;
}

.location-card--map .location-address {
    margin-bottom: 0;
}

.map-container {
    margin-top: 16px;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--clr-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(35%) saturate(105%) brightness(105%);
    transition: filter 0.3s var(--ease-out);
}

.location-card--map:hover .map-container iframe {
    filter: grayscale(0%) saturate(110%) brightness(105%);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--ff-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out);
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: var(--clr-bg);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(var(--clr-accent-rgb), 0.24);
}

.cta-btn:hover svg {
    transform: translateY(3px);
}

.cta-btn--outline {
    background: transparent;
    color: var(--clr-accent);
    border: 1.5px solid var(--clr-accent);
}

.cta-btn--outline:hover {
    background: rgba(var(--clr-accent-rgb), 0.08);
    box-shadow: 0 12px 40px rgba(var(--clr-accent-rgb), 0.14);
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(var(--clr-accent-rgb), 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-decoration--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}


/* ══════════════════════════════════════════════════════
   CATALOG SECTIONS (Sillas / Mesas)
   ══════════════════════════════════════════════════════ */
.catalog-section {
    min-height: auto;
    padding-bottom: 100px;
}

.section-header {
    margin-bottom: 48px;
    position: relative;
}

.section-label {
    font-family: var(--ff-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.section-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    font-weight: 300;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), transparent);
    border-radius: 3px;
    margin-top: 20px;
}


/* ─── Gallery Grid ──────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px var(--clr-soft-shadow);
    transition: all 0.4s var(--ease-out);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
    transform: translateY(-6px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    stroke: var(--clr-text);
}

.gallery-overlay span {
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ─── Product Card & Colors ─────────────────────────── */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    color: var(--clr-text);
}

.color-swatches {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--clr-surface);
    box-shadow: 0 0 0 1px var(--clr-border);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    padding: 0;
}

.color-swatch:hover {
    transform: scale(1.15);
}

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--clr-accent);
    transform: scale(1.15);
}



/* ══════════════════════════════════════════════════════
   CAROUSEL / LIGHTBOX MODAL
   ══════════════════════════════════════════════════════ */
.carousel-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.carousel-modal.active {
    opacity: 1;
    visibility: visible;
}

.carousel-backdrop {
    position: absolute;
    inset: 0;
    background: var(--clr-overlay);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close button */
.carousel-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s var(--ease-out);
}

.carousel-close svg {
    width: 22px;
    height: 22px;
}

.carousel-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

/* Navigation arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s var(--ease-out);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-arrow:hover {
    background: rgba(var(--clr-accent-rgb), 0.15);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.carousel-arrow--prev {
    left: 24px;
}

.carousel-arrow--next {
    right: 24px;
}

/* Image wrapper with zoom */
.carousel-image-wrapper {
    position: relative;
    width: calc(100% - 160px);
    height: calc(100% - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.carousel-image-wrapper.grabbing {
    cursor: grabbing;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s var(--ease-out);
    transform-origin: center center;
    pointer-events: none;
}

.carousel-image.zoomed {
    transition: none;
}

/* Counter */
.carousel-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: rgba(15, 23, 42, 0.72);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

/* Zoom hint */
.zoom-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    background: rgba(15, 23, 42, 0.72);
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s var(--ease-out);
}

.zoom-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.zoom-hint svg {
    width: 16px;
    height: 16px;
}


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

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Scroll reveal for gallery items */
.gallery-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
                border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-item:nth-child(6) { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════════════════════════ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 900;
    cursor: pointer;
    text-decoration: none;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.whatsapp-label {
    background: var(--clr-surface);
    color: var(--clr-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--clr-soft-shadow);
    border: 1px solid var(--clr-border);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ease-out);
}

.floating-whatsapp:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
    border-color: #25D366;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.floating-whatsapp:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .sidebar {
        left: auto;
        right: 0;
        width: min(82vw, 300px);
        align-items: stretch;
        padding: 24px 0;
        border-right: 0;
        border-left: 1px solid var(--clr-border);
        transform: translateX(100%);
        box-shadow: none;
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: -18px 0 44px rgba(15, 23, 42, 0.18);
    }

    .sidebar-logo {
        width: auto;
        margin: 0 20px 32px;
    }

    .sidebar-nav {
        padding: 0 20px;
    }

    .nav-link {
        min-height: 52px;
        padding: 15px 18px;
        font-size: 1rem;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        order: 2;
    }

    .mobile-brand {
        order: 1;
        margin-left: 0;
    }

    .mobile-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-overlay.active {
        pointer-events: auto;
    }

    .main-content {
        margin-left: 0;
    }

    .section {
        padding: 100px 40px 60px;
    }

    .hero-section {
        padding-top: 80px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }

    .carousel-arrow--prev { left: 12px; }
    .carousel-arrow--next { right: 12px; }

    .carousel-image-wrapper {
        width: calc(100% - 100px);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .section {
        padding: 80px 20px 40px;
    }

    .hero-section {
        padding-top: 80px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        letter-spacing: -1px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-arrow--prev { left: 8px; }
    .carousel-arrow--next { right: 8px; }

    .carousel-image-wrapper {
        width: calc(100% - 70px);
        height: calc(100% - 100px);
    }

    .carousel-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

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

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-label {
        opacity: 1;
        transform: translateX(0);
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
}
