:root {
    --primary: #f48220;
    --primary-light: #ff9d47;
    --secondary: #f58026;
    --accent: #332c26;
    --bg: #faf9f7;
    --card-bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --text: #332c26;
    --text-light: #766a5f;
    --border: #ede9e6;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 60px rgba(244, 130, 32, 0.12);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Container centralizado — usado em header, breadcrumbs, seções e footer
   pra garantir que todo o conteúdo do site respeite a mesma margem lateral. */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

/* Header */
.zg-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.zg-topbar {
    background: var(--accent);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.zg-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.zg-topbar-contact,
.zg-topbar-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.zg-topbar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.zg-topbar a:hover {
    color: var(--primary-light);
}

.zg-topbar i {
    margin-right: 0.3rem;
}

@media (max-width: 640px) {
    .zg-topbar-links {
        display: none;
    }
}

/* Navegação de arquivos extensos e mapa do site */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    color: var(--text-light);
}

.pagination a {
    color: var(--primary);
    font-weight: 600;
}

.sitemap-page h2 {
    margin: 2.5rem 0 1rem;
    color: var(--accent);
}

.site-map-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 1.25rem;
}

.site-map-list a {
    color: var(--primary);
    text-decoration: none;
}

.site-map-list a:hover {
    text-decoration: underline;
}

.site-map-pages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
    .site-map-list,
    .site-map-pages {
        grid-template-columns: 1fr;
    }
}

.zg-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.zg-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.zg-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.2s;
}

.zg-nav a:hover {
    color: var(--primary);
}

.zg-cta {
    flex-shrink: 0;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.zg-menu-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.zg-menu-panel {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--border);
    background: white;
    padding: 1rem 40px 1.5rem;
}

.zg-menu-panel.open {
    display: flex;
}

.zg-menu-panel a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.zg-menu-panel a:hover {
    color: var(--primary);
}

.btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(244, 130, 32, 0.22);
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(244, 130, 32, 0.3);
}

.btn-outline {
    background: white;
    color: var(--primary);
    box-shadow: none;
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 6px;
}

/* Hero */
.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(244, 130, 32, 0.10), transparent 45%),
        radial-gradient(circle at 5% 85%, rgba(51, 44, 38, 0.05), transparent 45%);
    position: relative;
    overflow: hidden;
}

.hero .wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
}

.hero.hero-compact {
    min-height: auto;
    padding: 2.5rem 0 3.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 130, 32, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero-content {
    flex: 1.15;
    z-index: 2;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin: 1.2rem 0 1.3rem;
    color: var(--accent);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lead {
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 1.5rem;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

/* Search / consulta card */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.hero-image img {
    max-width: 520px;
    width: 100%;
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    max-width: 460px;
}

.search-box .fields-row {
    display: flex;
    gap: 0.7rem;
}

.search-box .fields-row input {
    flex: 1.4;
}

.search-box .fields-row select {
    flex: 1;
}

.search-box select,
.search-box input {
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 0.95rem;
    background: white;
    color: var(--text);
    width: 100%;
}

.search-box select:focus,
.search-box input:focus {
    border-color: var(--primary);
}

.search-box button {
    width: 100%;
    text-align: center;
    margin-top: 0.3rem;
    border-radius: 10px;
}

.search-box .fine-print {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
}

.search-box .fine-print a {
    color: var(--primary);
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section.alt {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin: 0.5rem 0 1rem;
    color: var(--accent);
    max-width: 640px;
}

.section-lead {
    color: var(--text-light);
    max-width: 620px;
    margin-bottom: 2.5rem;
}

/* Region grid */
.regiao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
}

.regiao-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
}

.regiao-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.regiao-card ul {
    list-style: none;
}

.regiao-card li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.4rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.regiao-card li a:hover {
    background: rgba(244, 130, 32, 0.08);
    color: var(--primary);
}

/* Municipio cards */
.municipio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 1.5rem;
}

.municipio-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.municipio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.municipio-card .uf-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

.municipio-card h3 {
    font-size: 1.3rem;
    margin: 0.4rem 0 0.6rem;
    color: var(--accent);
}

.municipio-card .pop {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.municipio-card .link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Infraction checklist */
.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
}

.check-item .tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(22, 185, 138, 0.12);
    color: #0f9971;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.check-item .tick-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.8rem;
    line-height: 1;
}

/* Frota tables */
.frota-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
}

.frota-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: white;
}

