:root {
    --navy: #0b1f33;
    --navy-dark: #071522;
    --green: #006837;
    --green-dark: #004f2a;
    --red: #d71920;
    --gray-50: #f5f7fa;
    --gray-100: #e4e9ef;
    --gray-500: #64748b;
    --gray-900: #172033;
    --white: #ffffff;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gray-900);
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* Cabeçalho */

.site-header {
    position: relative;
    z-index: 20;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 4px 18px rgba(11, 31, 51, 0.08);
}

.header-content {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    width: 270px;
    height: 52px;
    margin-right: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.brand img {
    width: 245px;
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateY(1px);
    object-fit: contain;
    object-position: left center;
}

.header-location {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

/* Botões */

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-header,
.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-header:hover,
.button-primary:hover {
    background: var(--green-dark);
}

.button-secondary {
    color: var(--green);
    background: var(--white);
    border-color: var(--green);
}

.button-secondary:hover {
    background: #f1faf5;
}

/* Primeira dobra */

.hero {
    padding: 58px 0 30px;
    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(0, 104, 55, 0.10),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6f8fa 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.hero-content {
    max-width: 660px;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-size: 13px;
    font-weight: 700;
}

h1 {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.hero-description {
    max-width: 620px;
    margin-bottom: 24px;
    color: #3f4b5c;
    font-size: 18px;
    line-height: 1.58;
}

/* Credenciais */

.credential-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.credential-card {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(11, 31, 51, 0.07);
}

.credential-card img {
    width: 100%;
    max-height: 88px;
    object-fit: contain;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Imagem Siemens */

.hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(0, 104, 55, 0.06);
}

.hero-equipment {
    position: relative;
    z-index: 2;
    width: min(100%, 580px);
    object-fit: contain;
    filter: drop-shadow(
        0 24px 24px rgba(11, 31, 51, 0.20)
    );
}

.specialist-badge {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 40px;
    width: 128px;
    padding: 8px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.18);
}

.specialist-badge img {
    width: 100%;
    border-radius: 50%;
}

/* Barra de confiança */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 46px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.07);
}

.trust-item {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 18px;
    border-right: 1px solid var(--gray-100);
    text-align: center;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 14px;
}

.trust-item span {
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.35;
}

.mobile-whatsapp {
    display: none;
}

/* Serviços de incêndio */

.fire-services {
    padding: 86px 0;
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.section-heading > p:last-child {
    color: var(--gray-500);
    font-size: 17px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 255px;
    padding: 24px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.06);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 25, 32, 0.28);
    box-shadow: 0 18px 38px rgba(11, 31, 51, 0.10);
}

.service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.2;
}

.service-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.58;
}

.services-cta {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 16px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.services-cta div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.services-cta strong {
    font-size: 20px;
    line-height: 1.25;
}

.services-cta span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.45;
}

.services-cta .button-primary {
    flex-shrink: 0;
    background: var(--green);
} 

/* Segurança eletrônica e cabeamento estruturado */

.complementary-services {
    padding: 86px 0;
    background:
        linear-gradient(
            180deg,
            #f7f9fb 0%,
            #eef2f5 100%
        );
}

.complementary-heading {
    margin-bottom: 42px;
}

.complementary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.complementary-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--gray-100);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(11, 31, 51, 0.08);
}

.security-card {
    border-top: 4px solid var(--green);
}

.network-card {
    border-top: 4px solid var(--navy);
}

.complementary-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.complementary-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.security-card .complementary-number {
    background: var(--green);
}

.complementary-label {
    display: block;
    margin-bottom: 4px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.complementary-card h3 {
    color: var(--navy);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.6px;
}

.complementary-description {
    margin-bottom: 24px;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.complementary-items {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.complementary-item {
    padding: 16px 18px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: #fbfcfd;
}

.complementary-item strong,
.complementary-item span {
    display: block;
}

.complementary-item strong {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 15px;
}

.complementary-item span {
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.5;
}

.text-link {
    width: fit-content;
    margin-top: auto;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--green);
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
}

.text-link:hover {
    color: var(--green-dark);
    border-color: var(--green-dark);
}

/* Como funciona o atendimento */

.process-section {
    padding: 82px 0;
    background: var(--white);
}

.process-heading {
    margin-bottom: 42px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 31px;
    right: 11%;
    left: 11%;
    height: 2px;
    background: var(--gray-100);
}

.process-card {
    position: relative;
    z-index: 2;
    padding: 0 16px 24px;
    text-align: center;
}

.process-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 8px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 8px 24px rgba(0, 104, 55, 0.20);
    font-size: 14px;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.2;
}

.process-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.58;
}

