/* ================================================================
   ROCHA ADVOCACIA — Editorial Navy Theme
   Estética: editorial / institucional / sóbria
   ================================================================ */

:root {
    /* ---- Backgrounds: azul marinho profundo ---- */
    --c-bg: #07101f;
    --c-bg-soft: #0a1628;
    --c-bg-alt: #0d1b2f;
    --c-surface: #112137;
    --c-surface-2: #15263d;
    --c-surface-3: #1b2e48;

    /* ---- Bordas hairline ---- */
    --c-border: rgba(180, 200, 230, 0.09);
    --c-border-strong: rgba(180, 200, 230, 0.18);
    --c-border-accent: rgba(212, 168, 87, 0.28);

    /* ---- Tipografia ---- */
    --c-text: #f3f5f9;
    --c-text-soft: #c9d2e1;
    --c-text-muted: #8a97ad;
    --c-text-dim: #65728a;
    --c-white: #ffffff;

    /* ---- Acento: dourado refinado ---- */
    --c-accent: #c9a35a;
    --c-accent-light: #dcb771;
    --c-accent-bright: #ecd093;
    --c-accent-soft: rgba(201, 163, 90, 0.10);
    --c-accent-glow: rgba(201, 163, 90, 0.22);

    /* ---- Tipografia ---- */
    --f-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* ---- Estrutura ---- */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.5);

    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.2s ease;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--c-bg); }

body {
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text-soft);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "kern", "liga", "calt";
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }

h1, h2, h3, h4 {
    font-family: var(--f-serif);
    font-weight: 500;
    line-height: 1.18;
    color: var(--c-text);
    letter-spacing: -0.012em;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { color: var(--c-text-muted); }

::selection { background: var(--c-accent); color: var(--c-bg); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-surface-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }

/* ============ LAYOUT HELPERS ============ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: clamp(80px, 11vw, 140px) 0;
    position: relative;
}

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

.section--alt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--c-border);
}

/* ---- Cabeçalho de seção: editorial com numeração romana ---- */
.section__head {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.section__head h2 { margin: 18px 0 16px; }
.section__head p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--c-text-muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ---- Eyebrow editorial: pequeno, com filete ---- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-accent);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--c-accent);
    opacity: 0.5;
}

.eyebrow__num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--c-accent-light);
}

.eyebrow__dot { display: none; }

/* ---- Eyebrow alinhado à esquerda (em colunas) ---- */
.eyebrow--left::before { display: none; }
.eyebrow--left { padding-left: 0; }

.lead {
    font-family: var(--f-serif);
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--c-text);
    margin-bottom: 20px;
    font-weight: 400;
}

.grid { display: grid; gap: 1px; background: var(--c-border); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--f-sans);
    font-weight: 500;
    font-size: 0.94rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn--lg { padding: 18px 36px; font-size: 0.98rem; }

.btn--primary {
    background: var(--c-accent);
    color: var(--c-bg);
    border-color: var(--c-accent);
    font-weight: 600;
}
.btn--primary:hover {
    background: var(--c-accent-light);
    border-color: var(--c-accent-light);
    transform: translateY(-1px);
}

.btn--accent {
    background: var(--c-accent);
    color: var(--c-bg);
    border-color: var(--c-accent);
    font-weight: 600;
}
.btn--accent:hover {
    background: var(--c-accent-light);
    border-color: var(--c-accent-light);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px var(--c-accent-glow);
}

.btn--outline {
    background: transparent;
    color: var(--c-text);
    border-color: var(--c-border-strong);
}
.btn--outline:hover {
    border-color: var(--c-accent);
    color: var(--c-accent-light);
}

/* WhatsApp button */
.btn--whatsapp {
    background: #25D366;
    color: #052e15;
    border-color: #25D366;
    font-weight: 600;
}
.btn--whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(7, 16, 31, 0.7);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.header.scrolled {
    background: rgba(7, 16, 31, 0.95);
    border-bottom-color: var(--c-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand__mark {
    width: 54px;
    height: 54px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.brand:hover .brand__mark {
    transform: translateY(-1px);
}

.brand__mark--light { background: transparent; }

.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
    font-family: var(--f-serif);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--c-text);
    letter-spacing: 0.005em;
}
.brand__sub {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    font-weight: 500;
    margin-top: 2px;
}

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

.nav__list { display: flex; gap: 28px; }

.nav__list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-text-soft);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 0;
}

