/* =========================================================
   COSMOTEC - DEDETIZACAO.CSS
========================================================= */

:root {
    --navy: #061522;
    --navy-2: #0a2136;
    --navy-3: #0d2b46;

    --blue: #0589d8;
    --blue-2: #21a7ef;

    --gold: #f58220;
    --gold-2: #ff9d3d;

    --text: #112233;
    --muted: #617083;

    --line: #dfe7ed;
    --bg: #f5f8fb;

    --white: #ffffff;
    --green: #25d366;

    --shadow:
        0 24px 70px rgba(6, 21, 34, 0.14);

    --shadow-soft:
        0 18px 45px rgba(6, 21, 34, 0.09);

    --container:
        min(1180px, calc(100% - 40px));
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--text);
    background: #ffffff;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin-inline: auto;
}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

.skip-link {
    position: fixed;

    top: -100px;
    left: 16px;

    z-index: 9999;

    padding: 12px 18px;

    border-radius: 10px;

    background: #ffffff;
    color: var(--navy);

    font-weight: 800;
}

.skip-link:focus {
    top: 16px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    inset: 0 0 auto;

    z-index: 1000;

    height: 88px;

    display: flex;
    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        height 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {
    height: 76px;

    background:
        rgba(6, 21, 34, 0.95);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 172px;

    height: auto;
    max-height: 62px;

    object-fit: contain;
}


/* =========================================================
   MENU DESKTOP
========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: auto;
}

.desktop-nav a {
    position: relative;

    padding: 12px 0;

    color:
        rgba(255, 255, 255, 0.85);

    font-size: 0.91rem;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 5px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #ffffff;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


/* =========================================================
   AÇÕES HEADER
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
    min-height: 46px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 14px;

    font-weight: 800;

    line-height: 1;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 19px;
    height: 19px;

    fill: currentColor;
}

.btn-phone {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.09);

    border:
        1px solid rgba(255, 255, 255, 0.15);
}

.btn-budget {
    color: #1d2530;

    background: var(--gold);

    box-shadow:
        0 10px 24px rgba(245, 130, 32, 0.22);
}

.btn-primary {
    color: #1d2530;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-2)
        );

    box-shadow:
        0 16px 35px rgba(245, 130, 32, 0.25);
}

.btn-dark {
    color: #ffffff;

    background: var(--navy);

    box-shadow:
        0 14px 30px rgba(6, 21, 34, 0.15);
}

.btn-outline-light {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.28);
}

.btn-whatsapp {
    color: #ffffff;

    background: var(--green);
}

.btn-lg {
    min-height: 56px;

    padding: 0 24px;

    border-radius: 16px;
}

.full {
    width: 100%;
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
    display: block;

    height: 2px;

    margin: 5px 0;

    border-radius: 3px;

    background: #ffffff;
}

.mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 1090;

    background:
        rgba(0, 0, 0, 0.58);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 1100;

    width:
        min(86vw, 380px);

    padding: 26px;

    display: flex;
    flex-direction: column;

    background:
        #071a2b;

    box-shadow:
        -25px 0 70px rgba(0, 0, 0, 0.3);

    transform:
        translateX(105%);

    transition:
        transform 0.38s cubic-bezier(.2, .8, .2, 1);
}

body.menu-open .mobile-overlay {
    opacity: 1;

    pointer-events: auto;
}

body.menu-open .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    color: #ffffff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1.2rem;
    font-weight: 800;
}

.mobile-menu-close {
    border: 0;

    background: transparent;

    color: #ffffff;

    font-size: 2rem;
}

.mobile-nav {
    display: flex;

    flex-direction: column;

    padding: 24px 0;
}

.mobile-nav a {
    padding: 14px 0;

    color: #ffffff;

    font-size: 1.06rem;
    font-weight: 800;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a.active {
    color: var(--gold);
}

.mobile-contact {
    margin-top: auto;

    display: grid;

    gap: 10px;
}


/* =========================================================
   HERO DEDETIZAÇÃO
========================================================= */

.service-hero {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--navy);

    color: #ffffff;
}

.service-hero-image {
    position: absolute;

    inset: 0;
}