.process-contact {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 32px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    background: #f7f9fb;
}

.process-contact-copy {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.process-contact-copy span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-contact-copy strong {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.3;
}

.process-contact .button {
    flex-shrink: 0;
}

/* Formulário de avaliação técnica */

.assessment-section {
    padding: 82px 0;
    background:
        linear-gradient(
            135deg,
            var(--navy-dark) 0%,
            var(--navy) 100%
        );
}

.assessment-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 58px;
}

.assessment-content {
    padding-top: 28px;
    color: var(--white);
}

.assessment-content .section-kicker {
    color: #7de0ad;
}

.assessment-content h2 {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.assessment-description {
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.65;
}

.assessment-benefits {
    display: grid;
    gap: 14px;
}

.assessment-benefit {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.assessment-benefit strong,
.assessment-benefit span {
    display: block;
}

.assessment-benefit strong {
    margin-bottom: 6px;
    font-size: 15px;
}

.assessment-benefit span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    line-height: 1.5;
}

.assessment-form {
    padding: 34px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.form-heading {
    margin-bottom: 26px;
}

.form-heading h3 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 26px;
}

.form-heading p {
    color: var(--gray-500);
    font-size: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cfd7df;
    border-radius: 9px;
    background: var(--white);
    color: var(--gray-900);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.form-field input,
.form-field select {
    min-height: 48px;
    padding: 10px 13px;
}

.form-field textarea {
    min-height: 130px;
    padding: 13px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 104, 55, 0.12);
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--green);
}

.form-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    cursor: pointer;
}

.form-notice {
    margin-top: 12px;
    color: var(--gray-500);
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

/* FAQ */

.faq-section {
    padding: 82px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 64px;
}

.faq-introduction {
    position: sticky;
    top: 30px;
}

.faq-introduction h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.faq-introduction > p:not(.section-kicker) {
    margin-bottom: 26px;
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: #fbfcfd;
}

.faq-item summary {
    position: relative;
    padding: 20px 52px 20px 22px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--green);
    font-size: 24px;
    font-weight: 500;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
}

.faq-item p {
    padding: 18px 22px 22px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.65;
}

/* CTA final */

.final-cta {
    padding: 72px 0;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.final-cta-content > div {
    max-width: 760px;
}

.final-cta-label {
    margin-bottom: 10px;
    color: #7de0ad;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.final-cta-content p:last-child {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.6;
}

.final-cta-button {
    min-width: 250px;
    flex-shrink: 0;
    color: var(--white);
    background: var(--green);
}

.final-cta-button:hover {
    background: var(--green-dark);
}

/* Rodapé */

.site-footer {
    padding: 58px 0 22px;
    color: rgba(255, 255, 255, 0.74);
    background: #061421;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 0.9fr;
    gap: 42px;
    padding-bottom: 42px;
}

.footer-brand img {
    width: 220px;
    margin-bottom: 18px;
    background: var(--white);
}

.footer-brand p {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.65;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 15px;
}

.footer-column a,
.footer-column span {
    font-size: 13px;
    line-height: 1.5;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 12px;
}

/* Página de política de privacidade */

.legal-page {
    background: #f5f7fa;
}

.legal-main {
    padding: 64px 0 82px;
}

.legal-content {
    max-width: 900px;
    padding: 52px 58px;
    border: 1px solid var(--gray-100);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 48px rgba(11, 31, 51, 0.08);
}

.legal-heading {
    margin-bottom: 42px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-100);
}

.legal-heading h1 {
    margin-bottom: 12px;
    font-size: clamp(38px, 5vw, 54px);
}

.legal-heading > p:last-child {
    color: var(--gray-500);
    font-size: 13px;
}

.legal-content section {
    margin-bottom: 34px;
}

.legal-content h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.25;
}

.legal-content p,
.legal-content li {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.legal-content p + p {
    margin-top: 12px;
}

.legal-content ul {
    margin-top: 12px;
    padding-left: 22px;
}

.legal-content li + li {
    margin-top: 7px;
}

.legal-content a:not(.button) {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 46px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-100);
}

.legal-footer {
    padding-top: 22px;
}

/* Tablet e celular */

