/* ==========================================================================
   Tchê Urbano - Design System & Ultra-Responsive CSS Architecture
   Theme: Identidade real da marca — Vermelho-Vinho + Areia (#FAF6F1)
   Breakpoints: 1920px, 1440px, 1280px, 1024px, 768px, 640px, 480px, 360px, 320px
   ========================================================================== */

@font-face {
    font-family: 'Aleo';
    src: url('assets/fonts/Aleo-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aleo';
    src: url('assets/fonts/Aleo-Italic-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Color Tokens */
    --bg-main: #FAF6F1;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F3ECE4;
    --bg-navbar: rgba(250, 246, 241, 0.94);

    --primary: #821512;
    --primary-hover: #641009;
    --primary-glow: rgba(130, 21, 18, 0.16);

    --accent-gold: #B8860B;
    --accent-gold-hover: #96700A;
    --accent-whatsapp: #25D366;
    --accent-whatsapp-hover: #128C7E;

    --text-main: #241512;
    --text-muted: #7A6F68;
    --text-on-dark: #FDF8F3;
    --text-on-primary: #FFFFFF;

    --border-color: rgba(34, 21, 18, 0.12);
    --border-highlight: rgba(130, 21, 18, 0.35);

    --font-heading: 'Aleo', Georgia, serif;
    --font-body: 'Aleo', Georgia, serif;

    /* Radii Scale */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px -10px rgba(34, 21, 18, 0.18);
    --shadow-glow: 0 0 25px var(--primary-glow);

    /* Touch Targets */
    --min-touch-target: 44px;
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reset & Base Styles - Zero Overflow */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* Typography & Fluid Sizes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    word-break: break-word;
}

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

.text-gradient {
    background: linear-gradient(135deg, #A3241F 0%, #821512 50%, #4A0C0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons & Touch Target Rules */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: var(--min-touch-target);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    touch-action: manipulation;
    user-select: none;
}

.btn:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-on-primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-whatsapp-header {
    background-color: var(--accent-whatsapp);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-header:hover {
    background-color: var(--accent-whatsapp-hover);
    transform: translateY(-1px);
}

/* Header & Navbar Architecture */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: var(--min-touch-target);
}

.logo-img {
    height: clamp(34px, 4vw, 44px);
    width: auto;
    display: block;
    object-fit: contain;
}

.badge-beta {
    font-size: 0.65rem;
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    min-width: var(--min-touch-target);
    min-height: var(--min-touch-target);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 6px 14px;
    min-height: var(--min-touch-target);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    color: var(--primary);
}

.city-selector {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.city-selector option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding: clamp(32px, 6vw, 70px) 0 clamp(24px, 4vw, 48px);
    text-align: center;
    background: radial-gradient(circle at top center, rgba(130, 21, 18, 0.08) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(130, 21, 18, 0.07);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: clamp(0.78rem, 1.2vw, 0.88rem);
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(1.85rem, 4.5vw + 0.8rem, 3.2rem);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 32px;
    padding: 0 10px;
}

/* Search Box */
.search-box {
    max-width: 620px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 6px 8px 6px 20px;
    box-shadow: 0 15px 35px rgba(34, 21, 18, 0.08);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.search-icon {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    min-width: 120px;
}

/* Hero Stats */
.hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    max-width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: clamp(0.72rem, 1vw, 0.8rem);
    color: var(--text-muted);
}

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

/* Categories Section */
.categories-section {
    padding: 16px 0 24px;
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 4px 12px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    min-height: var(--min-touch-target);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.cat-pill:hover, .cat-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Offers Grid */
.offers-section {
    padding: 20px 0 60px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw + 0.5rem, 2.1rem);
}

.section-desc {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.sort-wrapper select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 14px;
    min-height: 38px;
    border-radius: var(--radius-md);
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: clamp(16px, 2.5vw, 28px);
}

/* Offer Card */
.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.offer-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
}

.card-img-wrapper {
    position: relative;
    height: clamp(170px, 22vw, 210px);
    overflow: hidden;
}

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

.offer-card:hover .card-img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.card-badge-vip {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-highlight);
}

.card-body {
    padding: clamp(16px, 2vw, 22px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.card-title {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    margin-bottom: 8px;
    color: var(--text-main);
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex: 1;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-card-resgate {
    width: 100%;
    background-color: var(--accent-whatsapp);
    color: white;
}

.btn-card-resgate:hover {
    background-color: var(--accent-whatsapp-hover);
}

/* How It Works */
.how-it-works {
    padding: clamp(40px, 6vw, 70px) 0;
    background: rgba(130, 21, 18, 0.035);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(16px, 3vw, 30px);
    margin-top: 40px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: clamp(20px, 3vw, 30px) clamp(16px, 2vw, 24px);
    border-radius: var(--radius-lg);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(130, 21, 18, 0.08);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    margin: 0 auto 20px;
    border: 1px solid var(--border-highlight);
}

/* B2B Banner */
.b2b-banner {
    padding: clamp(36px, 5vw, 60px) 0;
}

.b2b-container {
    background: linear-gradient(135deg, #821512 0%, #430A08 100%);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 48px);
    box-shadow: 0 20px 45px -15px rgba(74, 12, 10, 0.45);
}

.b2b-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.b2b-content h2 {
    font-size: clamp(1.35rem, 3vw + 0.5rem, 2.1rem);
    margin-bottom: 14px;
    color: var(--text-on-dark);
}

.b2b-content p {
    color: rgba(253, 248, 243, 0.85);
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.btn-b2b {
    background-color: var(--accent-gold);
    color: #FFFFFF;
    font-weight: 700;
}

.btn-b2b:hover {
    background-color: var(--accent-gold-hover);
}

/* ==========================================================================
   B2B PARTNER DASHBOARD & WIZARD STYLES (parceiro.html)
   ========================================================================== */
.wizard-main-section {
    padding: clamp(30px, 5vw, 60px) 0;
}

.wizard-header {
    max-width: 720px;
    margin: 0 auto 40px;
}

.wizard-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wizard-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

.wizard-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* Stepper Component */
.stepper-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 10px;
}

.stepper-progress {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: var(--border-color);
    z-index: 1;
    transition: var(--transition);
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--bg-main);
    padding: 0 6px;
}

.step-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.step-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.step-item.active .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step-item.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

.step-item.completed .step-icon {
    background: var(--accent-whatsapp);
    border-color: var(--accent-whatsapp);
    color: white;
}

/* Grid Layout: Form + Live Preview */
.wizard-layout-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
}

.wizard-card-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: var(--shadow-card);
}

.wizard-step-pane {
    display: none;
}

.wizard-step-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.pane-header {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.pane-header h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-help {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 6px;
}

.discount-calculator-box {
    background: rgba(130, 21, 18, 0.06);
    border: 1px dashed var(--primary);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preset-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.preset-img-btn {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 6px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.preset-img-btn img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.preset-img-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

.preset-img-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pane-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
}

.btn-success-finish {
    background-color: var(--accent-whatsapp);
    color: white;
    font-size: 1rem;
    padding: 14px 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success-finish:hover {
    background-color: var(--accent-whatsapp-hover);
    transform: translateY(-2px);
}

.review-summary-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.review-summary-box h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.review-list {
    list-style: none;
}

.review-list li {
    font-size: 0.88rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Preview Sidebar */
.wizard-preview-sidebar {
    position: sticky;
    top: 90px;
}

.preview-header {
    margin-bottom: 16px;
}

.preview-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.preview-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .wizard-layout-grid {
        grid-template-columns: 1fr;
    }
    .wizard-preview-sidebar {
        position: static;
    }
    .preset-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .stepper-wrapper {
        padding: 0;
    }
    .step-label {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #1C1210;
    color: var(--text-on-dark);
    padding: clamp(40px, 6vw, 60px) 0 24px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-text {
    color: rgba(253, 248, 243, 0.65);
    font-size: 0.85rem;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-on-dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(253, 248, 243, 0.65);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-col p {
    color: rgba(253, 248, 243, 0.65);
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(253, 248, 243, 0.12);
    color: rgba(253, 248, 243, 0.5);
    font-size: 0.8rem;
}

.desktop-only { display: inline; }

/* ==========================================================================
   BREAKPOINTS & RESPONSIVE ADAPTATIONS
   ========================================================================== */

/* Tablet & Mobile Navigation (< 768px) */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 67px;
        left: 0;
        right: 0;
        background: var(--bg-main);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-location {
        justify-content: center;
        width: 100%;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 16px 20px;
    }

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

/* Mobile Small (< 480px) */
@media (max-width: 480px) {
    .search-box {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 10px;
    }

    .search-box input {
        width: 100%;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-full);
        padding: 12px 16px 12px 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .search-icon {
        position: absolute;
        left: 14px;
        top: 14px;
        z-index: 2;
    }

    .search-box {
        position: relative;
    }

    .btn-search {
        width: 100%;
        border-radius: var(--radius-full);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Micro Mobile (320px - 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}
