@font-face {
    font-family: Montserrat;
    src: url("../fonts/montserrat/Montserrat-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/montserrat/Montserrat-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/montserrat/Montserrat-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-50: #f0f7ff;
    --brand-100: #e0efff;
    --brand-200: #b9dfff;
    --brand-400: #36b0ff;
    --brand-500: #2da8e1;
    --brand-600: #0284c7;
    --brand-700: #003591;
    --brand-800: #075985;
    --brand-900: #002463;
    --brand-950: #001a47;

    --accent-50: #f0fdf4;
    --accent-100: #dcfce7;
    --accent-400: #4ade80;
    --accent-500: #30ad73;
    --accent-600: #16a34a;
    --accent-900: #14532d;

    --neutral-50: #f8fafc;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;

    --white: #ffffff;
    --black: #020617;

    --font: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --gradient: linear-gradient(135deg, var(--brand-500), var(--accent-500));
    --gradient-soft: linear-gradient(90deg, var(--brand-100), var(--accent-100));

    --header-h: 72px;
    --container: 1280px;

    --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.055);
    --shadow-card: 0 24px 60px rgba(15, 23, 42, 0.10);
    --shadow-card-hover: 0 30px 74px rgba(15, 23, 42, 0.14);
    --shadow-premium: 0 32px 80px rgba(15, 23, 42, 0.14);

    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --section-title: clamp(42px, 5vw, 64px);
    --section-title-lg: clamp(46px, 5.6vw, 72px);
    --section-subtitle: clamp(17px, 1.45vw, 21px);
    --body-lg: 18px;
    --body-md: 16px;
    --body-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-500) #eaf4fb;
    overflow-x: hidden;
    background: var(--brand-900);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #eaf4fb;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
    border: 2px solid #eaf4fb;
    border-radius: 999px;
}

body {
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
    font-family: var(--font);
    background: var(--white);
    color: var(--neutral-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.section-light {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 6%, rgba(45, 168, 225, 0.055), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(48, 173, 115, 0.045), transparent 26%),
        linear-gradient(135deg, var(--neutral-50), #fff 48%, rgba(240, 247, 255, 0.58));
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-900), #064f70, var(--accent-900));
}

/* HEADER */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 950;
    background: rgba(0, 36, 99, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: background;
}

.site-header.scrolled,
.site-header.menu-open {
    background: rgba(0, 26, 74, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
}

.brand span {
    color: #fff;
}

.brand strong {
    color: var(--brand-500);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.nav-cta {
    padding: 12px 19px !important;
    border-radius: 9px;
    background: var(--gradient);
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.menu-btn {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 4px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-open .menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-btn span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background: rgba(0, 26, 74, 0.98);
    padding: 14px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    display: block;
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    font-size: 15px;
}

/* COMPONENTES GLOBAIS */

.pill,
.about-pill,
.contact-pill,
.testimonials-pill,
.pill-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: max-content;
    white-space: nowrap;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--gradient-soft);
    border: 1px solid rgba(45, 168, 225, 0.22);
    color: var(--brand-700);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto 30px;
    letter-spacing: 0;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.section-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 90px;
}

.section-head h2,
.billing-title,
.billing-head h2,
.about-copy h2,
.contact-head h2,
.testimonials-head h2 {
    font-size: var(--section-title);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.section-head h2 strong,
.about-copy h2 strong,
.contact-head h2 strong,
.testimonials-head h2 strong,
.billing-head h2 strong,
.billing-title strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section-head p,
.testimonials-head p,
.contact-head p {
    font-size: var(--section-subtitle);
    color: var(--neutral-500);
    line-height: 1.5;
    font-weight: 400;
}

.section-head p strong {
    color: #009488;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    padding: 14px 22px;
    min-height: 52px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 15px 30px rgba(45, 168, 225, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 18px 38px rgba(45, 168, 225, 0.28);
}

.btn-ghost {
    color: var(--brand-400);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: #fff;
    color: #075985;
    width: 100%;
    border-radius: 16px;
    padding: 16px 22px;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 20px;
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* HERO — protegido para LCP */

#inicio.hero,
.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--brand-900);
    color: #fff;
}

#inicio .hero-media,
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#inicio .hero-image,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero-bg {
    display: none;
}

#inicio .hero-overlay,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 36, 99, 0.99) 0%, rgba(0, 53, 145, 0.94) 48%, rgba(0, 36, 99, 0.80) 100%);
}

#inicio .hero-blob,
.hero-blob {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    background: rgba(0, 36, 99, 0.44);
    pointer-events: none;
}

.blob-a {
    width: 340px;
    height: 340px;
    left: 43%;
    top: 22%;
}

.blob-b {
    width: 180px;
    height: 180px;
    left: 51%;
    bottom: 8%;
}

.blob-c {
    width: 120px;
    height: 120px;
    left: 64%;
    top: 18%;
    opacity: 0.45;
}

#inicio .hero-content,
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 112px 24px 64px;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.hero-content h1,
.hero-content .hero-kicker,
.hero-content .hero-sub,
.hero-content .hero-actions {
    max-width: 760px;
}

#inicio .hero-lcp-title,
.hero h1 {
    margin: 0 0 20px;
    max-width: 780px;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero h1 span,
#inicio .hero-lcp-title span {
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero h1 strong,
#inicio .hero-lcp-title strong {
    color: #35b7b5;
    background: none;
    -webkit-text-fill-color: #35b7b5;
}

.hero-kicker,
#inicio .hero-kicker {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.045em;
    color: #fff;
}

