/* =========================================================
   GRUPO ICT - STYLE.CSS DEFINITIVO V2.7
   Home alinhada + páginas internas + mobile
   ========================================================= */

:root {
    --black: #000000;
    --dark: #050505;
    --dark-2: #070b0a;
    --dark-3: #0a1513;
    --green-deep: #061d1a;
    --green-card: #0b2622;
    --white: #ffffff;
    --text: rgba(255, 255, 255, 0.88);
    --muted: rgba(255, 255, 255, 0.68);
    --muted-2: rgba(255, 255, 255, 0.50);
    --gold: #d7b957;
    --gold-soft: rgba(215, 185, 87, 0.13);
    --gold-border: rgba(215, 185, 87, 0.30);
    --blue: #0071e3;
    --blue-hover: #0b7ff4;
    --blue-soft: rgba(0, 113, 227, 0.13);
    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.18);
    --shadow-card: 0 22px 70px rgba(0, 0, 0, 0.34);
    --shadow-blue: 0 18px 42px rgba(0, 113, 227, 0.30);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --font-main: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    white-space: nowrap;
}

.logo-ict {
    font-size: 14px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    box-shadow: var(--shadow-blue);
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
}

/* MOBILE MENU */

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.25s ease;
}

.nav-toggle.is-active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* BASE TYPOGRAPHY */

main {
    background: var(--black);
}

section {
    position: relative;
    padding: 92px 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--white);
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(3.2rem, 6.4vw, 6.1rem);
    line-height: 0.95;
    max-width: 1050px;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.35rem);
    line-height: 1.03;
    max-width: 960px;
}

h3 {
    font-size: clamp(1.22rem, 2vw, 1.55rem);
    line-height: 1.16;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

strong {
    color: var(--gold);
}

ul,
ol {
    color: var(--muted);
}

li {
    line-height: 1.6;
    margin-bottom: 9px;
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.subtitle {
    max-width: 850px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: clamp(1.05rem, 1.75vw, 1.30rem);
    line-height: 1.58;
}

.hero-actions,
.google-review-actions,
.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn,
.google-review-button,
.google-review-secondary {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.google-review-button:hover,
.google-review-secondary:hover {
    transform: translateY(-1px);
}

.btn-primary,
.google-review-button {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover,
.google-review-button:hover {
    background: var(--blue-hover);
}

.btn-secondary,
.google-review-secondary {
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover,
.google-review-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-large {
    min-height: 58px;
    padding: 0 32px;
    font-size: 16px;
}

/* =========================================================
   HOME - HERO PRINCIPAL
   ========================================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 92px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 12%, rgba(215, 185, 87, 0.15) 0%, rgba(0, 0, 0, 0) 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 113, 227, 0.10) 0%, rgba(0, 0, 0, 0) 28%),
        linear-gradient(180deg, #050505 0%, #000000 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-content {
    max-width: 1120px;
    margin: 0 auto;
}

.hero h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
}

.hero .hero-actions {
    justify-content: center;
    margin-top: 34px;
}

.hero-small {
    max-width: 780px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* =========================================================
   HOME - CALCULADORA
   ========================================================= */

.calculator-section {
    padding: 98px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 185, 87, 0.11), rgba(0,0,0,0) 34%),
        linear-gradient(180deg, #000000 0%, #061b18 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.calculator-section .container > .section-label,
.calculator-section .container > h2,
.calculator-section .container > p {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.calculator-section .container > h2 {
    max-width: 940px;
}

.calculator-section .container > p {
    max-width: 820px;
    margin-top: 18px;
}

.calculator-wrapper {
    width: min(100%, 1040px);
    margin: 42px auto 0;
    display: grid;
    gap: 24px;
}

.calculator-card {
    padding: 38px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(12, 45, 40, 0.90), rgba(5, 18, 16, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow-card);
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: end;
}

.form-group {
    display: grid;
    gap: 9px;
}

.calculator-full {
    grid-column: 1 / 2;
}

label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    font-size: 16px;
    outline: none;
}

textarea {
    min-height: 130px;
    padding-top: 16px;
    resize: vertical;
}

select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,.78) 50%),
        linear-gradient(135deg, rgba(255,255,255,.78) 50%, transparent 50%);
    background-position:
        calc(100% - 24px) 26px,
        calc(100% - 17px) 26px;
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
}

option {
    background: #0b0f0e;
    color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(215, 185, 87, 0.52);
    box-shadow: 0 0 0 4px rgba(215, 185, 87, 0.10);
}

.calculator-submit {
    margin-top: 24px;
    min-width: 230px;
}

.calculator-result-card {
    padding: 34px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(0, 113, 227, 0.12), rgba(12, 45, 40, 0.70));
    border: 1px solid rgba(0, 113, 227, 0.28);
    box-shadow: var(--shadow-card);
}

.result-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.calculator-result-card h3 {
    margin-bottom: 18px;
}

.result-meter {
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 20px;
}

.result-meter-fill {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    transition: width 0.5s ease;
}

.result-alert {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.6;
    font-size: 0.95rem;
}

.calculator-whatsapp {
    margin-top: 24px;
}

/* =========================================================
   HOME - CTA APÓS CALCULADORA
   ========================================================= */

.cta-section {
    padding: 96px 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.12), rgba(0,0,0,0) 36%),
        #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cta-section h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.cta-section p {
    max-width: 820px;
    margin: 20px auto 0;
}

