/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
    --navy-main: #020e23;
    --navy-secondary: #061a35;
    --navy-light: #0a2345;
    --navy-deep: #010817;

    --blue-primary: #087cff;
    --blue-secondary: #0069ed;
    --blue-neon: #00a8ff;
    --blue-light: #dcecff;
    --blue-border: rgba(62, 145, 255, 0.38);

    --white: #ffffff;
    --light-bg: #f2f6fc;
    --gray-light: #d8e1ed;
    --gray-text: #9caec4;
    --gray-dark: #53657b;

    --yellow: #ffc400;

    --font-main: "Inter", Arial, sans-serif;

    --shadow-soft: 0 15px 40px rgba(3, 22, 50, 0.12);
    --shadow-blue: 0 0 30px rgba(0, 126, 255, 0.25);
}


/* =========================================================
   CONFIGURAÇÕES GERAIS
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--navy-main);
    background-color: var(--white);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

button,
input {
    font-family: inherit;
}

.section-padding {
    padding: 62px 0;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading h2 {
    margin: 4px 0 0;
    color: var(--navy-main);
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--blue-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 680px;
    padding: 22px 0 25px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 58% 42%,
            rgba(0, 126, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            118deg,
            #020c1d 0%,
            #03152d 52%,
            #020c1d 100%
        );
}

.hero-container {
    width: 100%;
    padding-right: clamp(18px, 2.25vw, 42px);
    padding-left: clamp(18px, 2.25vw, 42px);
}

.hero-grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(
            rgba(19, 103, 194, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 103, 194, 0.09) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 78%,
            transparent
        );
}

.hero-grid-background::after {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        radial-gradient(
            circle,
            rgba(0, 166, 255, 0.7) 1px,
            transparent 1.8px
        );
    background-size: 74px 74px;
    opacity: 0.32;
}

.hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-light-one {
    top: 60px;
    left: 40%;
    width: 340px;
    height: 340px;
    background: rgba(0, 116, 255, 0.14);
}

.hero-light-two {
    right: -100px;
    bottom: -100px;
    width: 350px;
    height: 350px;
    background: rgba(0, 105, 237, 0.12);
}

.hero-content {
    position: relative;
    z-index: 5;
}

.brand-logo {
    position: relative;
    display: block;
    width: 190px;
    height: 65px;
    margin-bottom: 12px;
    overflow: hidden;
}

.brand-logo-image {
    position: absolute;
    top: -14px;
    left: -2px;
    display: block;
    width: 190px;
    max-width: none;
    height: auto;
}

.technology-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 5px 11px;
    color: #dcebff;
    border: 1px solid rgba(41, 131, 255, 0.45);
    border-radius: 50px;
    background: rgba(7, 76, 153, 0.34);
    box-shadow:
        inset 0 0 15px rgba(0, 132, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 570px;
    margin-bottom: 18px;
    color: var(--white);
    line-height: 1.02;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.065em;
}

.hero-title span {
    color: var(--white);
}

.hero-title .hero-title-highlight {
    color: var(--blue-primary);
}

.hero-description {
    max-width: 570px;
    margin-bottom: 24px;
    color: #e2e9f2;
    line-height: 1.65;
    font-size: 0.94rem;
}

.hero-benefits {
    max-width: 620px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    color: #edf5ff;
    font-size: 0.82rem;
    font-weight: 500;
}

.benefit-check {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    color: var(--white);
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--blue-primary),
            var(--blue-secondary)
        );
    box-shadow: 0 0 12px rgba(0, 126, 255, 0.55);
    font-size: 0.75rem;
}


/* =========================================================
   COMPOSIÇÃO TECNOLÓGICA
========================================================= */

.security-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 545px;
    isolation: isolate;
}

.security-visual::before {
    position: absolute;
    z-index: -2;
    width: 410px;
    height: 410px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 149, 255, 0.17),
            rgba(0, 68, 145, 0.05) 50%,
            transparent 68%
        );
}

.connection-circle {
    position: absolute;
    border: 1px solid rgba(0, 145, 255, 0.16);
    border-radius: 50%;
}

.connection-circle-one {
    width: 355px;
    height: 355px;
}