.typing-line,
#inicio .typing-line {
    max-width: 920px;
    min-height: 92px;
    margin: 6px 0 4px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.typing-line span,
#inicio .typing-line span {
    display: inline-block;
    font-size: clamp(34px, 4.55vw, 58px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.058em;
    white-space: nowrap;
    color: #35b7b5;
    background: none;
    -webkit-text-fill-color: #35b7b5;
}

.typing-line span.typing-word--long {
    font-size: clamp(32px, 4.05vw, 52px);
}

.typing-line span.typing-word--xl {
    font-size: clamp(28px, 3.55vw, 46px);
}

.typing-line i,
#inicio .typing-line i {
    width: 2px;
    height: 0.86em;
    min-height: 38px;
    margin-left: 2px;
    background: #35b7b5;
    display: inline-block;
    flex: 0 0 2px;
}

.hero-sub,
#inicio .hero-sub {
    max-width: 620px;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    padding-left: 16px;
    margin-top: 8px;
}

.hero-sub p,
#inicio .hero-sub p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.hero-sub h2,
#inicio .hero-sub h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.06em;
    color: #35b7b5;
    background: none;
    -webkit-text-fill-color: #35b7b5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 34px;
}

.play-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.btn:hover .play-icon {
    transform: scale(1.05);
}

/* SOLUÇÕES */

.solutions {
    padding: 96px 0 120px;
}

.solutions-pill {
    gap: 16px;
}

.solutions-pill>span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #7dd3fc;
    flex: 0 0 8px;
    display: inline-block;
}

.solutions-pill>span:last-child {
    background: linear-gradient(135deg, var(--accent-500), var(--brand-500));
}

.decor-card {
    position: absolute;
    width: 86px;
    height: 86px;
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
}

