/**
 * Pantanal Peças — estilos principais
 * Paleta: azul escuro, preto, branco, cinza, destaque amarelo/vermelho automotivo
 */

/* -------------------------------------------------------------------------- */
/* Variáveis & reset */
/* -------------------------------------------------------------------------- */

:root {
    --color-bg: #0a0e14;
    --color-bg-elevated: #111822;
    --color-surface: #151d2a;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-text: #e8edf5;
    --color-muted: #94a3b8;
    --color-accent: #facc15;
    --color-accent-dim: #ca8a04;
    --color-red: #c41e3a;
    --color-blue: #1e3a5f;
    --color-blue-bright: #2563eb;
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-display: "Outfit", var(--font-sans);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
    --header-h: 72px;
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--color-accent);
    color: #0a0e14;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

/* -------------------------------------------------------------------------- */
/* Tipografia utilitária */
/* -------------------------------------------------------------------------- */

.section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section__head {
    max-width: 720px;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #fff;
}

.section__lead {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-muted);
}

/* -------------------------------------------------------------------------- */
/* Botões */
/* -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--lg {
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
}

.btn--accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #eab308 100%);
    color: #0f172a;
    box-shadow: 0 8px 28px rgba(250, 204, 21, 0.35);
}

.btn--accent:hover {
    box-shadow: 0 12px 36px rgba(250, 204, 21, 0.45);
}

.btn--outline-light {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--light {
    background: #fff;
    color: #0f172a;
    box-shadow: var(--shadow-soft);
}

.btn--light:hover {
    background: #f1f5f9;
}

.btn--outline-dark {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.35);
    color: #0f172a;
}

.btn--outline-dark:hover {
    background: rgba(15, 23, 42, 0.06);
}

.btn--nav {
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
}

/* -------------------------------------------------------------------------- */
/* Header */
/* -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}

.logo {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.logo__mark {
    color: #fff;
}

.logo__suffix {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.25rem);
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.25rem);
}

.main-nav__link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-muted);
    padding: 0.35rem 0;
    position: relative;
    transition: color var(--transition);
}

.main-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-red));
    transition: width var(--transition);
}

.main-nav__link:hover {
    color: #fff;
}

.main-nav__link:hover::after {
    width: 100%;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        min-height: calc(100dvh - var(--header-h));
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        background: rgba(10, 14, 20, 0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--color-border);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    }

    .site-header.is-open .main-nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .main-nav__link {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav__link::after {
        display: none;
    }

    .btn--nav {
        margin-top: 1rem;
        text-align: center;
    }
}

/* -------------------------------------------------------------------------- */
/* Hero */
/* -------------------------------------------------------------------------- */

.hero {
    position: relative;
    padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, 0.25), transparent 55%),
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(196, 30, 58, 0.12), transparent 50%),
        linear-gradient(165deg, #0b1220 0%, #0a0e14 45%, #070a0f 100%);
    z-index: 0;
}

.hero__bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__bg-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.26;
    filter: saturate(0.72) contrast(1.08);
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }
}

.hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 1rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: #fff;
}

.hero__subtitle {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 520px;
}

.hero__subtitle strong {
    color: #e2e8f0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.hero__stat-icon {
    display: flex;
    color: var(--color-accent);
    opacity: 0.9;
}

.hero__parts-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__p-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.07);
    border: 1px solid rgba(250, 204, 21, 0.22);
    color: var(--color-accent);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.hero__p-ic:hover {
    transform: translateY(-3px);
    background: rgba(250, 204, 21, 0.14);
    border-color: rgba(250, 204, 21, 0.4);
}

.hero__visual {
    position: relative;
    min-height: 420px;
}

.hero__photo-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero__photo-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.hero__photo-main img {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__photo-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(10, 14, 20, 0.88) 100%);
    pointer-events: none;
}

.hero__photo-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.hero__thumb {
    position: relative;
    margin: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.hero__thumb img {
    width: 100%;
    height: 76px;
    object-fit: cover;
    display: block;
}

.hero__thumb figcaption {
    padding: 0.35rem 0.45rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    background: var(--color-bg-elevated);
}

@media (max-width: 480px) {
    .hero__photo-thumbs {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero__thumb img {
        height: 64px;
    }
}

.hero__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero__card--main {
    position: relative;
    z-index: 4;
    margin-top: -1.85rem;
    margin-left: 0.35rem;
    margin-right: 0.35rem;
    padding: 1.2rem 1.35rem;
}

.hero__card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.hero__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.hero__card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
}

.hero__card-desc {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--color-muted);
}