.service-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.service-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 25, 0.97) 0%,
            rgba(4, 15, 25, 0.89) 38%,
            rgba(4, 15, 25, 0.57) 65%,
            rgba(4, 15, 25, 0.48) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 15, 25, 0.5),
            rgba(4, 15, 25, 0.05)
        );
}

.service-hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    opacity: 0.2;
}

.service-hero-glow-one {
    width: 420px;
    height: 420px;

    right: -100px;
    top: 80px;

    background: var(--blue);
}

.service-hero-glow-two {
    width: 300px;
    height: 300px;

    left: 38%;
    bottom: -170px;

    background: var(--gold);
}

.service-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-top: 130px;
    padding-bottom: 95px;
}

.service-hero-copy {
    max-width: 790px;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    flex: 0 0 auto;

    background: currentColor;
}

.eyebrow.dark {
    color: #0e82c4;
}


/* =========================================================
   HERO CONTEÚDO
========================================================= */

.service-hero h1 {
    max-width: 780px;

    margin:
        20px 0 22px;

    color: #ffffff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            5.1rem
        );

    line-height: 1.02;

    letter-spacing: -0.045em;
}

.service-hero h1 strong {
    display: block;

    color: #ffffff;
}

.service-hero-copy > p {
    max-width: 690px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 1.08rem;

    line-height: 1.8;
}

.service-hero-ctas {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.service-hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 0.9rem;
    font-weight: 700;
}

.service-hero-points span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.service-hero-points i {
    color: var(--gold);

    font-style: normal;
}


/* =========================================================
   SEÇÕES GERAIS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 48px;
}

.section-heading h2,
.service-intro-title h2,
.warning-copy h2,
.professional-service-copy h2,
.service-cta-box h2 {
    margin:
        14px 0 0;

    color: var(--navy);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(
            2.1rem,
            3.7vw,
            3.8rem
        );

    line-height: 1.07;

    letter-spacing: -0.035em;
}

.section-heading > p {
    margin: 0;

    color: var(--muted);

    font-size: 1.02rem;
}

.section-heading.centered {
    display: block;

    max-width: 820px;

    margin:
        0 auto 50px;

    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered p {
    max-width: 680px;

    margin:
        14px auto 0;

    color: var(--muted);
}


/* =========================================================
   INTRODUÇÃO
========================================================= */

.service-intro {
    background: #ffffff;
}

.service-intro-grid {
    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    gap: 90px;

    align-items: start;
}

.service-intro-title::after {
    content: "";

    display: block;

    width: 72px;
    height: 4px;

    margin-top: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-2)
        );
}

.service-intro-copy {
    padding-left: 42px;

    border-left:
        1px solid var(--line);
}

.service-intro-copy p {
    margin:
        0 0 20px;

    color: var(--muted);

    font-size: 0.98rem;

    line-height: 1.8;
}

.service-intro-copy p:last-child {
    margin-bottom: 0;
}

.service-intro-copy
.service-intro-lead {
    color: var(--text);

    font-size: 1.08rem;

    font-weight: 600;
}


/* =========================================================
   SERVIÇOS DE DEDETIZAÇÃO
========================================================= */

.pest-services {
    background: var(--bg);
}

.pest-services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 26px;
}

.pest-service-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(6, 21, 34, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pest-service-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(5, 137, 216, 0.25);

    box-shadow:
        0 26px 65px rgba(6, 21, 34, 0.13);
}


/* FOTO */

.pest-service-image {
    position: relative;

    height: 310px;

    overflow: hidden;

    background: var(--navy);
}

.pest-service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 20, 32, 0.55) 0%,
            rgba(5, 20, 32, 0.08) 55%,
            transparent 100%
        );

    pointer-events: none;
}

.pest-service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.pest-service-card:hover
.pest-service-image img {
    transform:
        scale(1.045);
}


/* NÚMERO */

.pest-service-number {
    position: absolute;

    right: 22px;
    bottom: 18px;

    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background:
        rgba(6, 21, 34, 0.72);

    backdrop-filter:
        blur(12px);

    color: var(--gold);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 0.9rem;
    font-weight: 900;

    line-height: 1;
}


/* CONTEÚDO */

.pest-service-content {
    padding: 32px;
}