.nav__list a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1px;
    background: var(--c-accent);
    transition: right var(--transition);
}

.nav__list a:hover { color: var(--c-text); }
.nav__list a:hover::after { right: 0; }

.nav__cta {
    padding: 12px 22px;
    font-size: 0.84rem;
    white-space: nowrap;
    gap: 8px;
    letter-spacing: 0.04em;
    text-transform: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--c-text);
    transition: all var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO — Editorial / Tipográfico
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--c-text);
}

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

.hero__shape { display: none; }

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(201, 163, 90, 0.04) 1px, transparent 1px);
    background-size: calc(100% / 12) 100%;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    opacity: 0.6;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 90px;
    align-items: center;
}

.hero__content { max-width: 720px; }

.hero__title {
    margin: 32px 0 32px;
    color: var(--c-text);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.018em;
}

.highlight {
    color: var(--c-accent);
    font-style: italic;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}
.highlight::after { display: none; }

.hero__lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--c-text-soft);
    margin-bottom: 48px;
    max-width: 580px;
    font-weight: 400;
}
.hero__lead strong { color: var(--c-text); font-weight: 600; }

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero__badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 36px;
    border-top: 1px solid var(--c-border);
    width: 100%;
    max-width: 580px;
}
.hero__badges li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 24px;
    border-right: 1px solid var(--c-border);
}
.hero__badges li:last-child { border-right: 0; padding-right: 0; }
.hero__badges li:not(:first-child) { padding-left: 24px; }
.hero__badges strong {
    font-family: var(--f-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--c-accent);
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero__badges span {
    font-family: var(--f-serif);
    font-size: 1.15rem;
    color: var(--c-text);
    letter-spacing: 0.005em;
    line-height: 1.2;
}

/* ---- Aside (foto da advogada) ---- */
.hero__aside {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__portrait {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0;
}

.hero__portrait-frame {
    position: relative;
    aspect-ratio: 5 / 7;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(165deg, var(--c-surface) 0%, var(--c-bg-alt) 100%);
    border: 1px solid var(--c-border-strong);
}

.hero__portrait-frame::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--c-accent);
    border-radius: 2px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
}

.hero__portrait-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__portrait-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--c-text-muted);
    text-align: center;
    padding: 24px;
}
.hero__portrait-placeholder svg { opacity: 0.4; }
.hero__portrait-placeholder span {
    font-family: var(--f-serif);
    font-size: 1.15rem;
    color: var(--c-text-soft);
    font-weight: 500;
}
.hero__portrait-placeholder small {
    font-family: var(--f-sans);
    font-size: 0.72rem;
    color: var(--c-text-dim);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero__portrait-caption { display: none; }

.hero__portrait-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(7, 16, 31, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--c-accent-light);
    font-family: var(--f-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--c-border-accent);
    border-radius: 100px;
    z-index: 4;
}

.hero__portrait-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
}

/* ---- Indicador scroll ---- */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--c-text-dim);
    z-index: 2;
}
.hero__scroll span {
    width: 1px;
    height: 40px;
    background: var(--c-border-strong);
    position: relative;
    overflow: hidden;
}
.hero__scroll span::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 14px;
    background: var(--c-accent);
    animation: scrollDown 2.4s ease-in-out infinite;
}
.hero__scroll small {
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* ================================================================
   CARDS — SERVIÇOS (editorial, sem sombras pesadas)
   ================================================================ */
.grid--3 { background: transparent; gap: 24px; }

.card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 44px 36px;
    transition: all var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px;
    height: 1px;
    background: var(--c-accent);
    transition: width var(--transition);
}

.card:hover {
    border-color: var(--c-border-strong);
    background: var(--c-surface-2);
}
.card:hover::before { width: 100%; }
.card:hover .card__icon { color: var(--c-accent-light); }