@media (max-width: 900px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-content {
        min-height: 66px;
        gap: 14px;
    }

    .brand {
        width: 185px;
        height: 44px;
    }

    .brand img {
        width: 175px;
        transform: translate(1px);
    }
 
    .header-location,
    .button-header {
        display: none;
    }

    .hero {
        padding: 30px 0 94px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        max-width: none;
    }

    .eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    h1 {
        margin-bottom: 16px;
        font-size: clamp(34px, 9vw, 48px);
        letter-spacing: -1px;
    }

    .hero-description {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .credential-row {
        grid-template-columns: 1fr;
    }

    .credential-card {
        min-height: 92px;
    }

    .credential-card img {
        max-height: 76px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-visual::before {
        width: 300px;
        height: 300px;
    }

    .hero-equipment {
        width: min(100%, 470px);
    }

    .specialist-badge {
        right: 0;
        bottom: 0;
        width: 105px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .trust-item {
        min-height: 58px;
        align-items: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--gray-100);
        text-align: left;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .mobile-whatsapp {
        position: fixed;
        z-index: 50;
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 10px;
        color: var(--white);
        background: var(--green);
        box-shadow: 0 12px 30px rgba(0, 81, 43, 0.34);
        font-size: 16px;
        font-weight: 700;
    }

        .fire-services {
        padding: 64px 0 96px;
    }

    .section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading > p:last-child {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card {
        min-height: auto;
    }

    .services-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .services-cta .button {
        width: 100%;
    }

        .complementary-services {
        padding: 64px 0 96px;
    }

    .complementary-grid {
        grid-template-columns: 1fr;
    }

    .complementary-card {
        padding: 28px;
    }

        .process-section {
        padding: 64px 0 96px;
    }

    .process-heading {
        margin-bottom: 32px;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
    }

    .process-grid::before {
        display: none;
    }

    .process-card {
        padding: 22px;
        border: 1px solid var(--gray-100);
        border-radius: 14px;
        background: var(--white);
        box-shadow: 0 10px 26px rgba(11, 31, 51, 0.06);
        text-align: left;
    }

    .process-number {
        width: 48px;
        height: 48px;
        margin: 0 0 18px;
        border-width: 0;
        border-radius: 12px;
    }

    .process-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .process-contact .button {
        width: 100%;
    }

        .assessment-section {
        padding: 64px 0 96px;
    }

    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .assessment-content {
        padding-top: 0;
    }

    .assessment-content h2 {
        font-size: 36px;
    }

    .assessment-form {
        padding: 28px;
    }

        .faq-section {
        padding: 64px 0 96px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .faq-introduction {
        position: static;
    }

    .faq-introduction h2 {
        font-size: 36px;
    }

    .final-cta {
        padding: 58px 0 96px;
    }

    .final-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .final-cta-button {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .legal-main {
        padding: 38px 0 96px;
    }

    .legal-content {
        padding: 38px 32px;
    }
}



@media (max-width: 520px) {
    .brand {
        width: 170px;
        height: 42px;
    }

    .brand img {
        width: 160px;
        transform: translate(1px);

    } 
 
    h1 {
        font-size: 35px;
    }

    .hero-visual {
        margin-top: 4px;
    }

    .specialist-badge {
        width: 88px;
    }

        .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }

    .services-cta {
        padding: 24px 20px;
    }

    .services-cta strong {
        font-size: 18px;
    }

        .complementary-card {
        padding: 22px;
    }

    .complementary-card-header {
        align-items: flex-start;
    }

    .complementary-card h3 {
        font-size: 24px;
    }

    .complementary-description {
        font-size: 15px;
    }

    .complementary-item {
        padding: 15px;
    }

        .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 20px;
    }

    .process-contact {
        padding: 24px 20px;
    }

    .process-contact-copy strong {
        font-size: 18px;
    }

        .assessment-content h2 {
        font-size: 32px;
    }

    .assessment-description {
        font-size: 15px;
    }

    .assessment-form {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-heading h3 {
        font-size: 23px;
    }

        .faq-introduction h2 {
        font-size: 32px;
    }

    .faq-item summary {
        padding: 18px 48px 18px 18px;
    }

    .faq-item p {
        padding: 16px 18px 20px;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand img {
        width: 190px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

        .legal-content {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .legal-heading {
        margin-bottom: 32px;
    }

    .legal-heading h1 {
        font-size: 36px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }

    .legal-actions {
        flex-direction: column;
    }

    .legal-actions .button {
        width: 100%;
    }
}