.decor-right {
    right: 90px;
    top: 100px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.solution-card {
    min-height: 430px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 22px;
    padding: 32px 32px 34px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(45, 168, 225, 0.26);
}

.solution-icon,
.sq {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
    margin-bottom: 34px;
}

.solution-icon {
    overflow: hidden;
}

.solution-icon svg,
.solution-svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blue {
    background: linear-gradient(135deg, #29ace2, #0284c7);
}

.green {
    background: linear-gradient(135deg, #32b978, #15984b);
}

.dark {
    background: linear-gradient(135deg, #4b5563, #1f2937);
}

.teal {
    background: linear-gradient(135deg, #2cb7c9, #26a269);
}

.solution-card h3 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: var(--neutral-900);
}

.solution-card p {
    color: var(--neutral-500);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.solution-card ul {
    list-style: none;
    margin-top: auto;
    margin-bottom: 28px;
}

.solution-card li {
    font-size: 14px;
    color: var(--neutral-500);
    margin: 11px 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.solution-card li::before,
.why-card li::before {
    content: "◎";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--brand-500);
    color: #fff;
    font-size: 11px;
    box-shadow: 0 5px 8px rgba(45, 168, 225, 0.25);
    flex: 0 0 20px;
}

.solution-card>a {
    align-self: flex-end;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
    font-size: 0;
    color: #374151;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.solution-card>a svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card:hover>a {
    color: #fff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 16px 30px rgba(45, 168, 225, 0.2);
}

.loss-cta {
    max-width: 1040px;
    margin: 130px auto 0;
    background:
        radial-gradient(circle at 30% 10%, rgba(45, 168, 225, 0.25), transparent 35%),
        linear-gradient(135deg, var(--brand-900), #003591, var(--brand-900));
    border-radius: 24px;
    color: #fff;
    text-align: center;
    padding: 50px 50px 42px;
    box-shadow: 0 40px 90px rgba(0, 36, 99, 0.28);
    position: relative;
    overflow: hidden;
}

.loss-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.45;
}

.loss-cta>* {
    position: relative;
}

.loss-cta h3 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.loss-cta h3 strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.loss-cta p {
    max-width: 820px;
    margin: 24px auto 32px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.38;
}

.mini-tags {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.mini-tags span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-500);
    margin-right: 10px;
}

/* FATURAMENTO */

.billing {
    padding: 108px 0 90px;
    color: #fff;
}

.decor-bill {
    right: 80px;
    top: 130px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.billing-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1040px;
    margin: 0 auto 74px;
}

.pill-dark {
    background: linear-gradient(90deg, rgba(0, 36, 99, 0.65), rgba(48, 173, 115, 0.4));
    border-color: rgba(255, 255, 255, 0.14);
    color: #dcfce7;
}

.billing-head h2,
.billing-title {
    font-size: var(--section-title-lg);
    line-height: 1.05;
    color: #fff;
}

.billing-head h2 span,
.billing-title span,
.billing-head h2 strong,
.billing-title strong {
    display: block;
}

.billing-head p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
    margin: 18px auto;
    text-align: center;
}

.billing-head h3 {
    font-size: 30px;
    color: #fff;
    letter-spacing: -0.03em;
    text-align: center;
}

.billing-desc {
    max-width: 980px;
    width: 100%;
    font-size: 20px;
    line-height: 1.42;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
}

.billing-intro {
    display: block;
    max-width: 760px;
    width: 100%;
    margin: 18px auto;
    text-align: center;
}

.billing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.billing-col-head {
    margin-bottom: 42px;
}

.billing-col-head h3,
.col-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.billing-col-head h3 svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--accent-400);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 30px;
}

.billing-col-head p,
.billing-col>p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    margin: 0 0 42px;
}

.glass-list {
    display: grid;
    gap: 24px;
}

.glass-list article {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    padding: 22px 24px;
    transform: translateZ(0);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-list article:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.115);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.sq {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    display: grid;
    place-items: center;
}

.sq svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.glass-list h4 {
    font-size: 19px;
    line-height: 1.25;
    color: #fff;
}

.glass-list p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    margin-top: 8px;
}

.process-list article {
    min-height: 114px;
}

.results {
    max-width: 1040px;
    margin: 100px auto 0;
    padding: 46px 54px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.results h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #fff;
}

.results>p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-top: 44px;
    align-items: start;
}

.result-grid strong {
    width: 86px;
    height: 86px;
    min-width: 86px;
    min-height: 86px;
    margin: 0 auto 22px;
    border-radius: 18px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: #fff;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

.result-grid strong.blue {
    background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
}

.result-grid strong small {
    display: block;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.result-grid strong span {
    display: block;
    font-size: 25px;
    line-height: 0.95;
    font-weight: 900;
    color: #fff;
}

.result-grid h4 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #fff;
}

.result-grid p {
    max-width: 280px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

/* QUEM SOMOS */

.about {
    position: relative;
    overflow: hidden;
    padding: 128px 0;
    background:
        radial-gradient(circle at top right, rgba(45, 168, 225, 0.10), transparent 32%),
        radial-gradient(circle at bottom left, rgba(48, 173, 115, 0.10), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #f3f8ff 100%);
}

.section-bg span {
    position: absolute;
    border-radius: 999px;
    opacity: 0.45;
}

.section-bg span:nth-child(1) {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, var(--brand-100), var(--accent-100));
    right: 80px;
    top: 80px;
}

.section-bg span:nth-child(2) {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--accent-100), var(--brand-100));
    left: 80px;
    bottom: 80px;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-copy {
    max-width: 640px;
}

.about-pill {
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
}

.about-pill-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 999px;
    background: var(--gradient);
}

.about-copy h2 {
    color: var(--brand-900);
    margin: 0 0 34px;
}

.about-copy h2 strong {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    line-height: 1.05;
}

.title-line {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(45, 168, 225, 0.28), rgba(48, 173, 115, 0.28));
}

.about-copy p {
    max-width: 660px;
    margin: 0;
    font-size: 20px;
    line-height: 1.55;
    color: var(--neutral-500);
}

.about-copy p b {
    color: var(--neutral-800);
    font-weight: 800;
}

.about-copy p strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: min(100%, 560px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.22));
}