.service-label {
    display: inline-block;

    color: #0c83c5;

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.pest-service-content h3 {
    margin:
        10px 0 15px;

    color: var(--navy);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1.55rem;

    line-height: 1.18;

    letter-spacing: -0.02em;
}

.pest-service-content p {
    margin:
        0 0 14px;

    color: var(--muted);

    font-size: 0.91rem;

    line-height: 1.72;
}

.pest-service-content p:last-of-type {
    margin-bottom: 24px;
}


/* BOTÃO CARD */

.service-budget-link {
    padding: 0;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-weight: 900;

    transition:
        color 0.2s ease;
}

.service-budget-link span {
    color: var(--gold);

    font-size: 1.25rem;

    transition:
        transform 0.25s ease;
}

.service-budget-link:hover {
    color: var(--blue);
}

.service-budget-link:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   SINAIS DE INFESTAÇÃO
========================================================= */

.warning-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(5, 137, 216, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #061522,
            #09263d
        );

    color: #ffffff;
}

.warning-section::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -170px;
    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(245, 130, 32, 0.12);

    filter:
        blur(70px);
}

.warning-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 90px;

    align-items: center;
}

.warning-copy h2 {
    color: #ffffff;
}

.warning-copy > p {
    max-width: 550px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 1rem;

    line-height: 1.8;
}

.warning-list {
    display: grid;

    gap: 12px;
}

.warning-item {
    padding: 21px 22px;

    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 18px;

    align-items: start;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.055);

    backdrop-filter:
        blur(12px);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.warning-item:hover {
    transform:
        translateX(-4px);

    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(245, 130, 32, 0.28);
}

.warning-item > span {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        rgba(245, 130, 32, 0.13);

    color: var(--gold);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 0.8rem;
    font-weight: 900;

    line-height: 1;
}

.warning-item strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1rem;
}

.warning-item p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 0.84rem;

    line-height: 1.65;
}


/* =========================================================
   PROCESSO
========================================================= */

.pest-process {
    background: #ffffff;
}

.pest-process-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.pest-process-grid::before {
    content: "";

    position: absolute;

    top: 34px;
    left: 10%;
    right: 10%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d5e3ec 15%,
            #d5e3ec 85%,
            transparent
        );
}

.pest-process-item {
    position: relative;

    z-index: 2;

    padding:
        0 22px 28px;

    text-align: center;
}

.pest-process-number {
    width: 68px;
    height: 68px;

    margin:
        0 auto 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        7px solid #ffffff;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-3)
        );

    box-shadow:
        0 10px 28px rgba(6, 21, 34, 0.15);

    color: var(--gold);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 0.88rem;
    font-weight: 900;

    line-height: 1;
}

.pest-process-item h3 {
    margin:
        0 0 10px;

    color: var(--navy);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1.12rem;
}

.pest-process-item p {
    margin: 0;

    color: var(--muted);

    font-size: 0.86rem;

    line-height: 1.7;
}


/* =========================================================
   ATENDIMENTO PROFISSIONAL
========================================================= */

.professional-service {
    background: var(--bg);
}

.professional-service-grid {
    display: grid;

    grid-template-columns:
        1.03fr
        0.97fr;

    gap: 80px;

    align-items: center;
}

.professional-service-image {
    position: relative;

    min-height: 590px;

    overflow: hidden;

    border-radius: 32px;

    box-shadow: var(--shadow);
}

.professional-service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 15, 25, 0.58),
            transparent 52%
        );

    pointer-events: none;
}

.professional-service-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.professional-service-image:hover img {
    transform:
        scale(1.035);
}

.professional-image-detail {
    position: absolute;

    right: 28px;
    bottom: 28px;
    left: 28px;

    z-index: 3;

    padding: 22px 24px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 20px;

    background:
        rgba(6, 21, 34, 0.72);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);
}

.professional-image-detail span {
    display: block;

    color: var(--gold);

    font-size: 0.7rem;
    font-weight: 900;

    letter-spacing: 0.15em;
}

.professional-image-detail strong {
    display: block;

    margin-top: 5px;

    color: #ffffff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1.08rem;
}

.professional-service-copy > p {
    color: var(--muted);

    line-height: 1.78;
}

.professional-service-copy
.professional-lead {
    color: var(--text);

    font-size: 1.06rem;

    font-weight: 600;
}

.professional-points {
    display: grid;

    gap: 14px;

    margin:
        28px 0 32px;
}

