/* ===========================================================
   LAIANA LÔ ASSESSORIA & CONSULTORIA
   Estilo do site — paleta da marca, fontes Playfair + Poppins
   =========================================================== */

/* ---------- Variáveis ---------- */
:root {
    /* Cores primárias */
    --roxo:        #68348B;
    --roxo-dark:   #4A1E68;
    --roxo-deep:   #391450;
    --amarelo:     #D1AF6D;
    --amarelo-soft:#E5CC93;
    --cinza:       #6C6861;
    --cinza-soft:  #F4F2EE;
    --cinza-line:  #E6E2DC;

    /* Secundárias / Neutras */
    --branco:  #FFFFFF;
    --preto:   #000000;
    --texto:   #2A2A2A;

    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Espaçamentos / Layout */
    --container: 1180px;
    --radius:    16px;
    --radius-sm: 10px;

    /* Sombras */
    --shadow-sm: 0 2px 12px rgba(58, 22, 78, 0.06);
    --shadow:    0 12px 30px rgba(58, 22, 78, 0.10);
    --shadow-lg: 0 24px 60px rgba(58, 22, 78, 0.18);

    /* Transições */
    --t-fast: .25s cubic-bezier(.4,0,.2,1);
    --t:      .35s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--texto);
    background: var(--branco);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--roxo-deep); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Marca / Wordmark ---------- */
.brand-name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -.5px;
    line-height: 1;
}
.brand-name__purple { color: var(--roxo); }
.brand-name__gold   { color: var(--amarelo); font-style: italic; font-weight: 500; }
.brand-name__white  { color: var(--branco); }
.brand-tagline {
    display: block;
    font-size: .65rem;
    letter-spacing: .25em;
    color: var(--cinza);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cinza-line);
    transition: box-shadow var(--t);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    gap: 1rem;
}
.header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__logo {
    height: 100px;
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
.nav a {
    font-weight: 500;
    font-size: .95rem;
    color: var(--cinza);
    position: relative;
    padding: 6px 0;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 2px;
    background: var(--amarelo);
    transition: width var(--t);
}
.nav a:hover { color: var(--roxo); }
.nav a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--roxo);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-dark) 60%, var(--roxo-deep) 100%);
    color: var(--branco);
    padding: 90px 0 110px;
}
.hero__pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(209,175,109,.16) 0, transparent 36%),
        radial-gradient(circle at 88% 80%, rgba(209,175,109,.10) 0, transparent 40%);
    pointer-events: none;
}
.hero__pattern::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='90' viewBox='0 0 80 90'><g fill='%23ffffff' fill-opacity='0.04'><path d='M22 8c0-2 1.6-3.6 3.6-3.6h7C34.6 4.4 36 6 36 8v40c0 8-4 15-10 18-2 1-4-.6-4-3z'/><rect x='44' y='10' width='18' height='18' rx='2'/><path d='M40 30c0 12 6 22 14 26 4-3 6-9 4-14-2-6-9-9-15-9z'/></g></svg>");
    background-repeat: repeat;
    opacity: .8;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    border-radius: 99px;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.hero__title {
    color: var(--branco);
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 22px;
}
.hero__title .hl {
    color: var(--amarelo);
    font-style: italic;
    position: relative;
    white-space: nowrap;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.84);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.16);
    max-width: 640px;
}
.trust__item { display: flex; flex-direction: column; }
.trust__item strong {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--amarelo);
    line-height: 1;
}
.trust__item span {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin-top: 6px;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}
.hero__circle {
    position: absolute;
    width: 540px; height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,175,109,.20) 0%, rgba(209,175,109,0) 70%);
    animation: pulse 6s ease-in-out infinite;
}
.hero__logobig {
    width: 760px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
    animation: float 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .9; }
    50%      { transform: scale(1.08); opacity: 1; }
}

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .98rem;
    letter-spacing: .01em;
    border-radius: 99px;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--amarelo);
    color: var(--roxo-deep);
}
.btn--primary:hover {
    background: var(--amarelo-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn--ghost {
    background: transparent;
    color: var(--branco);
    border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--branco);
}
.btn--whatsapp {
    background: #25D366;
    color: var(--branco);
}
.btn--whatsapp:hover {
    background: #1FBA57;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,211,102,.35);
}
.btn--big { padding: 18px 34px; font-size: 1.05rem; }

/* Em fundos claros, ghost vira variant escuro */
.section .btn--ghost {
    color: var(--roxo);
    border-color: var(--roxo);
}
.section .btn--ghost:hover {
    background: var(--roxo);
    color: var(--branco);
}

/* ---------- Section helpers ---------- */
.section {
    padding: 100px 0;
    position: relative;
}
.section--alt { background: var(--cinza-soft); }
.section__head { max-width: 720px; margin-bottom: 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--amarelo);
    font-weight: 600;
    margin-bottom: 14px;
}
.section__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--amarelo);
    vertical-align: middle;
    margin-right: 12px;
}
.section__eyebrow--light { color: var(--amarelo); }
.section__title {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 700;
    color: var(--roxo-deep);
    margin-bottom: 20px;
}
.section__title--light { color: var(--branco); }
.section__lead {
    font-size: 1.08rem;
    color: var(--cinza);
    line-height: 1.75;
}