.connection-circle-two {
    width: 430px;
    height: 430px;
}

.connection-circle-three {
    width: 500px;
    height: 500px;
    border-style: dashed;
    opacity: 0.45;
}

.orbit {
    position: absolute;
    width: 410px;
    height: 200px;
    border: 1px solid rgba(0, 149, 255, 0.21);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.orbit-two {
    transform: rotate(38deg);
}

.security-icon {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    color: #ecf8ff;
    border: 1px solid rgba(0, 169, 255, 0.65);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(12, 80, 150, 0.92),
            rgba(2, 32, 71, 0.96)
        );
    box-shadow:
        0 0 8px rgba(0, 167, 255, 0.8),
        0 0 26px rgba(0, 118, 255, 0.45),
        inset 0 0 15px rgba(13, 125, 233, 0.3);
    font-size: 1.45rem;
}

.security-icon::after {
    position: absolute;
    z-index: -1;
    width: 86px;
    height: 1px;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(0, 151, 255, 0.8),
            transparent
        );
    transform-origin: center;
}

.icon-home {
    top: 72px;
    left: 22%;
}

.icon-home::after {
    left: 48px;
    transform: rotate(46deg);
}

.icon-health {
    top: 18px;
    left: 53%;
}

.icon-health::after {
    top: 56px;
    left: 10px;
    transform: rotate(102deg);
}

.icon-family {
    top: 96px;
    right: 7%;
}

.icon-family::after {
    right: 42px;
    transform: rotate(135deg);
}

.icon-car {
    top: 235px;
    right: 0;
}

.icon-car::after {
    right: 44px;
    transform: rotate(175deg);
}

.icon-dental {
    right: 13%;
    bottom: 92px;
}

.icon-dental::after {
    right: 44px;
    transform: rotate(215deg);
}

.icon-lock {
    left: 9%;
    bottom: 90px;
}

.icon-lock::after {
    left: 44px;
    transform: rotate(-35deg);
}

.icon-person {
    top: 230px;
    left: 0;
}

.icon-person::after {
    left: 44px;
    transform: rotate(2deg);
}

.shield-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-10px);
}

.shield-glow {
    position: absolute;
    width: 230px;
    height: 270px;
    border-radius: 50%;
    background: rgba(0, 126, 255, 0.26);
    filter: blur(40px);
}

.shield {
    position: relative;
    width: 205px;
    height: 240px;
    padding: 8px;
    background:
        linear-gradient(
            145deg,
            #00bdff,
            #0059d7 48%,
            #00c8ff
        );
    clip-path:
        polygon(
            50% 0,
            92% 17%,
            84% 70%,
            50% 100%,
            16% 70%,
            8% 17%
        );
    filter:
        drop-shadow(0 0 8px rgba(0, 198, 255, 0.95))
        drop-shadow(0 0 30px rgba(0, 111, 255, 0.85));
}

.shield::before {
    position: absolute;
    inset: 9px;
    content: "";
    background:
        linear-gradient(
            150deg,
            rgba(0, 173, 255, 0.72),
            rgba(2, 39, 86, 0.96) 45%,
            rgba(1, 18, 45, 1)
        );
    clip-path:
        polygon(
            50% 0,
            92% 17%,
            84% 70%,
            50% 100%,
            16% 70%,
            8% 17%
        );
}

.shield-inner {
    position: absolute;
    inset: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 224, 255, 0.72);
    background:
        linear-gradient(
            145deg,
            rgba(0, 126, 255, 0.24),
            rgba(0, 17, 45, 0.76)
        );
    clip-path:
        polygon(
            50% 0,
            92% 17%,
            84% 70%,
            50% 100%,
            16% 70%,
            8% 17%
        );
}

.shield-inner span {
    color: #a9eaff;
    font-size: 4.8rem;
    font-weight: 700;
    text-shadow:
        0 0 10px rgba(0, 200, 255, 0.9),
        0 0 35px rgba(0, 114, 255, 0.75);
}

.holographic-base {
    position: absolute;
    bottom: 39px;
    left: 50%;
    width: 370px;
    height: 105px;
    transform: translateX(-50%);
}