.professional-point {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.professional-point span {
    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        #e6f5fd;

    color: #0b85c6;

    font-size: 0.84rem;
    font-weight: 900;
}

.professional-point p {
    margin: 2px 0 0;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.65;
}


/* =========================================================
   POR QUE COSMOTEC
========================================================= */

.why-cosmotec {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #071827,
            #09253a
        );

    color: #ffffff;
}

.why-cosmotec::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: -160px;

    border-radius: 50%;

    background:
        rgba(5, 137, 216, 0.14);

    filter:
        blur(70px);
}

.why-cosmotec
.section-heading {
    position: relative;

    z-index: 2;
}

.why-cosmotec
.section-heading h2 {
    color: #ffffff;
}

.why-cosmotec
.section-heading p {
    color:
        rgba(255, 255, 255, 0.64);
}

.why-cosmotec
.section-heading .eyebrow {
    color: var(--gold);
}

.why-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.why-card {
    position: relative;

    min-height: 270px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.05);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover {
    transform:
        translateY(-6px);

    background:
        rgba(255, 255, 255, 0.075);

    border-color:
        rgba(245, 130, 32, 0.25);
}

.why-card > span {
    position: absolute;

    top: 18px;
    right: 22px;

    color:
        rgba(255, 255, 255, 0.08);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 3.4rem;
    font-weight: 900;

    line-height: 1;
}

.why-card::before {
    content: "";

    display: block;

    width: 42px;
    height: 4px;

    margin-bottom: 55px;

    border-radius: 20px;

    background: var(--gold);
}

.why-card h3 {
    margin:
        0 0 12px;

    color: #ffffff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1.15rem;
}

.why-card p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 0.86rem;

    line-height: 1.7;
}


/* =========================================================
   CTA FINAL
========================================================= */

.service-cta {
    padding:
        110px 0;

    background: #ffffff;
}

.service-cta-box {
    position: relative;

    padding: 58px;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 55px;

    align-items: center;

    overflow: hidden;

    border-radius: 30px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(31, 160, 225, 0.32),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0a2740,
            #0b1623
        );

    box-shadow:
        0 24px 65px rgba(6, 21, 34, 0.15);
}

.service-cta-box::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    bottom: -130px;

    border-radius: 50%;

    background:
        rgba(245, 130, 32, 0.16);

    filter:
        blur(20px);
}

.service-cta-box > * {
    position: relative;

    z-index: 2;
}

.service-cta-box h2 {
    max-width: 720px;

    color: #ffffff;
}

.service-cta-box p {
    max-width: 670px;

    margin-bottom: 0;

    color:
        rgba(255, 255, 255, 0.7);
}

.service-cta-actions {
    min-width: 225px;

    display: grid;

    gap: 12px;
}


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

.site-footer {
    padding:
        76px 0 24px;

    background:
        #03111c;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.7fr
        0.7fr;

    gap: 70px;
}

.footer-brand p {
    max-width: 430px;

    color:
        rgba(255, 255, 255, 0.55);
}

.footer-logo img {
    width: 190px;

    height: auto;
    max-height: 70px;

    object-fit: contain;
}

.site-footer h3 {
    margin:
        0 0 18px;

    color: var(--gold);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 1rem;
}