/* ---------- Sobre ---------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-card {
    background: var(--branco);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
    border: 1px solid var(--cinza-line);
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--amarelo);
}
.about-card__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--roxo), var(--roxo-dark));
    color: var(--amarelo);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}
.about-card__icon svg { width: 26px; height: 26px; }
.about-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
    color: var(--roxo-deep);
}
.about-card p {
    font-size: .94rem;
    color: var(--cinza);
    line-height: 1.65;
}

/* ---------- Serviços ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--branco);
    border: 1px solid var(--cinza-line);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo), var(--amarelo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(104,52,139,.10), rgba(209,175,109,.18));
    color: var(--roxo);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: background var(--t), color var(--t);
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--roxo), var(--roxo-dark));
    color: var(--amarelo);
}
.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.service-card__desc {
    color: var(--cinza);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--roxo);
}
.service-card__link svg { transition: transform var(--t-fast); }
.service-card__link:hover { color: var(--amarelo); }
.service-card__link:hover svg { transform: translateX(4px); }

.services-extra {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--branco);
    border-radius: var(--radius);
    border: 2px dashed var(--cinza-line);
}
.services-extra p {
    color: var(--cinza);
    margin-bottom: 22px;
    font-size: 1.1rem;
}
.services-extra strong { color: var(--roxo); font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; }

/* ---------- Equipe (banners empilhados) ---------- */
.team-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
}
.team-banner {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
    background: var(--branco);
    line-height: 0;
}
.team-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.team-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Instagram (cards estilo IG: capa em cima + descrição) ---------- */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    align-items: stretch;
}
.ig-card {
    display: flex;
    flex-direction: column;
    background: var(--branco);
    border: 1px solid var(--cinza-line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    color: var(--texto);
    text-decoration: none;
    height: 100%;
}
.ig-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--amarelo);
}
.ig-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f6f1fa, #efe4f5);
}
.ig-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t);
    display: block;
}
.ig-card:hover .ig-card__media img { transform: scale(1.04); }

/* Estado quando a imagem falha em carregar */
.ig-card__media--noimg {
    background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-dark) 100%);
}
.ig-card__media--noimg::after {
    content: "@laianacontadora";
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: var(--branco);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
}

.ig-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--branco);
    background: rgba(0,0,0,.55);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.ig-card__badge svg { width: 14px; height: 14px; display: block; }

.ig-card__body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.ig-card__author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--roxo);
    font-size: .82rem;
    font-weight: 600;
}
.ig-card__author svg {
    color: var(--roxo);
    flex-shrink: 0;
}
.ig-card__caption {
    font-size: .85rem;
    line-height: 1.5;
    color: var(--cinza);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Skeleton */
.ig-card--skeleton {
    background: var(--branco);
    border: 1px solid var(--cinza-line);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1.35;
}
.ig-card--skeleton .ig-card__inner {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #ECE7F1 0%, #F6F3F8 50%, #ECE7F1 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.instagram-cta { margin-top: 40px; text-align: center; }

/* Estado vazio (CTA grande quando não tem posts) */
.ig-grid--empty {
    grid-template-columns: 1fr !important;
}
.ig-empty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 60px 28px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-dark) 100%);
    color: var(--branco);
    transition: transform var(--t), box-shadow var(--t);
    box-shadow: var(--shadow);
    max-width: 720px;
    margin: 0 auto;
}
.ig-empty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.ig-empty-card svg { color: var(--amarelo); }
.ig-empty-card strong {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
}
.ig-empty-card span {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
}

/* Modo embed oficial do Instagram (widget iframe) */
.ig-grid--embed {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 24px;
}
.ig-grid--embed .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}