.frota-table th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: left;
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.frota-table td {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.frota-table tbody tr:nth-child(even) {
    background: var(--bg);
}

.frota-table tbody tr:last-child td {
    border-bottom: none;
}

.frota-table td:last-child {
    color: var(--primary);
    font-weight: 700;
}

/* Calendário de IPVA/Licenciamento */
.cal-widget {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.8rem;
}

.cal-toggle {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.cal-toggle-btn {
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.cal-categoria {
    display: inline-block;
    background: var(--bg);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.cal-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.7rem;
}

.cal-digits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.cal-digit {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-digit.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.cal-result-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.cal-table {
    box-shadow: none;
    border: 1px solid var(--border);
}

.cal-fine-print {
    margin-top: 0.9rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Fleet stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 1.2rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
}

.stat-card.highlight {
    background: rgba(244, 130, 32, 0.06);
    border-color: rgba(244, 130, 32, 0.25);
}

.stat-card .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

.stat-card.highlight .label {
    color: var(--primary);
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-top: 0.4rem;
}

.stat-card.highlight .value {
    color: var(--primary);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
}

.testimonial-card p.quote {
    font-style: italic;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-card p.author {
    margin-top: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
}

/* FAQ */
.faq-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
}

.faq-columns h2 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

details.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
}

details.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: "+";
    color: var(--primary);
    font-size: 1.2rem;
    margin-left: 1rem;
}

details.faq-item[open] summary::after {
    content: "\2212";
}

details.faq-item p {
    margin-top: 0.7rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.chip {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, color 0.2s;
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 28px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 1.8rem;
    opacity: 0.92;
}

.cta-banner .btn {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

/* App promo */
.app-banner {
    background: #f6f4f1;
    border-radius: 28px;
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 2.5rem;
}

.app-banner-text {
    flex: 1;
    min-width: 0;
}

.app-banner-text .eyebrow {
    margin-bottom: 0.4rem;
}

.app-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.app-banner-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    max-width: 460px;
    margin-bottom: 1.8rem;
}

.app-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #111;
    color: white;
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    font-size: 0.72rem;
    line-height: 1.2;
    text-decoration: none;
}

.store-badge strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.app-banner-image {
    flex-shrink: 0;
    width: 220px;
    max-width: 55%;
}

.app-banner-image img {
    width: 100%;
}

/* Simple page (sobre/servicos) */
.prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 4.5rem 40px;
}

.prose h1 {
    font-size: 2.4rem;
    color: var(--accent);
    margin: 0.6rem 0 1.4rem;
}

.prose p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* Footer */
footer.site-footer {
    background: var(--accent);
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
}

.footer-nap li {
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-nap li strong {
    display: block;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.15rem;
}

.footer-nap a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid .logo img {
    filter: brightness(0) invert(1);
}

.footer-about p {
    margin-top: 1rem;
    font-size: 0.9rem;
    max-width: 340px;
    line-height: 1.6;
}

.social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.3rem;
}

.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: border-color 0.2s, color 0.2s;
}

.social-row a:hover {
    border-color: var(--primary);
    color: white;
}

footer.site-footer h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

footer.site-footer li {
    margin-bottom: 0.65rem;
}

footer.site-footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

footer.site-footer a:hover {
    color: var(--primary-light);
}

.footer-trust {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-trust-label {
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.85rem;
}

.credenciada-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.credenciada-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.credenciada-badge i {
    color: var(--primary-light);
}

.credenciada-badge:hover {
    border-color: var(--primary);
    color: white;
}

.pagamento-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.pagamento-row i {
    font-size: 1.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.pagamento-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.9rem;
    padding: 0 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
}

/* 404 */
.not-found {
    text-align: center;
    padding: 6rem 40px;
}

.not-found h1 {
    font-size: 5rem;
    color: var(--primary);
}

.not-found p {
    color: var(--text-light);
    margin: 1rem 0 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .zg-nav,
    .zg-cta {
        display: none;
    }

    .zg-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 2.5rem;
    }

    .hero .wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-image {
        width: 100%;
        min-width: 0;
        order: -1;
    }

    .hero-image img {
        max-width: 340px;
        margin: 0 auto;
    }

    .app-banner {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .app-banner-image {
        width: 100%;
        max-width: 180px;
        flex-shrink: 1;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-banner-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .check-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .check-grid {
        grid-template-columns: 1fr;
    }
}
