/* Variaveis Globais - Design Industrial Modern Bold */
:root {
    --primary-yellow: #FDB813;
    --primary-yellow-hover: #e0a311;
    --dark-bg: #1A1A1A;
    --dark-alt: #2A2A2A;
    --light-bg: #FFFFFF;
    --gray-bg: #F5F5F5;
    --soft-bg: #FCFAF4;
    --soft-card: #FFFDF7;
    --border-soft: #E8E1D3;
    --text-primary: #1A1A1A;
    --text-secondary: #757575;
    --text-light: #F0F0F0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Espaçamento */
    --padding-section: 80px 0;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.color-yellow {
    color: var(--primary-yellow);
}

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

.section {
    padding: var(--padding-section);
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--light-bg);
}
.section-dark .divider {
    background-color: var(--primary-yellow);
}

.section-gray {
    background-color: var(--gray-bg);
}

/* Títulos das Seções */
.section-heading {
    margin-bottom: 50px;
}
.section-heading h2 {
    font-size: 2.2rem;
    color: inherit;
}
.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-yellow);
    margin: 15px auto;
}

/* Botões - Geometria Rígida */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: var(--primary-yellow-hover);
    color: var(--dark-bg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

.btn-outline:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-dark {
    background-color: var(--dark-bg);
    color: var(--primary-yellow);
}

.btn-dark:hover {
    background-color: #000;
}

.btn-yellow-text {
    background-color: transparent;
    color: var(--primary-yellow);
    font-weight: 800;
    padding: 10px 0;
}

.btn-yellow-text i {
    margin-left: 5px;
}

.btn-yellow-text:hover {
    color: var(--primary-yellow-hover);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* --- HEADER DUPLO --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Topbar */
.topbar {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact span {
    margin-right: 20px;
}
.top-contact i {
    color: var(--primary-yellow);
    margin-right: 5px;
}
.top-social a {
    margin-left: 15px;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}
.top-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--light-bg);
    border-bottom: 1px solid #EAEAEA;
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
    height: 55px; /* Altura ideal para o navbar */
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
}
.nav-links li a:hover {
    color: var(--primary-yellow);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 760px;
    background: url('./assets/fachada-bigcasa.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.30) 100%);
    z-index: 1;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 10px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content-left {
    text-align: left;
    color: var(--light-bg);
    max-width: 720px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 22px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.45);
}

.hero-subtitle {
    font-size: 1.18rem;
    max-width: 640px;
    margin: 0 0 26px;
    color: var(--text-light);
    font-weight: 400;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--light-bg);
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-proof i {
    color: var(--primary-yellow);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-mascot-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 100%;
    pointer-events: none;
}

.hero-mascot {
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0,0,0,0.38));
}

/* --- ESTATÍSTICAS / STATS BOX --- */
.stats-section {
    position: relative;
    z-index: 20;
    margin-top: -60px; /* Sobrepõe a imagem do Hero */
    padding-bottom: 40px;
}
.stats-box {
    background: linear-gradient(to bottom, #ffffff, #fcfaf4);
    border: 1px solid var(--border-soft);
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-bottom: 4px solid var(--primary-yellow);
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.stat-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 10px;
}
/* Gradientes do Tailwind refeitos na paleta Industrial-Bold */
.stat-item:nth-child(even) .stat-value {
    color: var(--primary-yellow);
}
.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CTA BAR --- */
.cta-bar.bg-yellow {
    background-color: var(--primary-yellow);
    padding: 20px 0;
}
.offer-highlight {
    display: grid;
    grid-template-columns: 230px 130px 1fr 240px;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.offer-badge {
    background-color: var(--dark-bg);
    color: var(--primary-yellow);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.offer-badge span {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.offer-badge small {
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffe29a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-product-image img {
    max-height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
}

.offer-info h3 {
    font-size: 1.85rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.offer-info p {
    font-size: 1.05rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.5;
}

.offer-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #8a1f11;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.offer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2a2a2a;
}

.offer-meta i {
    color: var(--dark-bg);
}

.offer-action {
    display: flex;
    justify-content: flex-end;
}

.btn-offer {
    width: 100%;
    max-width: 220px;
    text-align: center;
    font-size: 1rem;
    padding: 18px 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.btn-offer i {
    margin-left: 8px;
}

.btn-offer:hover {
    transform: translateY(-2px);
}

/* --- CATEGORIAS --- */
.grid {
    display: grid;
    gap: 30px;
}
.categories-grid {
    grid-template-columns: repeat(3, 1fr);
}
.categories-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fcfaf4 100%);
}

.category-card {
    position: relative;
    background-color: var(--soft-card);
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
    border-color: #e2c978;
}

.destaque-card {
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 7px 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.tag-dark {
    background-color: var(--dark-bg);
    color: var(--primary-yellow);
}

.card-img-placeholder {
    height: 240px;
    background-color: var(--dark-alt);
    background-position: center;
    background-size: cover;
    position: relative;
}

.card-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.04));
}

#img-floors { background-image: url('./assets/floors.png'); }
#img-plumbing { background-image: url('./assets/plumbing.png'); }
#img-paint { background-image: url('./assets/paint.png'); }
#img-bath { background-image: url('./assets/bath.png'); }
#img-tools { background-image: url('./assets/tools.png'); }
#img-roof { background-image: url('./assets/roof.png'); }

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.08rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
}

.card-body h3 i {
    margin-top: 2px;
    font-size: 1rem;
}

.highlight {
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
    line-height: 1.4;
}

.benefits {
    font-size: 0.92rem;
    margin-bottom: 18px;
    color: #5a5a5a;
    line-height: 1.6;
}

.btn-small {
    padding: 12px 18px;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
}

/* --- COMO FUNCIONA --- */
.how-it-works-section {
    background: linear-gradient(to bottom, #ffffff, #fcfaf4);
}

.how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.how-card {
    text-decoration: none;
    background-color: var(--soft-card);
    border: 1px solid var(--border-soft);
    padding: 35px 25px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: block;
    color: var(--text-primary);
    cursor: pointer;
}

.how-card:hover,
.how-card:focus {
    background-color: var(--dark-bg);
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.14);
    color: var(--light-bg);
}

.how-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--dark-bg);
    transition: color 0.3s ease;
}