/* ---------- Contato ---------- */
.section--contact {
    background: linear-gradient(135deg, var(--roxo-deep) 0%, var(--roxo-dark) 50%, var(--roxo) 100%);
    color: var(--branco);
}
.section--contact::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='90' viewBox='0 0 80 90'><g fill='%23ffffff' fill-opacity='0.03'><path d='M22 8c0-2 1.6-3.6 3.6-3.6h7C34.6 4.4 36 6 36 8v40c0 8-4 15-10 18-2 1-4-.6-4-3z'/><rect x='44' y='10' width='18' height='18' rx='2'/><path d='M40 30c0 12 6 22 14 26 4-3 6-9 4-14-2-6-9-9-15-9z'/></g></svg>");
    pointer-events: none;
}
.section--contact .container { position: relative; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.contact-info__lead {
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
    margin: 16px 0 28px;
    line-height: 1.7;
}
.contact-list {
    margin: 0 0 32px;
    display: grid;
    gap: 16px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.92);
    font-size: 1rem;
}
.contact-list svg {
    width: 20px; height: 20px;
    color: var(--amarelo);
    flex-shrink: 0;
}
.contact-map iframe { box-shadow: var(--shadow-lg); }

/* ---------- Footer ---------- */
.footer {
    background: var(--roxo-deep);
    color: rgba(255,255,255,.78);
    padding-top: 70px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    margin-bottom: 4px;
}
.footer__tagline {
    font-size: .92rem;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
    line-height: 1.5;
    font-style: italic;
}
.footer__links h4 {
    font-family: var(--font-sans);
    font-size: .82rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amarelo);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer__links a, .footer__links span {
    display: block;
    font-size: .92rem;
    margin-bottom: 10px;
    color: rgba(255,255,255,.78);
}
.footer__links a:hover { color: var(--amarelo); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}
.footer__bottom p {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    text-align: center;
}

/* ---------- Botão flutuante WhatsApp ---------- */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    background: #25D366;
    color: var(--branco);
    padding: 14px 22px 14px 18px;
    border-radius: 99px;
    box-shadow: 0 14px 30px rgba(37,211,102,.45);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    animation: wiggle 3s ease-in-out infinite;
}
.float-whatsapp:hover {
    transform: scale(1.06);
    box-shadow: 0 18px 40px rgba(37,211,102,.55);
    color: var(--branco);
}
.float-whatsapp svg { display: block; }
@keyframes wiggle {
    0%, 90%, 100% { transform: rotate(0); }
    93%           { transform: rotate(-6deg); }
    96%           { transform: rotate(6deg); }
}

/* ---------- Animações de entrada ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.team-banner, .service-card, .about-card, .ig-card {
    animation-delay: calc(var(--i, 0) * 80ms);
}

/* =====================================================
                     RESPONSIVO
   ===================================================== */

/* Tablet - 992px */
@media (max-width: 992px) {
    .hero__inner      { grid-template-columns: 1fr; gap: 30px; text-align: left; }
    .hero__visual     { min-height: 380px; order: -1; }
    .hero__logobig    { width: 480px; }
    .hero__circle     { width: 380px; height: 380px; }

    .about-grid       { grid-template-columns: repeat(2, 1fr); }
    .services-grid    { grid-template-columns: repeat(2, 1fr); }
    .ig-grid          { grid-template-columns: repeat(3, 1fr); }
    .contact-grid     { grid-template-columns: 1fr; }
    .footer__inner    { grid-template-columns: 1fr 1fr; }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .header__inner { min-height: 90px; }
    .header__logo { height: 70px; }

    .nav-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 90px;
        left: 0; right: 0;
        background: var(--branco);
        border-bottom: 1px solid var(--cinza-line);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--t);
    }
    .nav.is-open { max-height: 480px; box-shadow: var(--shadow); }
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 16px 24px 24px;
    }
    .nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--cinza-line);
        width: 100%;
        font-size: 1rem;
    }
    .nav li:last-child a { border-bottom: none; }

    .hero {
        padding: 60px 0 80px;
    }
    .hero__title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .hero__subtitle { font-size: 1rem; }
    .hero__cta .btn { width: 100%; }
    .hero__trust { gap: 18px; }
    .trust__item strong { font-size: 1.4rem; }
    .trust__item span { font-size: .78rem; }

    .section { padding: 70px 0; }
    .section__head { margin-bottom: 40px; }

    .about-grid    { grid-template-columns: 1fr; gap: 16px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .ig-grid       { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 30px; }

    .float-whatsapp {
        bottom: 16px;
        right: 16px;
        padding: 12px;
    }
    .float-whatsapp__txt { display: none; }

    .services-extra { padding: 28px 20px; }
}

/* Mobile pequeno - 420px */
@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .hero { padding: 50px 0 70px; }
    .hero__badge { font-size: .72rem; padding: 6px 14px; }
    .header__brand { gap: 8px; }
    .header__logo { height: 60px; }
    .hero__logobig { width: 320px; }
}

/* Acessibilidade — reduz movimento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
