/* ============================================================
   JC Lava — jclava.com
   Lava-jato & estética automotiva
   Design: claro, vibrante, com sensação de água.
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Colors */
    --c-cyan: #22D3EE;
    --c-cyan-dark: #06B6D4;
    --c-blue: #2563EB;
    --c-blue-dark: #1D4ED8;
    --c-navy: #0F172A;
    --c-navy-soft: #1E293B;
    --c-yellow: #FACC15;
    --c-yellow-dark: #EAB308;
    --c-white: #FFFFFF;
    --c-bg: #FFFFFF;
    --c-bg-soft: #F0F9FF;
    --c-bg-alt: #EFF6FF;
    --c-text: #0F172A;
    --c-text-muted: #475569;
    --c-text-light: #64748B;
    --c-border: #E2E8F0;
    --c-success: #10B981;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #22D3EE 0%, #2563EB 100%);
    --grad-primary-soft: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
    --grad-hero: linear-gradient(160deg, #0EA5E9 0%, #2563EB 55%, #1E3A8A 100%);
    --grad-cta: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);

    /* Typography */
    --font-heading: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;

    /* Radius — grandes, amigáveis */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 28px rgba(37, 99, 235, 0.16);
    --shadow-lg: 0 18px 48px rgba(37, 99, 235, 0.22);
    --shadow-cyan: 0 10px 30px rgba(34, 211, 238, 0.35);
    --shadow-yellow: 0 10px 30px rgba(250, 204, 21, 0.35);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Section Helpers --- */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section--alt {
    background-color: var(--c-bg-soft);
}

.section--gradient {
    background: var(--grad-primary);
    color: var(--c-white);
}

.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--c-blue);
    margin-bottom: var(--space-sm);
    background: rgba(34, 211, 238, 0.14);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
}

.section__label--center {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--c-navy);
    margin-bottom: var(--space-md);
}

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

.section__lead {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 640px;
    line-height: 1.75;
}

.section__lead--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section__head {
    margin-bottom: var(--space-2xl);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    line-height: 1.2;
}

.btn--primary {
    background: var(--grad-primary);
    color: var(--c-white);
    box-shadow: var(--shadow-cyan);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.btn--accent {
    background: var(--grad-cta);
    color: var(--c-navy);
    box-shadow: var(--shadow-yellow);
}

.btn--accent:hover {
    transform: translateY(-3px);
    filter: brightness(1.03);
    box-shadow: 0 16px 40px rgba(250, 204, 21, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.14);
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.btn--ghost:hover {
    background: var(--c-white);
    color: var(--c-blue);
    border-color: var(--c-white);
}

.btn--outline {
    background: transparent;
    color: var(--c-blue);
    border-color: var(--c-blue);
}

.btn--outline:hover {
    background: var(--c-blue);
    color: var(--c-white);
}

.btn--lg {
    padding: 1.05rem 2.4rem;
    font-size: 1.08rem;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--c-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--c-navy);
}

.logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo__icon img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.3));
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--c-blue);
}

.logo__tagline {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 800;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.logo--footer .logo__name {
    -webkit-text-fill-color: var(--c-white);
    color: var(--c-white);
    background: none;
}

.logo--footer .logo__tagline {
    color: var(--c-cyan);
}

/* --- Navigation --- */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-navy-soft);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    border-radius: var(--radius-pill);
    background: var(--grad-primary);
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
    color: var(--c-blue);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
    width: 100%;
}

/* --- Burger --- */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.burger__line {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: var(--radius-pill);
    background-color: var(--c-navy);
    transition: all var(--transition-base);
    transform-origin: center;
}

.burger--active .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger--active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger--active .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    color: var(--c-white);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.02) 70%);
}

