﻿        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: "Inter", sans-serif;
            background: #DFDFDF;
            color: #333;
        }

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

        button,
        a.button {
            font-family: inherit;
        }

        :root {
            --brand-green: #87a2dc;
            --brand-green-2: #C7B9E6;
            --brand-blue-1: #053968;
            --brand-blue-2: #72b2cb;
            --brand-blue-3: #29719A;
            --text-dark: #333;
            --border: #e5e5e5;
            --card: #fff;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            --container-max: 1440px;
            --gutter: 0px;
            --gutter-sm: 16px;
            /* altura de referência do cabeçalho quando grudado */
            --stuck-offset: 120px;

            --text-title-dark: #104559;

            --btn-blue-1: #053968;
            --brand-newblue-2: #4F97AC;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: var(--gutter);
            padding-right: var(--gutter);
        }

        .font-blue {
            color: var(--brand-blue-1);
            font-size: 15px;
        }

        /* ===== Header (agora sticky) ===== */
        header.header_top {
            background: #fff;
            border-bottom: 1px solid #eee;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 40000;
            isolation: isolate;
            /* cria um contexto próprio, impedindo que irmãos passem por cima */
        }

        .header_top .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            transition: padding .2s ease;
        }

        /* Placeholder para compensar o header fixo */
        .header-placeholder {
            height: 141px;
            /* Altura inicial aproximada do header */
        }

        .header_top {
            z-index: 30000;
        }

        header.header_top .logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        header.header_top .logo img {
            height: 110px;
            transition: height .2s ease;
        }

        /* Header quando grudado */
        header.header_top.is-stuck {
            box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
        }

        header.header_top.is-stuck .header-inner {
            padding: 6px 20px;
        }

        header.header_top.is-stuck .logo img {
            height: 64px;
        }

        /* Nav / Menu mobile */
        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 400;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            margin-left: auto;
            border: none;
            background: transparent;
            margin-top: -109px !important;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--brand-green-2);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 60px;
                right: var(--gutter-sm);
                width: 220px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                padding: 10px 0;
                display: none;
                animation: fadeIn 0.3s ease;
            }

            nav ul li {
                padding: 10px 20px;
            }

            nav ul li a {
                display: block;
                color: #444;
                font-weight: 500;
            }

            nav ul li a:hover {
                background: var(--brand-green);
                color: #fff;
                border-radius: 5px;
                padding: 10px 10px;
            }

            nav ul.active {
                display: flex;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Folga para rolagem/âncoras não ficarem sob o header */
        [id] {
            scroll-margin-top: var(--stuck-offset);
        }

        .planos,
        .tele,
        .profissionais,
        .depoimentos,
        .faq,
        #saude-prioridade {
            scroll-margin-top: var(--stuck-offset);
        }

        /* ===== NOVA SESSÃO DESTAQUE (banner acima do agendamento) ===== */
        .mast {
            position: relative;
            background: #98b99c;
            display: grid;
            align-items: center;
            color: #fff;
        }

        .mast::after {
            content: "";
            position: absolute;
            /*inset: 0;*/
        }

        .mast .mast-wrap {
            position: relative;
            max-width: 1200px;
            margin: 0 98px;
            padding: 72px 20px;
        }

        .mast h1 {
            margin: 0 0 18px;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: .2px;
            font-size: clamp(34px, 6.8vw, 48px);
            color: #fff;
        }

        .mast p {
            margin: 0 0 26px;
            color: #fff;
            font-size: clamp(18px, 2.6vw, 24px);
            max-width: 880px;
        }

        .mast .cta {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 66px;
            padding: 0 28px;
            border-radius: 5px;
            border: 0;
            font-weight: 600;
            font-size: clamp(16px, 2.2vw, 24px);
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
        }

        .btn-hero.primary {
            background: #FBBA1F;
            color: #fff;
        }

        .btn-hero.secondary {
            background: #fff;
            color: #2b3a42;
            border: 1px solid rgba(0, 0, 0, .08);
            box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
        }

        /* ===== HERO (form de agendamento) ===== */
        .hero {
            --bg: #f7f7f7;
            --bg_form: #E7F5FD;
            --text: #4D4D4D;
            --muted: #6b7280;
            --line: #FBBA1F;
            --brand: #FBBA1F;
            --focus: #3b82f6;
            --card: #fff;
            --shadow: 0 8px 22px rgba(0, 0, 0, .06);
            --radius: 14px;
            --rail: 280px;
            --gap: 28px;
            --maxw: 1080px;

            padding: 42px 20px 48px 20px;
            background: var(--bg_form);
        }

        .hero .age_wrap {
            max-width: var(--maxw);
            margin: 0 auto;
            background: var(--bg_form);
        }

        .hero h1 {
            margin: 0 0 8px;
            text-align: center;
            font-size: clamp(28px, 4vw, 40px);
            letter-spacing: .2px;
            color: var(--text)
        }

        .hero .age_subtitle {
            margin: 0 auto 34px;
            text-align: center;
            color: var(--muted);
            max-width: 680px;
            font-size: 15px
        }

        .hero .age_grid {
            display: grid;
            grid-template-columns: var(--rail) 1fr;
            column-gap: calc(var(--gap) + 12px);
            align-items: start;
            position: relative
        }

        .hero .age_rail {
            position: relative;
            padding-right: 26px
        }

        .hero .age_rail::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 6px;
            width: 2px;
            background: var(--line);
            z-index: 0;
        }

        .hero .age_step {
            position: relative;
            margin: 22px 0 58px
        }

        .hero .age_step:last-of-type {
            margin-bottom: 0
        }

        .hero .age_step h3 {
            margin: 0 0 14px;
            font-size: 22px;
            font-weight: 800;
            line-height: 1.15;
            position: relative;
            display: inline-block;
        }

        .hero .age_step h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 120px;
            height: 1px;
            background: var(--line)
        }

        .hero .age_step p {
            margin: 0;
            color: var(--muted);
            font-size: 16px
        }

        .hero .age_dot {
            position: absolute;
            top: 0;
            right: -36px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--brand);
            color: #fff;
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 16px;
            z-index: 1;
        }

        .hero .age_step_mb1 {
            margin: 0 0 222px
        }

        .hero .age_panel {
            background: transparent
        }

        .hero .age_field {
            margin: 10px 0 4px
        }

        .hero .age_label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px
        }

        .hero .age_input,
        .hero .age_select,
        .hero .age_date {
            width: 100%;
            border: 1.4px solid #e5e7eb;
            background: var(--card);
            border-radius: 5px;
            padding: 12px 14px;
            font-size: 15px;
            outline: none;
            box-shadow: var(--shadow);
            transition: .15s;
        }

        .hero .age_input:focus,
        .hero .age_select:focus,
        .hero .age_date:focus {
            border-color: var(--focus);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, .12), var(--shadow)
        }

        .hero .age_row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px
        }

        .hero .age_row_field_mb {
            margin-bottom: 38px
        }

        .hero .age_plans {
            display: grid;
            gap: 12px;
            margin-top: 6px
        }

        .hero .age_plan {
            position: relative;
            background: var(--card);
            border: 1.4px solid #e5e7eb;
            border-radius: 5px;
            padding: 16px;
            box-shadow: var(--shadow);
            transition: .15s;
        }

        .hero .age_plan:hover {
            transform: translateY(-1px)
        }

        .hero .age_plan.active {
            border-color: var(--focus);
            box-shadow: 0 0 0 6px rgba(59, 130, 246, .1), var(--shadow);
            background: #fbfdff
        }

        .hero .age_plan .age_head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
        }

        .hero .age_plan h4 {
            margin: 0 0 4px;
            font-size: 18px
        }

        .hero .age_plan p {
            margin: 0;
            font-size: 13px;
            color: var(--muted)
        }

        .hero .age_chev {
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            transition: transform .18s ease;
            margin-top: 2px;
        }

        .hero .age_plan.open .age_chev {
            transform: rotate(180deg);
        }

        .hero .age_tiers {
            display: none;
            gap: 10px;
            margin-top: 12px
        }

        .hero .age_plan.open .age_tiers {
            display: grid
        }

        .hero .age_tier {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1.4px solid #e5e7eb;
            border-radius: 5px;
            padding: 12px 12px 12px 44px;
            background: #fff;
            box-shadow: var(--shadow);
            cursor: pointer;
        }

        .hero .age_tier:hover {
            transform: translateY(-1px)
        }

        .hero .age_tier input[type=radio] {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            margin: 0;
        }

        .hero .age_tier .age_ttxt {
            font-size: 14px
        }

        .hero .age_tier .age_price {
            margin-left: auto;
            font-weight: 800;
            font-size: 14px;
            background: #F3F4F6;
            border-radius: 6px;
            padding: 6px 12px;
            border: 1px solid #e5e7eb;
        }

        .hero .age_help {
            color: var(--muted);
            font-size: 13px;
            margin: 14px 0 0
        }

        .hero .age_cta {
            margin-top: 18px;
            display: flex;
            justify-content: flex-start
        }

        .hero .age_btn {
            width: 217px;
            height: 67px;
            border: 0;
            background: var(--brand);
            color: #fff;
            font-weight: 700;
            padding: 14px 26px;
            border-radius: 5px;
            font-size: 24px;
            letter-spacing: .2px;
            cursor: pointer;
            box-shadow: 0 10px 22px rgba(11, 18, 32, .22);
            transition: .12s;
        }

        .hero .age_btn:active {
            transform: translateY(1px)
        }

        .hero .age_mstep {
            display: none;
            align-items: center;
            gap: 12px;
            margin: 34px 0 10px
        }

        .hero .age_mstep .age_mdot {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            background: var(--brand);
            font-weight: 800;
            font-size: 18px;
        }

        .hero .age_mstep .age_mtitle {
            font-size: 26px;
            font-weight: 900;
            line-height: 1.15;
            position: relative;
            padding-bottom: 10px
        }

        .hero .age_mstep .age_mtitle::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: var(--line)
        }

        @media (max-width:760px) {
            .hero .age_grid {
                grid-template-columns: 1fr;
                gap: 18px
            }

            .hero .age_rail {
                display: none
            }

            .hero .age_row {
                grid-template-columns: 1fr
            }

            .hero .age_cta .age_btn {
                width: 100%
            }

            .hero .age_mstep {
                display: flex
            }


            .mast .mast-wrap {
                margin: 0 0;
            }
        }

        .hero .age_input.error,
        .hero .age_select.error,
        .hero .age_date.error {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, .12), var(--shadow) !important;
        }

        .hero .error-msg {
            margin-top: 6px;
            font-size: 12px;
            color: #b91c1c;
        }

        .hero .age_label+.error-msg {
            margin-top: 8px;
        }

        /* ===== Carrosséis ===== */
        .carousel-container {
            position: relative;
            overflow: hidden;
            max-width: 100%;
            padding: 0 40px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.4s ease-in-out;
            will-change: transform;
        }

        .carousel-item {
            flex: 0 0 206px;
            margin: 10px;
            background: #ffffff29;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .carousel-item-background {
            background: #E7F5FD;
        }

        .carousel-item img {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 10px;
            border: 3px solid #fff;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.05);
            color: #fff;
            border: none;
            font-size: 22px;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 2;
        }

        .carousel-btn:disabled {
            opacity: .45;
            cursor: default;
        }

        .carousel-btn.left {
            left: 10px;
        }

        .carousel-btn.right {
            right: 10px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
        }

        .carousel-indicators button {
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background: #cfd8dc;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .carousel-indicators button.active {
            background: #93ffac;
            transform: scale(1.15);
        }

        /* ===== Seções ===== */
        .profissionais {
            background: linear-gradient(to bottom, var(--brand-blue-2), var(--brand-blue-2));
            padding: 50px 0;
            color: #fff;
            text-align: center;
        }

        .profissionais h2 {
            font-size: 46px !important;
            font-weight: 400;
        }

        .profissionais-title-crm {
            color: #fff;
            text-align: center;
        }

        .profissionais-text {
            padding: 20px;
            border-radius: 20px;
        }

        /* ===== Planos (cards v2) ===== */
        .planos {
            text-align: center;
            padding: 70px 0 78px;
            background: #f3f5f8;
            font-size: 15px;
        }

        .planos h2 {
            color: #1f2937;
            margin: 0 0 36px;
            font-size: clamp(34px, 4.5vw, 46px);
            font-weight: 700;
            letter-spacing: .2px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            align-items: stretch;
        }

        .plan-card {
            position: relative;
            background: #ffffff;
            border: 1px solid #d9dee7;
            border-radius: 18px;
            box-shadow: 0 3px 12px rgba(15, 23, 42, .05);
            display: flex;
            flex-direction: column;
            min-height: 560px;
            overflow: hidden;
            text-align: left;
            padding: 34px 32px 28px;
        }

        .plan-card.is-featured {
            border: 2px solid #0f5f89;
            box-shadow: 0 8px 22px rgba(15, 95, 137, .16);
            transform: translateY(-12px);
        }

        .plan-badge {
            position: absolute;
            top: 18px;
            right: 18px;
            background: #0f5f89;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            line-height: 1;
            padding: 9px 14px;
            border-radius: 999px;
            box-shadow: 0 6px 14px rgba(15, 95, 137, .24);
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .plan-badge ion-icon {
            font-size: 13px;
        }

        .plan-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: #ecf2fa;
            color: #0f5f89;
            display: grid;
            place-items: center;
            margin-bottom: 20px;
        }

        .plan-icon-wrap ion-icon {
            font-size: 31px;
        }

        .plan-header {
            background: transparent;
            color: inherit;
            padding: 0;
            display: block;
        }

        .plan-header h3 {
            margin: 0;
            color: #111827;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 800;
            letter-spacing: -.01em;
            line-height: 1.1;
        }

        .plan-subtitle {
            margin: 12px 0 26px;
            color: #667085;
            font-size: 16px;
            line-height: 1.4;
            max-width: 95%;
        }

        .plan-body {
            padding: 0;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .plan-features {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            color: #374151;
            font-size: 16px;
            line-height: 1.35;
        }

        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .plan-features li ion-icon {
            color: #22c55e;
            font-size: 21px;
            flex: 0 0 21px;
            margin-top: 3px;
        }

        .plan-cta {
            margin-top: auto;
            padding-top: 30px;
        }

        .plan-cta .btn {
            width: 100%;
            height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .01em;
            cursor: pointer;
            transition: transform .15s ease, box-shadow .15s ease;
        }

        .plan-cta .btn:hover {
            transform: translateY(-1px);
        }

        .plan-card.is-featured .plan-cta .btn {
            border: 0;
            background: #0f5f89;
            color: #fff;
            box-shadow: 0 12px 24px rgba(15, 95, 137, .22);
        }

        .plan-card:not(.is-featured) .plan-cta .btn {
            border: 2px solid #0f5f89;
            background: #fff;
            color: #0f5f89;
            box-shadow: none;
        }

        @media (max-width: 1100px) {
            .plans-grid {
                grid-template-columns: repeat(2, minmax(260px, 1fr));
            }

            .plan-card.is-featured {
                transform: translateY(0);
            }
        }

        @media (max-width: 720px) {
            .planos {
                padding: 54px 0 60px;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                padding: 0 14px;
            }

            .plan-card {
                min-height: 0;
                padding: 26px 20px 22px;
                border-radius: 16px;
            }

            .plan-header h3 {
                font-size: 30px;
            }

            .plan-subtitle {
                font-size: 17px;
            }

            .plan-features {
                font-size: 17px;
            }

            .plan-badge {
                top: 14px;
                right: 14px;
                font-size: 11px;
                padding: 8px 12px;
            }
        }

        /* ===== Depoimentos (carrossel com 2 cards) ===== */
        .depoimentos {
            background: #fff;
            padding: 80px 0 90px;
            text-align: center;
        }

        .depoimentos h2 {
            margin: 0 0 40px;
            font-weight: 400;
            letter-spacing: .5px;
            color: #FBBA1F;
            font-size: clamp(36px, 6vw, 46px);
        }

        .depo-carousel .carousel-track {
            align-items: stretch;
        }

        .depo-carousel .carousel-item {
            flex: 0 0 calc(50% - 40px);
            margin: 20px;
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 38px 48px;
            box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
            text-align: left;
        }

        .depo-quote {
            margin: 0 0 22px;
            color: #7a7a7a;
            line-height: 1.55;
            font-size: clamp(16px, 2vw, 15px);
            word-wrap: break-word;
        }

        .depo-quote::before {
            content: "“";
            font-size: 1.4em;
            line-height: 0;
            vertical-align: -0.25em;
            color: #c7c7c7;
            margin-right: .1em;
        }

        .depo-name {
            margin: 0;
            font-weight: 400;
            color: #FBBA1F;
            font-size: clamp(22px, 3vw, 24px);
        }

        @media (max-width: 900px) {
            .depo-carousel .carousel-item {
                flex: 0 0 calc(100% - 40px);
                padding: 28px 24px;
            }
        }

        .welcome-testimonials {
            background: #f4f9fd;
            padding: 64px 20px 76px;
        }

        .welcome-testimonials__wrap {
            max-width: 1180px;
            margin: 0 auto;
        }

        .welcome-testimonials__header {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 28px;
        }

        .welcome-testimonials__title {
            margin: 0;
            color: #29719A;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 400;
        }

        .welcome-testimonials__subtitle {
            margin: 8px 0 0;
            color: #456578;
            font-size: clamp(15px, 2vw, 18px);
        }

        .welcome-testimonials__summary {
            min-width: 220px;
            background: #fff;
            border: 1px solid #c9ddea;
            border-radius: 14px;
            padding: 14px 16px;
            text-align: right;
            box-shadow: 0 8px 20px rgba(5, 57, 104, 0.08);
        }

        .welcome-testimonials__summary-label {
            margin: 0;
            color: #5b7484;
            font-size: 11px;
            letter-spacing: .6px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .welcome-testimonials__summary-score {
            margin: 4px 0 0;
            color: #053968;
            font-size: clamp(24px, 3.5vw, 34px);
            font-weight: 700;
            line-height: 1.1;
        }

        .welcome-testimonials__summary-score small {
            font-size: .55em;
            color: #5b7484;
            font-weight: 600;
        }

        .welcome-testimonials__stars {
            --rating-width: 0%;
            position: relative;
            display: inline-block;
            line-height: 1;
            letter-spacing: 2px;
        }

        .welcome-testimonials__stars-base {
            color: #d8e3ec;
        }

        .welcome-testimonials__stars-fill {
            position: absolute;
            inset: 0 auto 0 0;
            width: var(--rating-width);
            overflow: hidden;
            white-space: nowrap;
            color: #fbba1f;
        }

        .welcome-testimonials__stars--summary {
            margin-top: 6px;
            font-size: 16px;
        }

        .welcome-testimonials__summary-meta {
            margin: 4px 0 0;
            color: #5b7484;
            font-size: 12px;
        }

        .welcome-testimonials__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .welcome-testimonials__card {
            background: #fff;
            border: 1px solid #d3e5f0;
            border-radius: 14px;
            padding: 18px 18px 16px;
            box-shadow: 0 6px 18px rgba(5, 57, 104, 0.07);
            display: flex;
            flex-direction: column;
            min-height: 210px;
        }

        .welcome-testimonials__card-score {
            margin: 0;
            color: #053968;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .4px;
        }

        .welcome-testimonials__card-score strong {
            font-size: 15px;
            color: #29719A;
        }

        .welcome-testimonials__rating {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 10px;
        }

        .welcome-testimonials__rating .welcome-testimonials__stars {
            font-size: 18px;
        }

        .welcome-testimonials__card-comment {
            margin: 0;
            color: #2e4b5d;
            line-height: 1.55;
            font-size: 15px;
            flex: 1 1 auto;
        }

        .welcome-testimonials__card-author {
            margin: 12px 0 0;
            color: #053968;
            font-weight: 700;
            font-size: 14px;
        }

        .welcome-testimonials__card-date {
            margin: 2px 0 0;
            color: #6d8594;
            font-size: 12px;
        }

        .welcome-testimonials__empty {
            margin: 0;
            padding: 16px;
            border: 1px dashed #c9ddea;
            border-radius: 12px;
            color: #49687b;
            background: #fff;
        }

        @media (max-width: 1024px) {
            .welcome-testimonials__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .welcome-testimonials__header {
                align-items: stretch;
            }

            .welcome-testimonials__summary {
                text-align: left;
                width: 100%;
            }

            .welcome-testimonials__grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Como funciona o teleatendimento ===== */
        .tele {
            background: #dfe8ef;
            padding: clamp(54px, 6vw, 94px) 20px;
            overflow: hidden;
        }

        .tele-wrap {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
            gap: clamp(28px, 3vw, 54px);
            align-items: center;
        }

        .tele-content {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .tele-title {
            margin: 0;
            color: #2f78bc;
            font-size: clamp(38px, 4.8vw, 86px);
            font-weight: 800;
            line-height: .98;
            letter-spacing: -0.025em;
            text-wrap: balance;
        }

        .tele-text {
            margin: clamp(16px, 1.8vw, 28px) auto 0;
            max-width: 860px;
            color: #475a6b;
            font-size: clamp(18px, 1.5vw, 35px);
            line-height: 1.45;
        }

        .tele-features {
            margin-top: clamp(30px, 3.2vw, 46px);
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(12px, 1.2vw, 18px);
        }

        .tele-feature {
            background: #f3f6f9;
            border: 1px solid #d4dee9;
            border-radius: 24px;
            min-height: 186px;
            padding: 24px 18px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 12px 22px rgba(14, 49, 83, .08);
        }

        .tele-feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            margin-bottom: 14px;
            color: #3378b8;
        }

        .tele-feature-icon ion-icon {
            font-size: 34px;
        }

        .tele-feature h3 {
            margin: 0;
            color: #0f3d66;
            font-size: clamp(19px, 1.3vw, 28px);
            line-height: 1.15;
            font-weight: 700;
            max-width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
            hyphens: auto;
            text-wrap: balance;
        }

        .tele-feature p {
            margin: 8px 0 0;
            color: #6b7a88;
            font-size: clamp(14px, 1vw, 20px);
            line-height: 1.3;
        }

        .tele-cta {
            margin-top: clamp(30px, 3.4vw, 54px);
            display: flex;
            justify-content: center;
        }

        .btn-yellow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: clamp(230px, 26vw, 440px);
            height: clamp(58px, 6.1vw, 98px);
            padding: 0 clamp(30px, 3.3vw, 58px);
            border: 0;
            border-radius: 999px;
            background: #0e4779;
            color: #fff;
            font-size: clamp(21px, 2.1vw, 45px);
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 14px 30px rgba(8, 52, 92, .22);
            transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
        }

        .tele .btn-yellow:hover,
        .tele .btn-yellow:focus-visible {
            filter: brightness(1.05);
            transform: translateY(-2px);
            box-shadow: 0 18px 32px rgba(8, 52, 92, .25);
        }

        .tele .btn-yellow:active {
            transform: translateY(1px);
            box-shadow: 0 10px 20px rgba(8, 52, 92, .22);
        }

        .tele-media {
            position: relative;
            margin: 0;
            width: 100%;
            max-width: 700px;
            aspect-ratio: 21 / 20;
            border-radius: 200px 200px 0 200px;
            overflow: hidden;
            justify-self: end;
            box-shadow: 0 20px 44px rgba(16, 46, 77, .16);
        }

        .tele-media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        @media (max-width: 1180px) {
            .tele-wrap {
                grid-template-columns: 1fr;
            }

            .tele-content {
                max-width: 940px;
            }

            .tele-media {
                justify-self: center;
                max-width: 760px;
                aspect-ratio: 15 / 11;
                border-radius: 120px 120px 16px 120px;
                margin-top: 4px;
            }
        }

        @media (max-width: 840px) {
            .tele-features {
                grid-template-columns: 1fr;
            }

            .tele-feature {
                min-height: 148px;
            }

            .tele-title {
                font-size: clamp(34px, 10.8vw, 52px);
            }

            .tele-text {
                font-size: clamp(16px, 4.3vw, 23px);
            }

            .btn-yellow {
                min-width: clamp(220px, 80vw, 320px);
                height: 58px;
                font-size: clamp(20px, 7vw, 32px);
            }

            .tele-media {
                max-width: 100%;
                aspect-ratio: 5 / 4;
                border-radius: 68px 68px 12px 68px;
            }
        }

        /* ===== Saúde mental (após Planos) ===== */
        .priority {
            background: #fff;
            padding: 70px 20px 90px;
            text-align: center;
        }

        .priority h2 {
            margin: 0 0 28px;
            color: var(--brand-blue-3);
            font-weight: 400;
            font-size: clamp(28px, 4vw, 46px);
        }

        .priority-quote {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            color: #053968;
            font-size: clamp(16px, 2.2vw, 24px);
            line-height: 1.6;
        }

        .priority-quote::before,
        .priority-quote::after {
            content: "“";
            position: absolute;
            top: -10px;
            color: var(--brand-blue-3);
            font-size: 42px;
            line-height: 0;
        }

        .priority-quote::before {
            left: -12px;
        }

        .priority-quote::after {
            content: "”";
            right: -12px;
        }

        /* ===== Saúde mental (abaixo de Profissionais) ===== */
        .priority--lightblue {
            background: #E7F5FD;
            padding: 84px 20px 100px;
            text-align: center;
        }

        .priority--lightblue h2 {
            margin: 0 0 26px;
            color: var(--brand-blue-3);
            font-weight: 400;
            font-size: clamp(34px, 6vw, 46px);
            letter-spacing: .2px;
        }

        .priority-quote-big {
            position: relative;
            max-width: 1050px;
            margin: 0 auto;
            color: #053968;
            font-style: italic;
            font-weight: 400;
            font-size: clamp(18px, 2.4vw, 24px);
            line-height: 1.55;
        }

        .priority-quote-big::before,
        .priority-quote-big::after {
            content: "“";
            position: absolute;
            color: var(--brand-blue-3);
            font-size: clamp(28px, 4vw, 54px);
            line-height: 0;
            opacity: .9;
        }

        .priority-quote-big::before {
            left: -22px;
            top: -12px;
        }

        .priority-quote-big::after {
            content: "”";
            right: -22px;
            top: 6px;
        }

        /* ===== FAQ ===== */
        .faq {
            background: #F6F8FB;
            padding: 72px 20px 96px;
        }

        .faq-wrap {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq h2 {
            margin: 0 0 18px;
            color: var(--brand-blue-3);
            font-weight: 400;
            letter-spacing: .2px;
            font-size: clamp(32px, 5.5vw, 46px);
        }

        .faq-intro {
            margin: 0 0 16px;
            color: #2c3e50;
            font-size: 15px;
            line-height: 1.7;
            max-width: 1200px;
        }

        .faq-note {
            margin: 10px 0 26px;
            color: #455a64;
            font-size: 16px;
            opacity: .9;
            font-style: italic;
        }

        .faq-list {
            display: grid;
            gap: 16px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e7ebf0;
            border-radius: 12px;
            box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
            overflow: hidden;
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 22px 56px 22px 24px;
            text-align: left;
            background: transparent;
            border: 0;
            font-size: 15px;
            color: #1f2d3d;
            cursor: pointer;
        }

        .faq-q .chev {
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            color: #FF8A00;
            transition: transform .18s ease;
        }

        .faq-item.open .faq-q .chev {
            transform: rotate(180deg);
        }

        .faq-a {
            display: none;
            padding: 0 24px 22px;
            color: #4d4d4d;
            line-height: 1.7;
            font-size: 16px;
            border-top: 1px solid #eef1f5;
        }

        .faq-item.open .faq-a {
            display: block;
        }

        /* ===== Footer (novo com Ionicons) ===== */
        .footer {
            display: block;
            background: #E9F5F0;
            color: #0f3042;
        }

        .footer a {
            color: #1f2d3d;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer-top {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 38px 20px 28px;
            display: grid;
            grid-template-columns: 1.2fr .8fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 42px;
            flex-wrap: wrap;
        }

        .footer-logo-salz {
            width: 230px;
            height: 89px;
            object-fit: contain;
        }

        .footer-logo-eds {
            width: 149px;
            height: 174px;
            object-fit: contain;
        }

        .footer-col .footer-title {
            margin: 0 0 14px;
            color: var(--brand-blue-3);
            font-weight: 800;
            font-size: clamp(22px, 3.4vw, 34px);
            letter-spacing: .2px;
        }

        .footer-links a {
            display: block;
            padding: 10px 0;
            font-size: 18px;
        }

        .footer-contact {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 14px 0;
            font-size: 18px;
            color: #1f2d3d;
        }

        .footer-contact ion-icon {
            flex: 0 0 22px;
            width: 22px;
            height: 22px;
            font-size: 22px;
            color: #1f4e6b;
            margin-top: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, .06);
            text-align: center;
            padding: 14px 20px 18px;
            color: #1f4e6b;
            font-size: 14px;
        }

        @media (max-width: 960px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
                text-align: center;
            }

            .footer-brand {
                justify-content: center;
            }

            .footer-contact li {
                justify-content: center;
            }

            .footer-links a {
                padding: 8px 0;
            }
        }




        label {
            display: block;
            margin: .5rem 0 .25rem;
            font-weight: 600
        }

        input,
        select {
            width: 100%;
            padding: .75rem;
            border: 1px solid #ddd;
            border-radius: 10px
        }

        .input_login {
            width: 25%;
            min-width: 346px;
        }

        .checkbox {

            width: 6%;
        }

        .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .muted {
            color: #6b7280;
            font-size: .875rem
        }

        .mb {
            margin-bottom: 14px
        }

        .error {
            color: #b91c1c;
            font-size: .875rem;
            margin-top: .25rem
        }

        a {
            text-decoration: none !important;
        }

        a:hover {
            text-decoration: none !important;
        }



















        /*  CSS Leads   */

        .zap-float-btn {
            position: fixed;
            right: 18px;
            bottom: 18px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
            z-index: 9999;
            text-decoration: none;
            cursor: pointer;
        }

        .zap-float-btn:hover {
            transform: scale(1.05);
        }

        .zap-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 30000;
        }

        .zap-modal {
            background: #f4ede4;
            max-width: 420px;
            width: 100%;
            border-radius: 8px;
            padding: 20px 22px;
            position: relative;
        }

        .zap-modal-title {
            font-size: 1.1rem;
            margin: 0 0 16px;
            color: #064e3b;
        }

        .zap-modal-close {
            position: absolute;
            right: 10px;
            top: 8px;
            border: 0;
            background: transparent;
            font-size: 24px;
            cursor: pointer;
            line-height: 1;
        }

        .zap-field {
            margin-bottom: 10px;
            font-size: .9rem;
        }

        .zap-field label {
            display: block;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .zap-field input,
        .zap-field select {
            width: 100%;
            padding: 8px 9px;
            border-radius: 4px;
            border: 1px solid #cbd5e1;
            font-size: .9rem;
        }

        .zap-checkbox label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }

        .zap-feedback {
            margin-top: 8px;
            font-size: .8rem;
            padding: 8px 10px;
            border-radius: 6px;
        }

        .zap-feedback.ok {
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            color: #166534;
        }

        .zap-feedback.err {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #b91c1c;
        }

        .zap-submit-btn {
            margin-top: 10px;
            width: 100%;
            padding: 10px 12px;
            border-radius: 6px;
            border: 0;
            background: #25D366;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
        }

        .zap-submit-btn[disabled] {
            opacity: .6;
            cursor: not-allowed;
        }

        /* Bio Modal */
        .bio-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 50000;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .bio-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .bio-modal {
            background: #fff;
            max-width: 600px;
            width: 100%;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            padding: 30px;
            transform: scale(0.9);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .bio-modal-overlay.active .bio-modal {
            transform: scale(1);
            opacity: 1;
        }

        .bio-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            transition: color 0.2s;
        }

        .bio-modal-close:hover {
            color: #000;
        }

        .bio-modal-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .bio-modal-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
            flex-shrink: 0;
        }

        .bio-modal-info {
            flex-grow: 1;
        }

        .bio-modal-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--brand-blue-1);
            margin: 0 0 5px 0;
        }

        .bio-modal-subtitle {
            font-size: 14px;
            color: #666;
            margin: 0;
            font-weight: 500;
        }

        .bio-modal-text {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            max-height: 60vh;
            overflow-y: auto;
            padding-right: 10px;
            /* para scrollbar não colar */
        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--brand-blue-1);
            text-decoration: underline;
            padding: 0;
            margin-left: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: inherit;
            /* herda tamanho do pai */
        }

        .read-more-btn:hover {
            color: var(--brand-blue-2);
        }