.holographic-base::before {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 8px;
    height: 110px;
    content: "";
    background:
        linear-gradient(
            to bottom,
            rgba(0, 196, 255, 0.48),
            transparent
        );
    filter: blur(5px);
    transform: translateX(-50%);
}

.base-ring {
    position: absolute;
    left: 50%;
    border: 1px solid rgba(0, 173, 255, 0.66);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 15px rgba(0, 151, 255, 0.25);
}

.base-ring-one {
    top: 0;
    width: 195px;
    height: 42px;
}

.base-ring-two {
    top: 20px;
    width: 275px;
    height: 58px;
}

.base-ring-three {
    top: 39px;
    width: 365px;
    height: 68px;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.form-column {
    align-self: flex-start;
    padding-top: clamp(18px, 2vw, 32px);
}

.analysis-form-card {
    position: relative;
    z-index: 6;
    padding: 27px 27px 14px;
    border: 1px solid rgba(95, 161, 248, 0.42);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(5, 28, 60, 0.96),
            rgba(3, 19, 43, 0.96)
        );
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.28),
        inset 0 0 45px rgba(0, 102, 225, 0.05);
}

.analysis-form-card h2 {
    margin-bottom: 8px;
    color: var(--white);
    line-height: 1.03;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.form-intro {
    margin-bottom: 18px;
    color: #dbe6f4;
    line-height: 1.45;
    font-size: 0.82rem;
}

.custom-input-group .input-group-text,
.custom-input-group .form-control {
    min-height: 43px;
    color: var(--white);
    border-color: rgba(94, 143, 202, 0.42);
    background-color: rgba(2, 18, 42, 0.52);
    box-shadow: none;
}

.custom-input-group .input-group-text {
    padding-right: 8px;
    color: #3d99ff;
    border-right: 0;
}

.custom-input-group .form-control {
    padding-left: 5px;
    border-left: 0;
    font-size: 0.82rem;
}

.custom-input-group .form-control::placeholder {
    color: #e1e8f1;
    opacity: 0.9;
}

.custom-input-group:focus-within .input-group-text,
.custom-input-group:focus-within .form-control {
    border-color: rgba(0, 145, 255, 0.88);
    background-color: rgba(3, 26, 58, 0.82);
}

.custom-input-group:focus-within {
    border-radius: 7px;
    box-shadow: 0 0 15px rgba(0, 126, 255, 0.18);
}

.whatsapp-icon {
    color: #37cf65 !important;
}

.form-section-title {
    float: none;
    width: auto;
    margin-bottom: 9px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
}

.custom-radio {
    display: flex;
    align-items: center;
    min-height: 25px;
}

.custom-radio .form-check-input {
    margin-top: 0;
    border-color: rgba(116, 165, 224, 0.48);
    background-color: transparent;
    box-shadow: none;
}

.custom-radio .form-check-input:checked {
    border-color: var(--blue-primary);
    background-color: var(--blue-primary);
}

.custom-radio .form-check-label {
    padding-left: 2px;
    color: #eef5ff;
    font-size: 0.78rem;
}

.privacy-consent {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    padding-left: 0;
    gap: 8px;
}

.privacy-consent .form-check-input {
    flex: 0 0 auto;
    margin: 2px 0 0;
    border-color: rgba(116, 165, 224, 0.58);
    background-color: transparent;
    box-shadow: none;
}

.privacy-consent .form-check-input:checked {
    border-color: var(--blue-primary);
    background-color: var(--blue-primary);
}

.privacy-consent .form-check-input:focus-visible {
    border-color: #69b6ff;
    box-shadow: 0 0 0 3px rgba(8, 124, 255, 0.22);
}

.privacy-consent .form-check-label {
    color: #c8d6e7;
    line-height: 1.4;
    font-size: 0.72rem;
}

.btn-analysis {
    margin-top: 0;
    padding: 12px 15px;
    color: var(--white);
    border: 0;
    border-radius: 6px;
    background:
        linear-gradient(
            90deg,
            #087cff,
            #076ce8
        );
    box-shadow:
        0 8px 24px rgba(0, 104, 237, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-analysis:hover {
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            #148aff,
            #0876ff
        );
    box-shadow:
        0 10px 30px rgba(0, 126, 255, 0.42);
    transform: translateY(-2px);
}

.privacy-message {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 9px;
    gap: 4px 6px;
    color: #859bb6;
    font-size: 0.7rem;
}

.privacy-message i {
    color: #348fff;
}

.privacy-policy-link {
    padding: 0;
    color: #65adff;
    border: 0;
    background: transparent;
    font-size: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-policy-link:hover {
    color: #a3d1ff;
}

.privacy-policy-link:focus-visible {
    outline: 2px solid #69b6ff;
    outline-offset: 3px;
    border-radius: 2px;
}


/* =========================================================
   MODAL DA POLÍTICA DE PRIVACIDADE
========================================================= */

.privacy-modal .modal-content {
    overflow: hidden;
    color: var(--gray-dark);
    border: 1px solid rgba(36, 112, 204, 0.42);
    border-radius: 14px;
    background: #f8fbff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.privacy-modal .modal-header {
    padding: 18px 22px;
    color: var(--white);
    border-bottom-color: rgba(82, 151, 232, 0.28);
    background:
        linear-gradient(
            115deg,
            #03132c,
            #072b58
        );
}

.privacy-modal .modal-title {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.privacy-modal .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.85;
}

.privacy-modal .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(95, 174, 255, 0.35);
}

.privacy-modal .modal-body {
    padding: 24px 26px;
    line-height: 1.65;
    font-size: 0.84rem;
}

.privacy-modal .modal-body section + section {
    margin-top: 22px;
}

.privacy-modal .modal-body h3 {
    margin-bottom: 9px;
    color: var(--navy-secondary);
    font-size: 0.96rem;
    font-weight: 800;
}

.privacy-modal .modal-body p {
    margin-bottom: 11px;
}

.privacy-modal .modal-body strong {
    color: #0b315f;
}

.privacy-modal .modal-body ul {
    margin: 0 0 12px;
    padding-left: 21px;
}

.privacy-modal .modal-body li + li {
    margin-top: 3px;
}

.privacy-modal .modal-body address {
    margin: 14px 0 0;
    padding: 12px 14px;
    border-left: 3px solid var(--blue-primary);
    border-radius: 0 6px 6px 0;
    background: #eaf3ff;
    font-style: normal;
}

.privacy-modal .modal-body a {
    color: #066bdc;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.privacy-policy-update {
    margin: 16px 0 0 !important;
}

.privacy-modal .modal-footer {
    padding: 12px 22px;
    border-top-color: #dce6f2;
    background: #f2f7fd;
}

.btn-policy-close {
    min-width: 110px;
    color: var(--white);
    border: 0;
    background: var(--blue-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-policy-close:hover {
    color: var(--white);
    background: var(--blue-secondary);
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

.steps-section {
    background:
        linear-gradient(
            180deg,
            #f7faff,
            #eef3fa
        );
}

.steps-container {
    position: relative;
}

.step-item {
    position: relative;
    min-height: 180px;
    padding: 5px 25px 5px 5px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 14px;
}

.step-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    color: var(--blue-primary);
    border: 1px solid #d9e3f0;
    border-radius: 50%;
    background: var(--white);
    box-shadow:
        0 8px 19px rgba(3, 35, 77, 0.12);
    font-size: 2rem;
}

.step-number {
    margin-top: 10px;
    color: var(--blue-primary);
    font-size: 0.75rem;
    font-weight: 800;
}

.step-item h3 {
    margin-bottom: 6px;
    color: var(--navy-main);
    font-size: 0.95rem;
    font-weight: 800;
}

.step-item p {
    margin: 0;
    color: var(--gray-dark);
    line-height: 1.5;
    font-size: 0.8rem;
}

.step-item::after {
    position: absolute;
    top: 44px;
    right: -4px;
    width: 42px;
    height: 1px;
    content: "";
    border-top: 1px dashed #62a3ec;
}

.step-item::before {
    position: absolute;
    top: 40px;
    right: -4px;
    width: 8px;
    height: 8px;
    content: "";
    border-top: 1px solid #62a3ec;
    border-right: 1px solid #62a3ec;
    transform: rotate(45deg);
}

.step-item-last::before,
.step-item-last::after {
    display: none;
}


/* =========================================================
   DIFERENCIAIS
========================================================= */

.differentials-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(0, 126, 255, 0.15),
            transparent 35%
        ),
        linear-gradient(
            115deg,
            #021127,
            #061a35,
            #021127
        );
}

.differential-card {
    display: flex;
    padding: 23px 20px;
    gap: 16px;
    border: 1px solid rgba(66, 139, 226, 0.46);
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            rgba(7, 35, 70, 0.84),
            rgba(3, 22, 48, 0.84)
        );
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.differential-card:hover {
    border-color: rgba(0, 158, 255, 0.85);
    box-shadow: 0 15px 35px rgba(0, 93, 196, 0.18);
    transform: translateY(-5px);
}

.differential-icon {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    color: #4aa8ff;
    border: 1px solid rgba(0, 161, 255, 0.58);
    border-radius: 50%;
    box-shadow:
        inset 0 0 15px rgba(0, 132, 255, 0.16);
    font-size: 1.75rem;
}

.differential-card h3 {
    margin-bottom: 7px;
    color: var(--white);
    line-height: 1.15;
    font-size: 0.94rem;
    font-weight: 800;
}

.differential-card p {
    margin: 0;
    color: #bdcada;
    line-height: 1.55;
    font-size: 0.78rem;
}


/* =========================================================
   PÚBLICO
========================================================= */

.audience-section {
    background:
        linear-gradient(
            180deg,
            #f9fbff,
            #edf3fa
        );
}

.audience-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 135px;
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #dce6f1;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 9px 24px rgba(8, 31, 64, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.audience-card:hover {
    border-color: rgba(0, 126, 255, 0.42);
    box-shadow: 0 15px 32px rgba(8, 50, 105, 0.13);
    transform: translateY(-6px);
}

.audience-icon {
    margin-bottom: 8px;
    color: var(--blue-primary);
    line-height: 1;
    font-size: 2.45rem;
}

.audience-card h3 {
    margin: 0;
    color: var(--navy-main);
    line-height: 1.15;
    font-size: 0.82rem;
    font-weight: 800;
}


/* =========================================================
   PARCEIROS E DEPOIMENTOS
========================================================= */

.partners-section {
    color: var(--white);
    background:
        linear-gradient(
            112deg,
            #021126,
            #061a35,
            #021126
        );
}

.partners-intro {
    margin-top: 6px;
    color: var(--white);
    line-height: 1.35;
    font-size: 0.89rem;
    font-weight: 600;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.partner-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
}

.partner-logo span {
    display: none;
    color: #0e376b;
    line-height: 1.05;
    font-size: 0.78rem;
    font-weight: 800;
}

.testimonial-card {
    position: relative;
    padding: 21px 18px 17px;
    border: 1px solid rgba(53, 135, 231, 0.48);
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            rgba(6, 42, 83, 0.82),
            rgba(3, 25, 55, 0.9)
        );
}