.card__icon {
    color: var(--c-accent);
    margin-bottom: 28px;
    display: inline-flex;
    transition: color var(--transition);
}
.card__icon svg { width: 32px; height: 32px; }

.card h3 {
    margin-bottom: 14px;
    color: var(--c-text);
    font-size: 1.3rem;
}
.card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--c-text-muted);
}

/* ================================================================
   PARA QUEM — Editorial rows
   ================================================================ */
.audience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--c-border);
}

.audience__item {
    display: flex;
    gap: 28px;
    padding: 36px 32px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    border-radius: 0;
    transition: background var(--transition);
    position: relative;
}

.audience__item:nth-child(2n) { border-right: 0; }

.audience__item:hover {
    background: var(--c-surface);
    transform: none;
    box-shadow: none;
}
.audience__item:hover .audience__num {
    color: var(--c-accent-light);
    background: transparent;
}

.audience__num {
    flex-shrink: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--c-accent);
    display: block;
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.6rem;
    transition: color var(--transition);
    letter-spacing: 0.02em;
    line-height: 1;
    padding-top: 4px;
}

.audience__item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--c-text);
}
.audience__item p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--c-text-muted);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: center;
}

.about__media { position: relative; }

.about__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, var(--c-surface) 0%, var(--c-bg-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--c-border-strong);
}

.about__photo::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 163, 90, 0.3);
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

.about__logo {
    width: 72%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.about__badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--c-bg-soft);
    color: var(--c-text);
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
    line-height: 1.2;
    border: 1px solid var(--c-border-strong);
}
.about__badge strong {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--c-accent);
    font-weight: 600;
}
.about__badge span {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.about__content .eyebrow { margin-bottom: 16px; }
.about__content .eyebrow::before { display: none; }
.about__content .eyebrow { padding-left: 0; }
.about__content h2 { margin: 0 0 28px; }

.about__content p { margin-bottom: 18px; }

.about__list {
    margin: 36px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--c-border);
    padding-top: 28px;
}
.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98rem;
    color: var(--c-text-soft);
    line-height: 1.6;
}
.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* ================================================================
   CTA FINAL
   ================================================================ */
.cta {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--c-bg-soft);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.cta__inner {
    position: relative;
    text-align: center;
    max-width: 760px;
}
.cta h2 {
    margin-bottom: 22px;
    color: var(--c-text);
    font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}
.cta p {
    font-size: 1.08rem;
    margin-bottom: 40px;
    color: var(--c-text-soft);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.contact__head h2 { margin: 18px 0 16px; }
.contact__head p { color: var(--c-text-muted); }

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 40px 32px 32px;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--c-border);
    border-radius: 0;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 230px;
}
.contact-card:last-child { border-right: 0; }

.contact-card::before,
.contact-card::after { display: none; }

.contact-card:not(.contact-card--static):hover {
    background: var(--c-surface);
    transform: none;
    box-shadow: none;
}
.contact-card:not(.contact-card--static):hover .contact-card__icon {
    background: transparent;
    color: var(--c-accent-light);
    transform: none;
    box-shadow: none;
}
.contact-card:not(.contact-card--static):hover .contact-card__cta {
    color: var(--c-accent-light);
    gap: 12px;
}
.contact-card:not(.contact-card--static):hover .contact-card__cta svg {
    transform: translateX(3px);
}

.contact-card > * { position: relative; z-index: 1; }

.contact-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
    border: 1px solid var(--c-border-strong);
}

.contact-card__icon--wa {
    background: transparent;
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-card--featured:hover .contact-card__icon--wa {
    background: transparent !important;
    color: #25D366 !important;
    border-color: #25D366 !important;
}

.contact-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #25D366;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-card__pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulseDot 2s ease-out infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.contact-card__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-text-dim);
    font-weight: 600;
}