.hero__bubble--1 { width: 420px; height: 420px; top: -120px; right: -80px; }
.hero__bubble--2 { width: 260px; height: 260px; bottom: -60px; left: -60px; opacity: 0.7; }
.hero__bubble--3 { width: 120px; height: 120px; top: 30%; left: 12%; opacity: 0.5; }
.hero__bubble--4 { width: 70px; height: 70px; bottom: 22%; right: 20%; opacity: 0.6; }
.hero__bubble--5 { width: 46px; height: 46px; top: 18%; right: 32%; opacity: 0.7; }

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding-top: var(--header-height);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    color: var(--c-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-lg);
}

.hero__title em {
    font-style: normal;
    color: var(--c-yellow);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--space-2xl);
    max-width: 640px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-yellow);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

/* Wave divider below hero */
.wave-divider {
    display: block;
    width: 100%;
    height: 90px;
    margin-top: -1px;
    color: var(--c-bg);
}

.wave-divider--flip {
    transform: rotate(180deg);
    margin-top: 0;
    margin-bottom: -1px;
}

/* --- Highlights / Advantage strip --- */
.highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.highlight-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-cyan);
}

.highlight-card__icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--c-white);
    box-shadow: var(--shadow-cyan);
}

.highlight-card__title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: var(--space-xs);
}

.highlight-card__text {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* --- Pricing cards --- */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: stretch;
    margin-top: var(--space-2xl);
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--c-white);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    background: var(--grad-primary);
    color: var(--c-white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    z-index: 2;
}

.price-card--featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.price-card__badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-cta);
    color: var(--c-navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-yellow);
    white-space: nowrap;
}

.price-card__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: var(--space-xs);
}

.price-card--featured .price-card__name {
    color: var(--c-white);
}

.price-card__desc {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    margin-bottom: var(--space-lg);
}

.price-card--featured .price-card__desc {
    color: rgba(255, 255, 255, 0.85);
}

.price-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: var(--space-xs);
}

.price-card__currency {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-blue);
}

.price-card__amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--c-navy);
}

.price-card--featured .price-card__currency,
.price-card--featured .price-card__amount {
    color: var(--c-white);
}

.price-card__duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text-muted);
    margin-bottom: var(--space-lg);
}

.price-card--featured .price-card__duration {
    color: rgba(255, 255, 255, 0.85);
}

.price-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.price-card__item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--c-navy-soft);
    line-height: 1.5;
}

.price-card--featured .price-card__item {
    color: var(--c-white);
}

.price-card__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--c-success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card--featured .price-card__check {
    background: rgba(255, 255, 255, 0.2);
    color: var(--c-yellow);
}

.price-card .btn {
    width: 100%;
}

.price-card--featured .btn {
    background: var(--c-white);
    color: var(--c-blue);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* --- Individual services (avulsos) --- */
.avulsos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.avulso-card {
    display: flex;
    gap: var(--space-md);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.avulso-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-cyan);
}

.avulso-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--c-bg-alt);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avulso-card__body {
    flex-grow: 1;
}

.avulso-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-navy);
}

.avulso-card__meta {
    font-size: 0.8rem;
    color: var(--c-text-light);
    margin-bottom: var(--space-xs);
}

.avulso-card__price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-blue);
}

/* --- Process steps --- */
.process__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__icon {
    position: relative;
    width: 78px;
    height: 78px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cyan);
}

.process-step__number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--c-yellow);
    color: var(--c-navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: var(--space-xs);
}

.process-step__text {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

/* --- FAQ --- */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.faq-item--open {
    border-color: var(--c-cyan);
    box-shadow: var(--shadow-md);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-navy);
    text-align: left;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--c-bg-alt);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--grad-primary);
    color: var(--c-white);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item__answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--c-text-muted);
    line-height: 1.7;
}

/* --- CTA --- */
.cta {
    background: var(--grad-primary);
    position: relative;
    overflow: hidden;
    color: var(--c-white);
}