.testimonial-quote {
    position: absolute;
    top: 6px;
    left: 10px;
    color: #4ca6ff;
    font-size: 2rem;
}

.testimonial-card p {
    min-height: 92px;
    margin: 16px 0 9px;
    color: #e6eef7;
    line-height: 1.48;
    font-size: 0.78rem;
}

.testimonial-stars {
    margin-bottom: 4px;
    color: var(--yellow);
    letter-spacing: 1px;
    font-size: 0.73rem;
}

.testimonial-card > span {
    color: #c1cddd;
    font-size: 0.72rem;
}


/* =========================================================
   CHAMADA FINAL
========================================================= */

.final-cta-section {
    position: relative;
    padding: 28px 0;
    overflow: hidden;
    color: var(--white);
    border-top: 1px solid rgba(46, 128, 226, 0.24);
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(0, 126, 255, 0.15),
            transparent 25%
        ),
        linear-gradient(
            115deg,
            #020d20,
            #061a35,
            #021127
        );
}

.cta-network {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        radial-gradient(
            circle,
            rgba(0, 168, 255, 0.9) 1px,
            transparent 1.7px
        ),
        linear-gradient(
            25deg,
            transparent 48%,
            rgba(0, 119, 255, 0.15) 49%,
            rgba(0, 119, 255, 0.15) 50%,
            transparent 51%
        );
    background-size:
        60px 60px,
        115px 115px;
}