.contact-card__value {
    color: var(--c-text);
    font-family: var(--f-sans);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.contact-card__value--email {
    font-size: 0.92rem;
    font-family: var(--f-sans);
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card__hint {
    font-size: 0.82rem;
    color: var(--c-text-dim);
    line-height: 1.5;
    margin-top: 4px;
}

.contact-card__cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-soft);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.contact-card__cta svg { transition: transform var(--transition); }

.contact-card--featured { background: transparent; }
.contact-card--static { cursor: default; }
.contact-card--static .contact-card__cta { display: none; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--c-bg);
    color: var(--c-text-muted);
    padding: 70px 0 40px;
    border-top: 1px solid var(--c-border);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer__logo {
    width: 110px;
    height: auto;
    margin-bottom: 4px;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 26px 32px;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 760px;
}

.footer__info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.footer__info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--c-text-soft);
    transition: color var(--transition-fast);
    letter-spacing: 0.005em;
}
.footer__info-item svg { color: var(--c-accent); flex-shrink: 0; }
a.footer__info-item:hover { color: var(--c-accent-light); }

.footer__info-business {
    font-family: var(--f-serif);
    font-size: 0.95rem;
    color: var(--c-text-muted);
    text-align: center;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--c-border);
    width: 100%;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

.footer__disclaimer {
    max-width: 720px;
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--c-text-dim);
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--c-text-dim);
    padding-top: 28px;
    border-top: 1px solid var(--c-border);
    width: 100%;
    max-width: 760px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ================================================================
   WHATSAPP FLUTUANTE
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

/* ============ ANIMAÇÕES SCROLL ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVO
   ================================================================ */
@media (max-width: 1024px) {
    .hero__inner { gap: 60px; }
    .hero { padding: 140px 0 90px; }
    .nav__list { gap: 22px; }
    .nav { gap: 22px; }
}

@media (max-width: 960px) {
    .hero { padding: 130px 0 80px; min-height: auto; }
    .hero__inner { grid-template-columns: 1fr; gap: 60px; }
    .hero__aside { max-width: 460px; margin: 0 auto; }
    .hero__portrait { max-width: 400px; }
    .hero__scroll { display: none; }

    .about { grid-template-columns: 1fr; gap: 80px; }
    .about__media { max-width: 400px; margin: 0 auto; }

    .audience { grid-template-columns: 1fr; }
    .audience__item { border-right: 0; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 84px;
        left: 0; right: 0;
        background: var(--c-bg-soft);
        flex-direction: column;
        align-items: stretch;
        padding: 28px;
        gap: 8px;
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-top: 1px solid var(--c-border);
    }
    .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }

    .nav__list { flex-direction: column; gap: 0; }
    .nav__list a {
        display: block;
        padding: 16px 8px;
        border-bottom: 1px solid var(--c-border);
    }
    .nav__list a::after { display: none; }
    .nav__cta { margin-top: 18px; }

    .brand__sub { font-size: 0.6rem; }
    .brand__name { font-size: 1.12rem; }
    .brand__mark { width: 44px; height: 44px; }

    .hero { padding: 120px 0 70px; }
    .hero__title { font-size: clamp(1.7rem, 6vw, 2.3rem); }
    .hero__lead { font-size: 1rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }

    .hero__badges { grid-template-columns: 1fr; gap: 0; }
    .hero__badges li {
        border-right: 0;
        border-bottom: 1px solid var(--c-border);
        padding: 16px 0 !important;
        flex-direction: row;
        align-items: baseline;
        gap: 14px;
    }
    .hero__badges li:last-child { border-bottom: 0; }

    .hero__portrait-tag {
        top: 16px;
        bottom: auto;
        left: 16px;
        font-size: 0.64rem;
        padding: 7px 12px;
    }

    .about__badge { right: 0; bottom: -16px; padding: 14px 18px; }
    .about__badge span { font-size: 1.2rem; }

    .contact__grid { grid-template-columns: 1fr; }
    .contact-card { border-right: 0; border-bottom: 1px solid var(--c-border); }
    .contact-card:last-child { border-bottom: 0; }

    .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }

    .footer__info { padding: 22px; }
    .footer__info-row { gap: 18px; flex-direction: column; }
    .footer__info-item { font-size: 0.86rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 22px; }
    .header__inner { height: 72px; }
    .nav { top: 72px; }
    .brand__mark { width: 40px; height: 40px; }
    .brand__name { font-size: 1.05rem; }
    .card { padding: 36px 28px; }
    .footer__logo { width: 76px; }
}