.hero__card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.hero__card--float {
    position: absolute;
    bottom: 2%;
    right: -2%;
    z-index: 5;
    max-width: 200px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.95), #eab308);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(250, 204, 21, 0.35);
    animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero__card--float strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-display);
}

.hero__card--float span {
    font-size: 0.8rem;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .hero__card--float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        max-width: none;
        align-self: flex-end;
    }

    .hero__visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
}

/* -------------------------------------------------------------------------- */
/* Sobre */
/* -------------------------------------------------------------------------- */

.about {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0a0f18 50%, var(--color-bg) 100%);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

@media (max-width: 860px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
}

.about__media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about__photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.about__photo {
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(10, 14, 20, 0.1) 0%, rgba(10, 14, 20, 0.75) 100%);
    pointer-events: none;
}

.about__photo-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(10, 14, 20, 0.82);
    border: 1px solid rgba(250, 204, 21, 0.35);
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
    backdrop-filter: blur(8px);
}

.about__photo-badge-ic {
    display: flex;
    color: var(--color-accent);
}

.about__icon-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.about__ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-accent);
    transition: transform var(--transition), border-color var(--transition);
}

.about__ic:hover {
    transform: translateY(-3px);
    border-color: rgba(250, 204, 21, 0.35);
}

.about__frame {
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.5), rgba(37, 99, 235, 0.35), rgba(196, 30, 58, 0.35));
    box-shadow: var(--shadow-soft);
}

.about__frame-inner {
    border-radius: calc(var(--radius-lg) - 1px);
    background: var(--color-bg-elevated);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(circle at 20% 100%, rgba(37, 99, 235, 0.15), transparent 50%);
}

.about__frame-inner--compact {
    min-height: auto;
    padding: 1.25rem 1.35rem;
}

.about__brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.about__frame-tagline {
    margin: 0 0 1.75rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.about__mini-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about__mini-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.about__mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.about__text p {
    margin: 0 0 1.1rem;
    color: var(--color-muted);
}

.about__text p:last-of-type {
    margin-bottom: 1.5rem;
}

.about__pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (max-width: 520px) {
    .about__pills {
        grid-template-columns: 1fr;
    }
}

.about__pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: #e2e8f0;
}

.about__pill-icon {
    display: flex;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* Categorias */
/* -------------------------------------------------------------------------- */

.categories {
    background: var(--color-bg);
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .categories__grid {
        grid-template-columns: 1fr;
    }
}

.cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 204, 21, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cat-card:hover::after {
    opacity: 1;
}

.cat-card__media {
    position: relative;
    height: 168px;
    overflow: hidden;
}

.cat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.cat-card:hover .cat-card__img {
    transform: scale(1.06);
}

.cat-card__media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 20, 0.55) 100%);
    pointer-events: none;
}

.cat-card__icon {
    position: absolute;
    right: 0.85rem;
    bottom: 0.75rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--color-accent);
    background: rgba(10, 14, 20, 0.72);
    border: 1px solid rgba(250, 204, 21, 0.35);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cat-card__body {
    position: relative;
    padding: 1.25rem 1.35rem 1.4rem;
    z-index: 1;
}

.cat-card__title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: #fff;
}

.cat-card__desc {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.cat-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: color var(--transition);
}

.cat-card__link:hover {
    color: #fde047;
}

/* -------------------------------------------------------------------------- */
/* Benefícios */
/* -------------------------------------------------------------------------- */

.benefits {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0a0f18 100%);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    padding: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(250, 204, 21, 0.25);
}

.benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 0.85rem;
    border-radius: 14px;
    color: var(--color-accent);
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.22);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
}

.benefit-card__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* -------------------------------------------------------------------------- */
/* Galeria */
/* -------------------------------------------------------------------------- */

.gallery-strip {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(30, 58, 95, 0.35), transparent 55%), var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.gallery-strip__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 1.75rem;
}

.gallery-strip__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 0.65rem;
    color: #fff;
}

.gallery-strip__lead {
    margin: 0;
    font-size: 0.98rem;
    color: var(--color-muted);
}

.gallery-strip__decor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.gallery-strip__ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.06);
    border: 1px solid rgba(250, 204, 21, 0.2);
    color: var(--color-accent);
}

.gallery-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .gallery-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .gallery-strip__grid {
        grid-template-columns: 1fr;
    }
}