.how-card p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.how-card:hover h3,
.how-card:focus h3,
.how-card:hover p,
.how-card:focus p {
    color: var(--light-bg);
}

.how-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    background-color: var(--dark-bg);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.how-card:hover .how-icon,
.how-card:focus .how-icon {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.how-it-works-cta {
    margin-top: 32px;
}

/* --- MARCAS --- */
.brands-section {
    background: linear-gradient(to bottom, #fcfaf4 0%, #ffffff 100%);
    overflow: hidden;
}

.brands-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    margin-top: 8px;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    animation: brandsScroll 28s linear infinite;
}

.brands-wrapper:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 auto;
    width: 180px;
    height: 96px;
    background-color: var(--soft-card);
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.10);
    border-color: #e2c978;
}

.brand-item img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.88;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes brandsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- DIFERENCIAIS --- */
.diff-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.diff-item {
    padding: 20px;
}
.icon-box {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    transition: 0.3s ease;
}
.diff-item:hover .icon-box {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}
.diff-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.diff-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- ABOUT / SOCIAL PROOF --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.img-about-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--gray-bg);
    background: url('./assets/about-img.png') center/cover;
    position: relative;
}
.img-about-placeholder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-yellow);
    z-index: -1;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}
.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.check-list {
    margin-bottom: 30px;
}
.check-list li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-bg);
}
.check-list i {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 18px;
    border: 1px solid var(--border-soft);
    background: var(--soft-card);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-bg);
    transition: background 0.3s;
}
.faq-btn:hover, .faq-btn.active {
    background-color: #fff4cf;
}
.faq-content {
    display: none;
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- ONDE ESTAMOS --- */
.location-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fcfaf4 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}

.location-info-card,
.location-map-card {
    background-color: var(--soft-card);
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.location-info-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info-block + .location-info-block {
    margin-top: 24px;
}

.location-info-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.location-info-block p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.location-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.location-map-card {
    min-height: 420px;
    overflow: hidden;
}

.location-map-card iframe {
    display: block;
    min-height: 420px;
    width: 100%;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}
.brand-col p {
    margin: 20px 0;
    color: #AAA;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-alt);
    color: var(--light-bg);
    margin-right: 10px;
    transition: 0.3s;
}
.footer-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-2px);
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a:hover {
    color: var(--primary-yellow);
}
.footer-col p {
    margin-bottom: 15px;
    color: #AAA;
    display: flex;
    align-items: center;
}
.footer-col i {
    margin-right: 15px;
    font-size: 1.1rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-alt);
    color: #777;
    font-size: 0.9rem;
}

/* --- WHATSAPP FLOAT --- */
.float-btn-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Único elemento arredondado da tela, é padrão p/ WPP */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}
.float-btn-wpp:hover {
    transform: scale(1.1);
    color: #FFF;
}

@media (max-width: 1100px) {
    .hero-title {
        font-size: 3.4rem;
    }

    .hero-mascot {
        max-width: 440px;
    }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .nav-links { display: none; } /* Em um projeto real, faríamos menu hambúrguer */
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

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

    .hero-content-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-mascot-wrap {
        order: -1;
    }

    .hero-mascot {
        max-width: 280px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.68) 55%, rgba(0,0,0,0.72) 100%);
    }
    .offer-highlight {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

    .offer-badge {
        max-width: 320px;
        margin: 0 auto;
    }

    .offer-product-image img {
        max-height: 90px;
    }

    .offer-meta {
        justify-content: center;
    }

    .offer-action {
        justify-content: center;
    }

    .btn-offer {
        max-width: 100%;
    }
    .card-body h3 { font-size: 1rem; }
    .how-it-works-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .brand-item {
        width: 150px;
        height: 84px;
        padding: 14px;
    }
    .brand-item img {
        max-height: 38px;
    }
    .brands-track {
        gap: 16px;
        animation-duration: 22s;
    }

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

    .location-map-card,
    .location-map-card iframe {
        min-height: 340px;
    }
}
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.45rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-proof {
        gap: 10px;
    }

    .hero-proof span {
        width: 100%;
        justify-content: center;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-mascot {
        max-width: 220px;
    }
    .categories-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .topbar .container { flex-direction: column; gap: 10px; }

    .brand-item {
        width: 130px;
        height: 76px;
    }
    .brand-item img {
        max-height: 34px;
    }

    .location-info-card {
        padding: 26px 20px;
    }

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

    .location-actions .btn {
        width: 100%;
        text-align: center;
    }
}