.cta-section .hero-actions {
    justify-content: center;
    margin-top: 32px;
}

/* =========================================================
   HOME - AUTORIDADE
   ========================================================= */

.authority-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(215, 185, 87, 0.10), rgba(0,0,0,0) 32%),
        linear-gradient(180deg, #000000 0%, #050505 100%);
}

.authority-section h2 {
    max-width: 940px;
}

.authority-section .container > p {
    max-width: 850px;
    margin-top: 22px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.metric-card,
.metric-box,
.result-box {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: var(--shadow-card);
}

.metric-card strong,
.metric-box strong,
.result-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.metric-card span,
.metric-box span,
.result-box span {
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.45;
}

/* =========================================================
   HOME - SOLUÇÕES
   ========================================================= */

.solutions-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, #050505 0%, #061b18 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.solutions-section h2 {
    max-width: 930px;
}

.solutions-section .container > p {
    max-width: 830px;
    margin-top: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.card,
.step,
.credito-card,
.segmento-card,
.case-card,
.value-card,
.info-card,
.about-card,
.contact-card,
.diag-card,
.faq-block,
.faq-item,
.timeline-card,
.terms-document,
.privacy-document,
.profile-panel,
.profile-box,
.process-box,
.note-panel,
.security-panel,
.form-card,
.state-card,
.cidades-coluna,
.cities-cta-box {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.032));
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.card h3,
.step h3,
.credito-card h3,
.segmento-card h3,
.case-card h3,
.value-card h3,
.info-card h3,
.faq-block h3,
.faq-item h3,
.diag-card h3,
.contact-card h3,
.about-card h3 {
    margin-bottom: 12px;
}

.card p,
.step p,
.credito-card p,
.segmento-card p,
.case-card p,
.value-card p,
.info-card p,
.faq-block p,
.faq-item p,
.diag-card p,
.contact-card p,
.about-card p {
    font-size: 16px;
}

/* =========================================================
   HOME - PROCESSO
   ========================================================= */

.process-section {
    padding: 100px 0;
    background: #000000;
}

.process-section h2 {
    max-width: 900px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 42px;
}

.step {
    min-height: 100%;
}

.step-number,
.timeline-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(215, 185, 87, 0.14);
    border: 1px solid rgba(215, 185, 87, 0.32);
    color: var(--gold);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

/* =========================================================
   HOME - GOOGLE REVIEW
   ========================================================= */

.google-review-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.13), rgba(0,0,0,0) 34%),
        linear-gradient(180deg, #000000 0%, #061b18 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.google-review-content {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.google-review-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.google-review-content h2 {
    margin-left: auto;
    margin-right: auto;
}

.google-review-content p {
    max-width: 780px;
    margin: 20px auto 0;
}

.google-review-actions {
    justify-content: center;
    margin-top: 32px;
}

/* =========================================================
   HOME - CIDADES
   ========================================================= */

.cidades-atendidas {
    padding: 100px 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(215, 185, 87, 0.10), rgba(0,0,0,0) 32%),
        #000000;
}

.cidades-atendidas .section-label,
.cidades-atendidas h2,
.cidades-atendidas .cidades-subtitulo {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cidades-atendidas h2 {
    max-width: 980px;
}

.cidades-subtitulo {
    max-width: 820px;
    margin-top: 20px;
}

.cidades-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.cidades-coluna ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.cidades-coluna li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   HOME - CTA FINAL
   ========================================================= */

.final-cta {
    padding: 105px 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 185, 87, 0.11), rgba(0,0,0,0) 34%),
        linear-gradient(180deg, #061b18 0%, #000000 100%);
}