.gallery-strip__item {
    margin: 0;
}

.gallery-strip__img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.gallery-strip__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.gallery-strip__item:hover .gallery-strip__img-wrap img {
    transform: scale(1.04);
}

.gallery-strip__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-strip__item:hover .gallery-strip__shine {
    opacity: 1;
}

.gallery-strip__cap {
    margin-top: 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

/* -------------------------------------------------------------------------- */
/* CTA */
/* -------------------------------------------------------------------------- */

.cta-band {
    position: relative;
    padding: clamp(3rem, 6vw, 4rem) 0;
    overflow: hidden;
    background: linear-gradient(120deg, #facc15 0%, #eab308 40%, #ca8a04 100%);
}

.cta-band__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.35), transparent 50%);
    pointer-events: none;
}

.cta-band__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #0f172a;
    max-width: 520px;
}

.cta-band__text {
    margin: 0;
    color: rgba(15, 23, 42, 0.85);
    max-width: 540px;
    font-size: 1rem;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* -------------------------------------------------------------------------- */
/* Contato */
/* -------------------------------------------------------------------------- */

.contact__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 800px) {
    .contact__cards {
        grid-template-columns: 1fr;
    }
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), transform var(--transition);
}

.info-card--link:hover {
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateY(-3px);
}

.info-card__icon {
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.info-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
}

.info-card__value {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.45;
}

.contact__map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.contact__map {
    display: block;
    width: 100%;
    height: min(420px, 60vh);
    border: 0;
}

.contact__form-wrap {
    max-width: 800px;
    margin-inline: auto;
}

.contact-form {
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form__row {
    display: grid;
    gap: 1rem;
}

.contact-form__row--2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .contact-form__row--2 {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
}

.req {
    color: var(--color-red);
}

.field input,
.field textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field__error {
    font-size: 0.8rem;
    color: #f87171;
}

.contact-form__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-form__note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

.form-alert--error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

/* -------------------------------------------------------------------------- */
/* Footer */
/* -------------------------------------------------------------------------- */

.site-footer {
    background: #05070f;
    border-top: 1px solid var(--color-border);
    padding-top: 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 1100px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.footer__tagline {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    max-width: 280px;
}

.footer__title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0 0 1rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--color-muted);
}

.footer__list a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 0;
}

.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.footer__domain {
    margin: 0;
    font-weight: 600;
    color: #64748b;
}

.footer__legal-links {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.footer__legal-links a {
    color: var(--color-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__legal-links a:hover {
    color: var(--color-accent);
}

.footer__sep {
    color: #475569;
}

.footer__link-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 0.92rem;
    color: var(--color-muted);
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__link-btn:hover {
    color: var(--color-accent);
}

/* -------------------------------------------------------------------------- */
/* Páginas legais */
/* -------------------------------------------------------------------------- */

.legal-page {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 4rem;
}

.legal-page__inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.legal-page__updated {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin: 0 0 2rem;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.legal-page ul {
    margin: 0.5rem 0 1rem 1.25rem;
    list-style: disc;
    padding: 0;
}

.legal-page a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: #fde047;
}

.legal-page .legal-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.field--checkbox {
    margin-bottom: 1.25rem;
}

.field__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    cursor: pointer;
    line-height: 1.5;
}

.field__checkbox-label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
}

.field__checkbox-label a {
    color: var(--color-accent);
}

/* -------------------------------------------------------------------------- */
/* Banner de cookies */
/* -------------------------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1150;
    padding: 1rem;
    background: rgba(10, 14, 20, 0.97);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__inner {
    width: min(1120px, 94vw);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.cookie-banner__desc {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.55;
    max-width: 640px;
}

.cookie-banner__desc a {
    color: var(--color-accent);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.btn--cookie {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
}

.cookie-banner__prefs {
    width: min(1120px, 94vw);
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.cookie-banner__prefs[hidden] {
    display: none !important;
}

.cookie-banner__prefs-title {
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
}

.cookie-banner__check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-banner__check input {
    margin-top: 0.15rem;
    accent-color: var(--color-accent);
}

.cookie-banner__prefs-actions {
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 5.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/* WhatsApp flutuante */
/* -------------------------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.1rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 44px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__text {
    display: none;
}

@media (min-width: 400px) {
    .whatsapp-float__text {
        display: inline;
    }
}

/* -------------------------------------------------------------------------- */
/* Animações ao rolar */
/* -------------------------------------------------------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"] {
    transition-delay: 0.12s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.24s;
}