.cta__inner {
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 2;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--c-white);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--accent {
    background: var(--c-white);
    color: var(--c-blue);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn--accent:hover {
    color: var(--c-blue-dark);
}

/* --- Footer --- */
.footer {
    background: var(--c-navy);
    color: rgba(255, 255, 255, 0.78);
    padding-top: var(--space-4xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.footer__brand-text {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.72;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-cyan);
    margin-bottom: var(--space-lg);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__list a {
    font-size: 0.9rem;
    opacity: 0.75;
    transition: all var(--transition-fast);
}

.footer__list a:hover {
    opacity: 1;
    color: var(--c-cyan);
}

.footer__list--info li,
.footer__list--contact li {
    font-size: 0.9rem;
    opacity: 0.75;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer__bottom a {
    color: var(--c-cyan);
    text-decoration: underline;
}

.footer__bottom a:hover {
    color: var(--c-white);
}

/* ============================================================
   Inner Pages — Common Styles
   ============================================================ */

.page-header {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background: var(--grad-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--c-white);
}

.page-header__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--c-white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.page-header__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumb {
    padding: var(--space-md) 0;
    font-size: 0.85rem;
    color: var(--c-text-light);
    border-bottom: 1px solid var(--c-border);
}

.breadcrumb a {
    color: var(--c-blue);
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 var(--space-xs);
    opacity: 0.5;
}

/* ============================================================
   Sobre Nós
   ============================================================ */

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-story__text p {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-story__text strong {
    color: var(--c-blue);
}

.about-story__visual {
    position: relative;
}

.about-story__card {
    background: var(--grad-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--c-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-story__card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-story__card-row:last-child {
    border-bottom: none;
}

.about-story__card-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-yellow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-story__card-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-bg-alt);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: var(--space-xs);
}

.value-card__text {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

/* Company data block */
.company-block {
    background: var(--c-navy);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    color: var(--c-white);
}

.company-block__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: var(--space-lg);
}

.company-block__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.company-block__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.company-block__key {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-cyan);
}

.company-block__val {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.company-block__val--active {
    color: var(--c-success);
}

/* ============================================================
   Serviços
   ============================================================ */

/* Comparison table */
.compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--c-white);
    border: 1px solid var(--c-border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.compare-table th,
.compare-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}

.compare-table th {
    font-family: var(--font-heading);
    font-weight: 800;
    background: var(--c-navy);
    color: var(--c-white);
}

.compare-table th.compare-table__feature {
    text-align: left;
    width: 34%;
}

.compare-table th.compare-table__featured {
    background: var(--grad-primary);
}

.compare-table td.compare-table__feature {
    text-align: left;
    font-weight: 600;
    color: var(--c-navy);
    width: 34%;
}

.compare-table td.compare-table__featured {
    background: rgba(34, 211, 238, 0.08);
}

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

.compare-table .check {
    color: var(--c-success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.compare-table .dash {
    color: var(--c-text-light);
}

.compare-table__price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--c-blue);
    font-size: 1.2rem;
    white-space: nowrap;
}

.compare-table__name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.compare-table__badge {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--c-navy);
    background: var(--c-yellow);
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* Full avulsos list */
.avulsos-full__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.avulso-row {
    display: grid;
    grid-template-columns: 56px 1fr auto auto;
    gap: var(--space-lg);
    align-items: center;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.avulso-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-cyan);
}

.avulso-row__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--c-bg-alt);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avulso-row__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-navy);
}

.avulso-row__desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.avulso-row__duration {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text-light);
    white-space: nowrap;
    text-align: right;
}

.avulso-row__price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-blue);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

/* Surcharge note */
.surcharge-card {
    background: var(--c-bg-soft);
    border: 1px dashed var(--c-cyan);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.surcharge-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.surcharge-card__list {
    margin-top: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.surcharge-card__list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--c-text-muted);
}

.surcharge-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-primary);
}

/* ============================================================
   Contato
   ============================================================ */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-info__item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cyan);
}

.contact-info__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-blue);
    margin-bottom: 2px;
}

.contact-info__value {
    font-size: 1rem;
    color: var(--c-text);
}