.small-shield {
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-shield-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 60px;
    background:
        linear-gradient(
            145deg,
            #008fff,
            #073a87
        );
    clip-path:
        polygon(
            50% 0,
            91% 16%,
            83% 70%,
            50% 100%,
            17% 70%,
            9% 16%
        );
    filter:
        drop-shadow(0 0 10px rgba(0, 133, 255, 0.58));
}

.small-shield-shape span {
    color: #b7e8ff;
    font-size: 1.3rem;
    font-weight: 700;
}

.final-cta-section h2 {
    margin: 0;
    color: var(--white);
    line-height: 1.25;
    font-size: clamp(0.9rem, 1.35vw, 1.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.final-cta-section h2 .cta-title-line {
    display: block;
    color: var(--white);
    white-space: nowrap;
}

.final-cta-section h2 .cta-title-line + .cta-title-line {
    margin-top: 3px;
}

.final-cta-section h2 .cta-title-highlight {
    color: #1688ff;
}

.final-contact-links {
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 9px;
}

.final-contact-link {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    gap: 6px;
    color: #dce9f8;
    text-decoration: none;
    border: 1px solid rgba(75, 145, 227, 0.42);
    border-radius: 6px;
    background: rgba(4, 31, 65, 0.72);
    font-size: 0.75rem;
    font-weight: 700;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.final-contact-link i {
    font-size: 0.9rem;
}

.final-contact-whatsapp i {
    color: #36d166;
}

.final-contact-linkedin i {
    color: #49a8ff;
}

.final-contact-link:hover {
    color: var(--white);
    border-color: rgba(0, 145, 255, 0.8);
    background: rgba(7, 66, 125, 0.78);
    transform: translateY(-2px);
}

.final-cta-section p {
    margin: 0;
    color: #d9e5f2;
    line-height: 1.5;
    font-size: 0.82rem;
}

.btn-final-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 67px;
    padding: 10px 16px;
    gap: 19px;
    color: var(--white);
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(
            90deg,
            #087cff,
            #0569e5
        );
    box-shadow:
        0 10px 28px rgba(0, 105, 237, 0.26);
    line-height: 1.1;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-final-cta i {
    font-size: 1.75rem;
}

.btn-final-cta:hover {
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            #1589ff,
            #0878ff
        );
    box-shadow:
        0 12px 34px rgba(0, 126, 255, 0.39);
    transform: translateY(-3px);
}


/* =========================================================
   RODAPÉ INSTITUCIONAL
========================================================= */

.site-footer {
    padding: 28px 0;
    color: #bac9da;
    border-top: 1px solid rgba(55, 126, 210, 0.25);
    background: #010a19;
    font-size: 0.8rem;
}

.site-footer-brand {
    display: block;
    margin-bottom: 7px;
    color: var(--white);
    font-size: 0.98rem;
}

.site-footer p {
    max-width: 340px;
    margin: 0;
    line-height: 1.55;
}

.site-footer-info {
    display: flex;
    align-items: flex-start;
    margin: 0;
    gap: 9px;
    color: #bac9da;
    line-height: 1.5;
    font-style: normal;
}

.site-footer-info + .site-footer-info {
    margin-top: 9px;
}

.site-footer-info i,
.site-footer-links i {
    flex: 0 0 auto;
    margin-top: 1px;
    color: #3c9eff;
    font-size: 0.9rem;
}

.site-footer-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
}

.site-footer-links a {
    display: inline-flex;
    align-items: flex-start;
    max-width: 100%;
    gap: 9px;
    color: #d5e2f0;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 0.25s ease;
}

.site-footer-links a:hover {
    color: #69b6ff;
}

.site-footer-links a:focus-visible {
    outline: 2px solid #69b6ff;
    outline-offset: 3px;
    border-radius: 2px;
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1199.98px) {

    .hero-section {
        padding-top: 35px;
    }

    .hero-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .form-column {
        padding-top: 0;
    }

    .analysis-form-card {
        max-width: 760px;
        margin: 0 auto;
    }

    .security-visual {
        min-height: 500px;
    }

    .step-item::before,
    .step-item::after {
        display: none;
    }

    .partners-intro {
        text-align: center;
    }

    .partners-section .section-eyebrow {
        text-align: center !important;
    }
}


@media (max-width: 991.98px) {

    .hero-content {
        text-align: center;
    }

    .brand-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-title,
    .hero-description,
    .hero-benefits {
        margin-right: auto;
        margin-left: auto;
    }

    .technology-tag {
        margin-right: auto;
        margin-left: auto;
    }

    .benefit-item {
        justify-content: center;
    }

    .security-visual {
        max-width: 570px;
        min-height: 520px;
        margin: 0 auto;
    }

    .final-cta-section {
        text-align: center;
    }

    .final-cta-section p {
        max-width: 550px;
        margin: 0 auto;
    }

    .final-contact-links {
        justify-content: center;
    }

    .btn-final-cta {
        max-width: 430px;
        margin: 0 auto;
    }
}


@media (max-width: 767.98px) {

    .section-padding {
        padding: 48px 0;
    }

    .hero-section {
        padding-top: 28px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .security-visual {
        min-height: 440px;
        transform: scale(0.9);
    }

    .connection-circle-three {
        width: 445px;
        height: 445px;
    }

    .analysis-form-card {
        padding: 24px 20px 12px;
    }

    .step-item {
        display: flex;
        align-items: center;
        flex-direction: column;
        min-height: auto;
        padding: 12px 25px;
        text-align: center;
    }

    .step-header {
        align-items: center;
        flex-direction: column;
        margin-bottom: 10px;
        gap: 7px;
    }

    .step-number {
        margin-top: 0;
    }

    .differential-card {
        align-items: center;
        text-align: center;
    }

    .testimonial-card p {
        min-height: auto;
    }
}


@media (max-width: 575.98px) {

    .hero-container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .privacy-modal .modal-header {
        padding: 15px 16px;
    }

    .privacy-modal .modal-body {
        padding: 18px 16px;
        font-size: 0.82rem;
    }

    .privacy-modal .modal-footer {
        padding: 10px 16px;
    }

    .hero-title {
        font-size: 2.05rem;
    }

    .technology-tag {
        font-size: 0.7rem;
    }

    .hero-benefits .col-sm-6 {
        width: 100%;
    }

    .benefit-item {
        justify-content: flex-start;
        max-width: 280px;
        margin: 0 auto;
    }

    .step-item h3 {
        font-size: 1.2rem;
    }

    .step-item p {
        max-width: 330px;
        font-size: 1rem;
    }

    .security-visual {
        width: 500px;
        min-height: 410px;
        margin-left: 50%;
        transform: translateX(-50%) scale(0.7);
        transform-origin: center;
    }

    .icon-health {
        top: 16px;
        left: calc(50% - 25.5px);
    }

    .icon-home {
        top: 78px;
        left: 20%;
    }

    .icon-family {
        top: 78px;
        right: 20%;
    }

    .icon-person {
        top: 205px;
        left: 13%;
    }

    .icon-car {
        top: 205px;
        right: 13%;
    }

    .icon-lock {
        bottom: 54px;
        left: 22%;
    }

    .icon-dental {
        right: 22%;
        bottom: 54px;
    }

    .custom-radio .form-check-label {
        font-size: 0.75rem;
    }

    .audience-card {
        min-height: 125px;
    }

    .differential-card {
        flex-direction: column;
    }

    .final-cta-section {
        padding: 35px 0;
    }
}


@media (max-width: 399.98px) {

    .analysis-form-card {
        padding-right: 15px;
        padding-left: 15px;
    }

    .final-contact-links {
        align-items: stretch;
        flex-direction: column;
    }

    .final-contact-link {
        justify-content: center;
    }

    .custom-radio .form-check-label {
        font-size: 0.72rem;
    }

    .security-visual {
        transform: translateX(-50%) scale(0.61);
    }
}


@media (max-width: 433px) {

    .hero-brand-group {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .brand-logo {
        width: 205px;
        height: 71px;
        margin-right: auto;
        margin-left: auto;
    }

    .brand-logo-image {
        top: -15px;
        left: -2px;
        width: 205px;
    }

    .technology-tag {
        display: flex;
        justify-content: center;
        width: auto;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
}