.final-cta h2 {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    max-width: 780px;
    margin: 20px auto 0;
}

.final-cta .hero-actions {
    justify-content: center;
    margin-top: 32px;
}

/* =========================================================
   PÁGINAS INTERNAS - HERO GENÉRICO
   ========================================================= */

.index-hero,
.about-hero,
.how-hero,
.diag-hero,
.contact-hero,
.creditos-hero,
.segmentos-hero,
.faq-hero,
.privacy-hero,
.cases-hero,
.terms-hero,
.advanced-hero {
    min-height: 74vh;
    display: flex;
    align-items: center;
    padding: 136px 0 86px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 12%, rgba(215, 185, 87, 0.16) 0%, rgba(0, 0, 0, 0) 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 113, 227, 0.10) 0%, rgba(0, 0, 0, 0) 28%),
        linear-gradient(180deg, #050505 0%, #000000 100%);
}

.index-hero-content,
.about-hero-content,
.how-hero-content,
.diag-hero-content,
.contact-hero-content,
.creditos-hero-content,
.segmentos-hero-content,
.faq-hero-content,
.privacy-hero-content,
.cases-hero-content,
.advanced-hero-content {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.index-hero h1,
.about-hero h1,
.how-hero h1,
.diag-hero h1,
.contact-hero h1,
.creditos-hero h1,
.segmentos-hero h1,
.faq-hero h1,
.privacy-hero h1,
.cases-hero h1,
.terms-hero h1,
.advanced-hero h1 {
    margin-left: auto;
    margin-right: auto;
}

/* PÁGINAS INTERNAS - GRIDS */

.about-section,
.timeline-section,
.diag-section,
.contact-section,
.creditos-section,
.segmentos-section,
.faq-section,
.privacy-section,
.cases-section,
.terms-section,
.advanced-section,
.cities-section {
    background:
        radial-gradient(circle at 18% 0%, rgba(215, 185, 87, 0.10), rgba(0,0,0,0) 30%),
        linear-gradient(180deg, #000000 0%, #061b18 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid,
.contact-grid,
.diag-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.creditos-grid,
.segmentos-grid,
.cases-grid,
.values-grid,
.info-grid,
.states-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.terms-document,
.privacy-document {
    max-width: 1080px;
    margin: 0 auto;
}

.terms-document h2,
.privacy-document h2 {
    margin-bottom: 20px;
}

.terms-document h3,
.privacy-document h3 {
    margin-top: 34px;
    margin-bottom: 12px;
}

.terms-document p,
.privacy-document p {
    margin-bottom: 15px;
}

.terms-document ul,
.privacy-document ul {
    margin: 14px 0 24px 20px;
    padding-left: 14px;
}

.timeline,
.faq-container,
.process-list {
    display: grid;
    gap: 18px;
}

.timeline {
    max-width: 1040px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: start;
}

/* TAGS / ALERTS */

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.profile-tags span,
.case-tag,
.cities-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(215, 185, 87, 0.10);
    border: 1px solid rgba(215, 185, 87, 0.24);
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.case-tag {
    margin-bottom: 16px;
}

.terms-highlight,
.terms-alert,
.privacy-highlight,
.privacy-alert,
.warning-box,
.security-box,
.faq-alert,
.footer-security,
.result-alert {
    border-radius: var(--radius-lg);
    padding: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.terms-highlight,
.privacy-highlight {
    background: rgba(215, 185, 87, 0.08);
    border-color: rgba(215, 185, 87, 0.22);
}

.terms-alert,
.privacy-alert,
.warning-box,
.security-box,
.faq-alert {
    background: rgba(0, 113, 227, 0.10);
    border-color: rgba(0, 113, 227, 0.28);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 68px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 1fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.footer h3 {
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer p,
.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}

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

.footer-security {
    margin-top: 38px;
}

.footer-bottom {
    margin-top: 42px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

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

@media (max-width: 1120px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-cta {
        padding: 0 18px;
    }

    h1 {
        font-size: clamp(2.9rem, 6.6vw, 5.35rem);
    }

    h2 {
        font-size: clamp(2.15rem, 4.7vw, 4rem);
    }
}

@media (max-width: 980px) {
    .nav {
        min-height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        padding: 98px 20px 28px;
        background:
            radial-gradient(circle at top left, rgba(215, 185, 87, 0.18), rgba(0, 0, 0, 0) 36%),
            radial-gradient(circle at bottom right, rgba(0, 113, 227, 0.16), rgba(0, 0, 0, 0) 36%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(4, 21, 19, 0.98) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 9px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 17px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 16px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.90);
    }

    .nav-menu .nav-link::after {
        content: "›";
        color: rgba(215, 185, 87, 0.85);
        font-size: 22px;
    }

    .nav-menu .nav-cta {
        width: 100%;
        min-height: 54px;
        margin-top: 10px;
        font-size: 17px;
    }

    .hero {
        min-height: auto;
        padding: 126px 0 76px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 8.4vw, 4.8rem);
    }

    .calculator-grid,
    .cards,
    .steps,
    .metrics-grid,
    .cidades-grid,
    .about-grid,
    .contact-grid,
    .diag-grid,
    .creditos-grid,
    .segmentos-grid,
    .cases-grid,
    .values-grid,
    .info-grid,
    .states-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .calculator-full {
        grid-column: auto;
    }

    .calculator-card {
        padding: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-actions,
    .google-review-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-actions a,
    .google-review-actions a,
    .form-actions .btn,
    .form-actions a {
        width: 100%;
    }

    section,
    .calculator-section,
    .cta-section,
    .authority-section,
    .solutions-section,
    .process-section,
    .google-review-section,
    .cidades-atendidas,
    .final-cta {
        padding-top: 76px;
        padding-bottom: 76px;
    }
}

@media (max-width: 640px) {
    .container,
    .google-review-content,
    .index-hero-content,
    .about-hero-content,
    .how-hero-content,
    .diag-hero-content,
    .contact-hero-content,
    .creditos-hero-content,
    .segmentos-hero-content,
    .faq-hero-content,
    .privacy-hero-content,
    .cases-hero-content,
    .advanced-hero-content {
        width: min(100% - 32px, 1180px);
    }

    .hero {
        padding: 112px 0 64px;
        text-align: left;
    }

    .hero h1 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        font-size: clamp(2.55rem, 12vw, 3.75rem);
        line-height: 0.98;
    }

    .hero .subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        font-size: 1.03rem;
    }

    .hero .hero-actions {
        justify-content: flex-start;
        align-items: stretch;
    }

    .hero-small {
        margin-left: 0;
        margin-right: 0;
    }

    h2 {
        font-size: clamp(2rem, 9.5vw, 3.1rem);
    }

    .calculator-section .container > .section-label,
    .calculator-section .container > h2,
    .calculator-section .container > p,
    .cidades-atendidas .section-label,
    .cidades-atendidas h2,
    .cidades-atendidas .cidades-subtitulo,
    .cta-section,
    .final-cta,
    .google-review-content {
        text-align: left;
    }

    .calculator-section .container > h2,
    .calculator-section .container > p,
    .cidades-atendidas h2,
    .cidades-subtitulo,
    .cta-section h2,
    .cta-section p,
    .final-cta h2,
    .final-cta p,
    .google-review-content h2,
    .google-review-content p {
        margin-left: 0;
        margin-right: 0;
    }

    .calculator-card,
    .calculator-result-card,
    .card,
    .step,
    .metric-card,
    .credito-card,
    .segmento-card,
    .case-card,
    .value-card,
    .info-card,
    .about-card,
    .contact-card,
    .diag-card,
    .faq-block,
    .faq-item,
    .timeline-card,
    .terms-document,
    .privacy-document,
    .profile-panel,
    .profile-box,
    .process-box,
    .note-panel,
    .security-panel,
    .form-card,
    .state-card,
    .cidades-coluna,
    .cities-cta-box {
        padding: 24px;
        border-radius: 23px;
    }

    .btn,
    .btn-large,
    .google-review-button,
    .google-review-secondary {
        min-height: 54px;
        padding: 0 22px;
        font-size: 15px;
    }

    .logo-ict {
        font-size: 13px;
        letter-spacing: 0.18em;
    }

    .footer {
        padding-top: 54px;
    }

    .eyebrow,
    .section-label,
    .google-review-label {
        font-size: 11px;
        letter-spacing: 0.26em;
    }
}

@media (max-height: 720px) and (max-width: 980px) {
    .nav-menu {
        padding-top: 86px;
    }

    .nav-menu .nav-link {
        min-height: 45px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 15px;
    }
}