.contact-info__value a {
    color: var(--c-blue);
    font-weight: 600;
}

.contact-info__value a:hover {
    text-decoration: underline;
}

/* Hours */
.hours-card {
    background: var(--c-navy);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: var(--c-white);
}

.hours-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-cyan);
    margin-bottom: var(--space-md);
}

.hours-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hours-card__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.85;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-card__row:last-child {
    border-bottom: none;
}

/* Form */
.contact-form {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: var(--space-xs);
}

.form-label__required {
    color: #DC2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--c-text);
    background-color: var(--c-bg-soft);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--c-cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
    background-color: var(--c-white);
}

.form-input--error,
.form-select--error {
    border-color: #DC2626;
}

.form-error {
    display: none;
    font-size: 0.8rem;
    color: #DC2626;
    margin-top: var(--space-xs);
    font-weight: 600;
}

.form-error--visible {
    display: block;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.05rem;
}

.form-success {
    display: none;
    background: rgba(16, 185, 129, 0.12);
    border: 1.5px solid var(--c-success);
    color: #047857;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    font-weight: 700;
    margin-top: var(--space-md);
}

.form-success--visible {
    display: block;
}

/* ============================================================
   Legal pages (termos / privacidade)
   ============================================================ */

.legal {
    max-width: 820px;
    margin: 0 auto;
}

.legal__updated {
    font-size: 0.9rem;
    color: var(--c-text-light);
    margin-bottom: var(--space-xl);
}

.legal h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-navy);
    margin: var(--space-2xl) 0 var(--space-md);
}

.legal h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-blue);
    margin: var(--space-lg) 0 var(--space-sm);
}

.legal p {
    color: var(--c-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.legal ul {
    list-style: none;
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.legal ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--c-text-muted);
}

.legal ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-primary);
}

.legal a {
    color: var(--c-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================================
   Reveal animation (IntersectionObserver)
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

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

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    :root {
        --header-height: 72px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .section__title {
        font-size: 2.2rem;
    }

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

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-card--featured {
        transform: none;
    }

    .price-card--featured:hover {
        transform: translateY(-10px);
    }

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

    .process__grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: var(--space-2xl);
    }

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

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

    .about-story__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-story__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --space-4xl: 3rem;
        --space-3xl: 2.5rem;
    }

    /* Mobile nav */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--c-white);
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-base);
        z-index: 999;
    }

    .nav--open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
    }

    .nav__link {
        display: block;
        padding: var(--space-md) 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--c-border);
    }

    .nav__link::after {
        display: none;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(15, 23, 42, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-base);
    }

    .nav-overlay--visible {
        opacity: 1;
        pointer-events: auto;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 88vh;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 1.05rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__stats {
        gap: var(--space-xl);
    }

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

    .avulso-row {
        grid-template-columns: 48px 1fr auto;
        gap: var(--space-md);
    }

    .avulso-row__icon {
        width: 48px;
        height: 48px;
    }

    .avulso-row__duration {
        display: none;
    }

    .page-header__title {
        font-size: 2.3rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .company-block__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__title {
        font-size: 1.9rem;
    }

    .section__title {
        font-size: 1.7rem;
    }

    .cta__title {
        font-size: 1.9rem;
    }

    .highlights__grid,
    .process__grid,
    .values__grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form {
        padding: var(--space-lg);
    }

    .avulso-row {
        grid-template-columns: 1fr auto;
    }

    .avulso-row__icon {
        display: none;
    }

    .company-block {
        padding: var(--space-xl);
    }
}

/* --- Print --- */
@media print {
    .header,
    .footer,
    .burger,
    .nav-overlay,
    .cta,
    .hero__actions,
    .contact-form,
    .services-preview__cta {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .page-header {
        min-height: auto;
        background: none;
        padding: 2rem 0;
        color: black;
    }

    .hero__title,
    .hero__subtitle,
    .page-header__title,
    .page-header__subtitle {
        color: black;
    }
}