.site-footer
.footer-grid > div:not(.footer-brand) {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.site-footer
.footer-grid > div:not(.footer-brand) a,
.footer-button {
    margin: 6px 0;

    padding: 0;

    border: 0;

    background: none;

    color:
        rgba(255, 255, 255, 0.65);

    transition:
        color 0.2s ease;
}

.site-footer
.footer-grid > div:not(.footer-brand) a:hover,
.footer-button:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 52px;

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.09);

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 0.77rem;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.floating-whatsapp,
.scroll-top {
    position: fixed;

    bottom: 24px;

    z-index: 900;

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp {
    right: 24px;

    min-height: 58px;

    padding:
        0 18px 0 14px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 18px;

    background: var(--green);

    color: #ffffff;

    font-weight: 900;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp svg {
    width: 30px;

    fill: #ffffff;
}


/* =========================================================
   VOLTAR AO TOPO
========================================================= */

.scroll-top {
    left: 24px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 16px;

    background: var(--navy);

    color: #ffffff;

    opacity: 0;

    transform:
        translateY(12px);

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.scroll-top.show {
    opacity: 1;

    transform: none;

    pointer-events: auto;
}

.scroll-top svg {
    width: 25px;

    fill: currentColor;
}


/* =========================================================
   MODAL
========================================================= */

.modal-backdrop {
    position: fixed;

    inset: 0;

    z-index: 2000;

    padding: 20px;

    display: grid;

    place-items: center;

    background:
        rgba(2, 10, 18, 0.72);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.25s ease;
}

.modal-backdrop.open {
    opacity: 1;

    pointer-events: auto;
}

.budget-modal {
    position: relative;

    width:
        min(620px, 100%);

    max-height:
        calc(100vh - 40px);

    padding: 34px;

    overflow: auto;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.3);

    transform:
        translateY(20px)
        scale(0.98);

    transition:
        transform 0.25s ease;
}

.modal-backdrop.open
.budget-modal {
    transform: none;
}

.modal-close {
    position: absolute;

    top: 14px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 12px;

    background: #f1f5f8;

    color: var(--navy);

    font-size: 1.8rem;

    line-height: 1;
}

.modal-copy h2 {
    margin:
        10px 0;

    color: var(--navy);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 2rem;

    line-height: 1.1;
}

.modal-copy p {
    color: var(--muted);
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.budget-form {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 16px;

    margin-top: 24px;
}

.field {
    display: grid;

    gap: 7px;
}

.field:nth-child(4) {
    grid-column:
        1 / -1;
}

.field label {
    font-size: 0.84rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    padding: 13px 14px;

    outline: none;

    border:
        1px solid var(--line);

    border-radius: 13px;

    background: #f9fbfc;

    color: var(--text);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 4px rgba(5, 137, 216, 0.08);
}

.btn-submit,
.form-note {
    grid-column:
        1 / -1;
}

.form-note {
    text-align: center;

    color: var(--muted);

    font-size: 0.72rem;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
    opacity: 1;

    transform: none;
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1020px) {

    .desktop-nav,
    .header-actions > .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    .service-hero {
        min-height: 690px;
    }


    .service-hero-content {
        padding-top: 130px;
    }


    .section-heading,
    .service-intro-grid,
    .warning-grid,
    .professional-service-grid {
        grid-template-columns: 1fr;

        gap: 44px;
    }


    .service-intro-copy {
        padding-left: 0;

        border-left: 0;
    }


    .pest-services-grid {
        gap: 20px;
    }


    .pest-service-image {
        height: 270px;
    }


    .pest-process-grid,
    .why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 38px;
    }


    .pest-process-grid::before {
        display: none;
    }


    .professional-service-image {
        min-height: 520px;
    }


    .service-cta-box {
        grid-template-columns: 1fr;
    }


    .service-cta-actions {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        min-width: 0;
    }


    .footer-grid {
        grid-template-columns:
            1.2fr
            0.8fr
            0.8fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    :root {
        --container:
            min(100% - 28px, 1180px);
    }


    .site-header {
        height: 76px;
    }


    .brand img {
        width: 150px;

        max-height: 54px;
    }


    /* HERO */

    .service-hero {
        min-height: 720px;

        align-items: flex-end;
    }


    .service-hero-image img {
        object-position:
            62% center;
    }


    .service-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 15, 25, 0.38) 0%,
                rgba(4, 15, 25, 0.6) 34%,
                rgba(4, 15, 25, 0.91) 70%,
                rgba(4, 15, 25, 0.98) 100%
            );
    }


    /*
       JÁ INCLUI O RESPIRO LATERAL
       PARA NÃO FICAR COLADO NAS BORDAS
    */

    .service-hero-content {
        width: 100%;

        max-width: 100%;

        padding:
            115px 24px 70px;
    }


    .service-hero-content.container {
        width: 100%;
    }


    .service-hero-copy {
        width: 100%;

        max-width: 100%;

        margin: 0 auto;
    }


    .service-hero h1 {
        width: 100%;

        max-width: 100%;

        margin:
            17px 0 18px;

        font-size:
            clamp(
                2rem,
                9.2vw,
                3.15rem
            );

        line-height: 1.08;

        letter-spacing: -0.035em;

        overflow-wrap: break-word;
    }


    .service-hero-copy > p {
        width: 100%;

        max-width: 100%;

        font-size: 0.95rem;

        line-height: 1.72;
    }


    .service-hero-ctas {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 11px;
    }


    .service-hero-ctas .btn {
        width: 100%;
    }


    .service-hero-points {
        width: 100%;

        max-width: 100%;

        gap:
            10px 16px;
    }


    /* SEÇÕES */

    .section {
        padding:
            78px 0;
    }


    .section-heading {
        gap: 20px;

        margin-bottom: 34px;
    }


    .section-heading.centered {
        margin-bottom: 38px;
    }


    /* INTRODUÇÃO */

    .service-intro-grid {
        gap: 30px;
    }


    .service-intro-title::after {
        margin-top: 20px;
    }


    /* SERVIÇOS */

    .pest-services-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .pest-service-card {
        border-radius: 23px;
    }


    .pest-service-image {
        height: 245px;
    }


    .pest-service-content {
        padding:
            26px 23px 28px;
    }


    .pest-service-content h3 {
        font-size: 1.38rem;
    }


    .pest-service-number {
        right: 16px;
        bottom: 15px;

        width: 50px;
        height: 50px;
    }


    /* SINAIS */

    .warning-grid {
        gap: 36px;
    }


    .warning-item {
        grid-template-columns:
            44px
            1fr;

        gap: 14px;

        padding: 18px;
    }


    .warning-item > span {
        width: 40px;
        height: 40px;
    }


    /* PROCESSO */

    .pest-process-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .pest-process-item {
        padding:
            0 18px 32px;
    }


    .pest-process-number {
        margin-bottom: 17px;
    }


    /* ATENDIMENTO */

    .professional-service-grid {
        gap: 38px;
    }


    .professional-service-image {
        min-height: 400px;

        border-radius: 24px;
    }


    .professional-image-detail {
        right: 18px;
        bottom: 18px;
        left: 18px;

        padding: 18px;
    }


    /* POR QUE COSMOTEC */

    .why-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .why-card {
        min-height: auto;

        padding: 25px;
    }


    .why-card::before {
        margin-bottom: 42px;
    }


    /* CTA */

    .service-cta {
        padding:
            78px 0;
    }


    .service-cta-box {
        padding:
            36px 24px;

        gap: 32px;

        border-radius: 24px;
    }


    .service-cta-actions {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .footer-bottom {
        display: grid;

        gap: 8px;
    }


    /* WHATSAPP */

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;

        width: 58px;
        height: 58px;

        min-height: 58px;

        padding: 0;

        justify-content: center;

        border-radius: 17px;
    }


    .floating-whatsapp span {
        display: none;
    }


    /* TOPO */

    .scroll-top {
        left: 14px;
        bottom: 14px;
    }


    /* MODAL */

    .budget-modal {
        padding:
            30px 20px 22px;
    }


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


    .field:nth-child(4),
    .btn-submit,
    .form-note {
        grid-column: auto;
    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 420px) {

    .service-hero-content {
        padding-left: 22px;
        padding-right: 22px;
    }


    .service-hero h1 {
        font-size:
            clamp(
                1.95rem,
                9.5vw,
                2.7rem
            );
    }


    .section-heading h2,
    .service-intro-title h2,
    .warning-copy h2,
    .professional-service-copy h2,
    .service-cta-box h2 {
        font-size:
            clamp(
                1.85rem,
                9vw,
                2.5rem
            );
    }


    .pest-service-image {
        height: 225px;
    }


    .professional-service-image {
        min-height: 350px;
    }


    .eyebrow {
        font-size: 0.68rem;

        letter-spacing: 0.12em;
    }

}


/* =========================================================
   ACESSIBILIDADE - REDUZIR MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .pest-service-image img,
    .professional-service-image img {
        transition: none;
    }


    .pest-service-card,
    .why-card,
    .warning-item {
        transition: none;
    }

}


/* =========================================================
   CORREÇÃO HERO DESKTOP - ALINHAMENTO COM O CONTAINER
========================================================= */

@media (min-width: 721px) {

    .service-hero-content.container {
        width: var(--container);
        max-width: 1180px;

        margin-left: auto;
        margin-right: auto;

        padding-left: 0;
        padding-right: 0;
    }

    .service-hero-copy {
        width: 100%;
        max-width: 790px;
    }

}