/* DEPOIMENTOS */

.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 118px 0 116px;
    background: #fff !important;
}

.testimonials-section::before,
.testimonials-section::after,
.testimonials-wrapper::before,
.testimonials-wrapper::after,
.testimonials-slider::before,
.testimonials-slider::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

.testimonials-section .container,
.testimonials-wrapper,
.testimonials-slider {
    position: relative;
    z-index: 1;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

.testimonials-head {
    max-width: 1120px;
    margin: 0 auto 64px;
    text-align: center;
}

.testimonials-pill {
    margin-left: auto;
    margin-right: auto;
}

.testimonials-pill span {
    width: auto;
    height: auto;
    flex: initial;
    display: inline;
    border-radius: 0;
    background: none;
    line-height: 1;
}

.testimonials-pill-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--brand-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials-head h2 {
    max-width: 1120px;
    font-size: clamp(40px, 4.35vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-900);
}

.testimonials-head h2 strong {
    display: inline;
}

.testimonials-head p {
    max-width: 820px;
    margin: 22px auto 0;
}

.testimonials-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    isolation: isolate;
}

.testimonials-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 2px 6px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    overscroll-behavior-x: contain;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.testimonial-card {
    min-width: 0;
    width: 100%;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    box-shadow: none !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 168, 225, 0.22);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08) !important;
}

.testimonial-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: #f59e0b;
    margin-bottom: 22px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 12px 26px rgba(45, 168, 225, 0.25);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: var(--neutral-500);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--neutral-900);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.testimonial-prev {
    left: -70px;
}

.testimonial-next {
    right: -70px;
}

.testimonial-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: var(--gradient);
    color: #fff;
}

.testimonial-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* CONTATO */

.contact {
    padding: 96px 0 110px;
    background:
        radial-gradient(circle at 10% 10%, rgba(45, 168, 225, 0.10), transparent 26%),
        radial-gradient(circle at 88% 70%, rgba(48, 173, 115, 0.10), transparent 30%),
        linear-gradient(135deg, var(--neutral-50), #fff, rgba(240, 247, 255, 0.45));
}

.contact-head {
    max-width: 920px;
    margin: 0 auto 52px;
    text-align: center;
}

.contact-pill {
    min-width: 122px;
    height: 44px;
    padding: 0 22px;
}

.contact-pill span {
    width: auto;
    height: auto;
    display: inline;
    background: none;
    border-radius: 0;
    line-height: 1;
    white-space: nowrap;
}

.contact-pill-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.contact-pill-icon path {
    fill: none;
    stroke: var(--brand-600);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-head h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    color: var(--brand-900);
    font-size: clamp(40px, 4.7vw, 62px);
}

.contact-head h2 strong {
    display: inline;
}

.contact-head p {
    max-width: 720px;
    margin: 20px auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

.contact-form {
    padding: 36px 38px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 26px;
}

.contact-form h3,
.consult-card h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.contact-form p {
    color: var(--neutral-500);
    font-weight: 400;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-top: 18px;
    color: var(--neutral-700);
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    background: #fff;
    color: var(--neutral-900);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    outline: none;
    box-shadow: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--neutral-400);
    font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(45, 168, 225, 0.14);
}

.contact-form textarea {
    min-height: 126px;
    resize: none;
}

.check {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    margin-top: 22px !important;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    background: var(--neutral-50);
}

.check input {
    width: 16px;
    height: 16px;
    margin: 3px 0 0;
    flex: 0 0 16px;
}

.check span {
    color: var(--neutral-500);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.contact-form .full {
    width: 100%;
    min-height: 56px;
    margin-top: 18px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
}

.contact-side {
    display: grid;
    gap: 24px;
}

.consult-card {
    padding: 34px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand-900), #075985, var(--accent-900));
    box-shadow: 0 20px 60px rgba(0, 36, 99, 0.18);
}

.consult-card h3 {
    color: #fff;
}

.consult-card>p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 24px;
}

.consult-info {
    display: grid;
    gap: 18px;
}

.consult-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.consult-info-item svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
    fill: none;
    stroke: var(--accent-400);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consult-info-item b {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 3px;
}

.consult-info-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 10px;
}

.consult-card .btn-white {
    margin-top: 28px;
    min-height: 56px;
    border-radius: 16px;
    color: var(--brand-800);
    background: #fff;
    font-weight: 700;
}

.why-card {
    margin-top: 0;
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.why-card ul {
    list-style: none;
    display: grid;
    gap: 16px;
}

.why-card li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    color: var(--neutral-500);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.why-card li::before {
    content: "";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-600), var(--accent-500));
    box-shadow: 0 8px 14px rgba(45, 168, 225, 0.22);
}

.why-card li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.form-status {
    margin-top: 14px;
    min-height: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* FOOTER */

.footer {
    background: var(--brand-900);
    color: #fff;
    padding: 88px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.85fr;
    gap: 70px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 26px;
}

.footer-brand .brand-white {
    color: rgba(255, 255, 255, 0.95);
}

.footer-brand strong {
    color: var(--brand-500);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.footer-description {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-contact-item:hover {
    color: #4ade80;
    transform: translateX(3px);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: #4ade80;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-actions .btn {
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
}

.footer-menu h3,
.footer-info h3 {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
    color: #fff;
}

.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-menu a:hover {
    color: #4ade80;
    transform: translateX(3px);
}

.footer-info-group {
    margin-bottom: 26px;
}

.footer-info-group b {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-info-group span,
.footer-info-group a {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    transition: color 0.18s ease;
}

.footer-info-group a:hover {
    color: #4ade80;
}

.footer-bottom {
    margin-top: 58px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.5;
}

.footer-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-top:hover {
    color: #4ade80;
    transform: translateY(-2px);
}

.footer-top svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* COOKIE */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    border-top: 4px solid var(--accent-500);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-bottom: env(safe-area-inset-bottom);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.cookie-text {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cookie-icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: block;
    margin-top: 2px;
    overflow: hidden;
    background: #d99a4e;
    box-shadow:
        inset -4px -4px 0 rgba(108, 67, 25, 0.18),
        0 4px 10px rgba(0, 0, 0, 0.08);
}

.cookie-icon::before {
    content: "";
    position: absolute;
    right: -4px;
    top: -3px;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #fff;
    box-shadow:
        -5px 8px 0 -4px #fff,
        -1px 13px 0 -5px #fff;
}

.cookie-icon::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #6b3f1d;
    box-shadow:
        10px -1px 0 #6b3f1d,
        5px 9px 0 #6b3f1d,
        14px 11px 0 #6b3f1d,
        2px 15px 0 #6b3f1d;
}

.cookie-text h3 {
    font-size: 15px;
    color: var(--brand-900);
    margin-bottom: 2px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--neutral-800);
    line-height: 1.45;
}

.cookie-text a {
    color: var(--brand-700);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions .btn {
    min-height: 48px;
}

.btn-cookie-outline {
    background: #fff;
    color: var(--brand-700);
    border: 1px solid var(--brand-700);
    padding: 10px 22px;
}

.btn-cookie {
    background: var(--gradient);
    color: #fff;
    padding: 10px 22px;
}

/* WHATSAPP */

.whatsapp-wrap {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 930;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-wrap.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-tip {
    display: none;
    background: #fff;
    color: var(--neutral-800);
    border: 1px solid var(--neutral-200);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.whatsapp-wrap:hover .wa-tip {
    display: block;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.50);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

/* ANIMAÇÕES */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.in-view,
.reveal-now {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.solution-card.reveal.in-view,
.glass-list article.reveal.in-view,
.results.reveal.in-view,
.about-copy.reveal.in-view,
.about-image.reveal.in-view,
.testimonials-wrapper.reveal.in-view,
.contact-form.reveal.in-view,
.contact-side.reveal.in-view {
    will-change: auto;
}

/* RESPONSIVO */

@media (max-width: 1180px) {
    .testimonial-prev {
        left: -18px;
    }

    .testimonial-next {
        right: -18px;
    }
}

@media (max-width: 1100px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billing-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .footer-grid {
        gap: 50px;
    }

    .contact-grid {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .testimonials-slider {
        grid-auto-columns: calc((100% - 20px) / 2);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
        --section-title: clamp(34px, 8.5vw, 46px);
        --section-title-lg: clamp(40px, 9vw, 52px);
    }

    html {
        scroll-padding-top: 80px;
    }

    .container {
        padding: 0 18px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .site-header.menu-open .mobile-nav,
    .mobile-nav.active {
        display: block;
    }

    .header-inner {
        height: 64px;
    }

    #inicio.hero,
    .hero {
        min-height: auto;
    }

    #inicio .hero-content,
    .hero-content {
        padding-top: 118px;
        padding-bottom: 76px;
        transform: none;
    }

    #inicio .hero-image,
    .hero-image {
        object-position: center;
    }

    .hero-blob {
        display: none;
    }

    #inicio .hero-lcp-title,
    .hero h1 {
        font-size: 38px;
    }

    .hero-kicker,
    #inicio .hero-kicker {
        font-size: 24px;
    }

    .typing-line,
    #inicio .typing-line {
        min-height: 48px;
        margin-top: 12px;
        margin-bottom: 12px;
        overflow: visible;
    }

    .typing-line span,
    #inicio .typing-line span {
        font-size: clamp(28px, 7.5vw, 34px);
        white-space: normal;
    }

    .hero-sub p,
    #inicio .hero-sub p {
        font-size: 16px;
    }

    .hero-sub h2,
    #inicio .hero-sub h2 {
        font-size: 38px;
    }

    .hero-actions,
    .footer-actions,
    .cookie-inner,
    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-actions .btn,
    .footer-actions .btn,
    .cookie-actions .btn {
        width: 100%;
    }

    .solutions,
    .billing,
    .about,
    .contact {
        padding: 76px 0 90px;
    }

    .testimonials-section {
        padding: 86px 0 92px;
    }

    .section-head,
    .testimonials-head {
        margin-bottom: 42px;
    }

    .section-head h2,
    .billing-head h2,
    .billing-title,
    .testimonials-head h2 {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .solution-grid,
    .result-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: auto;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
    }

    .solution-card:hover,
    .glass-list article:hover,
    .testimonial-card:hover,
    .whatsapp-btn:hover,
    .footer-contact-item:hover,
    .footer-menu a:hover,
    .footer-top:hover {
        transform: none;
    }

    .loss-cta {
        margin-top: 70px;
        padding: 34px 22px;
    }

    .loss-cta p {
        font-size: 17px;
    }

    .mini-tags {
        flex-direction: column;
        gap: 10px;
    }

    .billing-head {
        margin-bottom: 52px;
    }

    .billing-grid {
        gap: 44px;
    }

    .billing-desc {
        font-size: 17px;
    }

    .glass-list article {
        padding: 20px;
        gap: 16px;
    }

    .results {
        padding: 30px 20px;
    }

    .result-grid strong {
        margin-bottom: 16px;
    }

    .about-grid {
        gap: 44px;
    }

    .about-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .about-copy {
        text-align: center;
        margin: 0 auto;
    }

    .about-copy p {
        font-size: 17px;
    }

    .contact-head {
        margin-bottom: 38px;
    }

    .contact-head h2 strong,
    .testimonials-head h2 strong {
        display: block;
    }

    .contact-head p {
        font-size: 17px;
    }

    .contact-form,
    .consult-card,
    .why-card {
        padding: 24px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .testimonials-slider {
        grid-auto-columns: 86%;
        gap: 18px;
        padding: 8px 0 18px;
    }

    .testimonial-card {
        min-height: 300px;
        padding: 28px 24px;
    }

    .testimonial-arrow {
        display: none;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 18px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-top: 4px solid var(--accent-500);
    }

    .cookie-inner {
        padding: 18px;
        gap: 14px;
    }

    .cookie-text {
        align-items: flex-start;
    }

    .cookie-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cookie-actions {
        width: 100%;
    }

    .footer {
        padding: 72px 0 92px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .whatsapp-wrap {
        right: 18px;
        bottom: 18px;
    }

    .decor-card {
        display: none;
    }
}

@media (max-width: 520px) {
    .brand {
        font-size: 18px;
    }

    #inicio .hero-lcp-title,
    .hero h1 {
        font-size: 38px;
    }

    .hero-kicker {
        font-size: 24px;
    }

    .typing-line {
        min-height: 48px;
        white-space: normal;
        width: 100%;
    }

    .typing-line span {
        white-space: normal;
        font-size: clamp(28px, 7.5vw, 34px);
        line-height: 1.2;
    }

    .typing-line span.typing-word--long,
    .typing-line span.typing-word--xl {
        font-size: clamp(24px, 6.7vw, 30px);
    }

    .hero-sub p {
        font-size: 16px;
    }

    .hero-sub h2 {
        font-size: 38px;
    }

    .section-head p {
        font-size: 18px;
    }

    .billing-head h3 {
        font-size: 24px;
    }

    .glass-list article {
        padding: 18px;
        gap: 14px;
    }

    .sq {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .results h3 {
        font-size: 24px;
    }

    .result-grid {
        gap: 34px;
    }

    .testimonials-slider {
        grid-auto-columns: 92%;
    }

    .testimonial-card {
        border-radius: 20px;
    }

    .footer-description {
        font-size: 15px;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}