.elementor-13 .elementor-element.elementor-element-4cc8b43{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-4cc8b43 *//* =========================================================
SITE DRA. ANA BEATRIZ DAVIM
CSS COMPLETO — VERSÃO CORRIGIDA
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600&display=swap");


/* =========================================================
VARIÁVEIS
========================================================= */

:root {
    --abd-green-dark: #173f35;
    --abd-green: #315b3e;
    --abd-green-soft: #64755b;

    --abd-salmon: #cc826f;
    --abd-salmon-dark: #bc725f;
    --abd-salmon-soft: #e5b1a2;

    --abd-cream: #fbf0ea;
    --abd-cream-light: #fdf8f5;
    --abd-white: #ffffff;

    --abd-text: #213a32;
    --abd-text-soft: #5d6963;

    --abd-border: rgba(42, 73, 61, 0.11);

    --abd-shadow:
        0 18px 45px rgba(37, 58, 49, 0.09);

    --abd-shadow-soft:
        0 10px 25px rgba(37, 58, 49, 0.07);

    --abd-radius: 16px;
    --abd-transition: 0.35s ease;
}


/* =========================================================
RESET ISOLADO
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    margin: 0;
}

#abd-site,
#abd-site *,
#abd-site *::before,
#abd-site *::after {
    box-sizing: border-box;
}

#abd-site {
    width: 100%;
    overflow-x: hidden;
    color: var(--abd-text);
    background: var(--abd-white);
    font-family: "DM Sans", sans-serif;
}

#abd-site img {
    display: block;
    max-width: 100%;
}

#abd-site a {
    color: inherit;
    text-decoration: none;
}

#abd-site button {
    font-family: inherit;
}


/* =========================================================
ESTRUTURA
========================================================= */

.abd-container {
    width: min(1140px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.abd-section {
    position: relative;
    padding: 92px 0;
}

.abd-section-heading {
    width: min(100%, 720px);
    margin: 0 auto 50px;
    text-align: center;
}

.abd-section-heading h2 {
    margin: 0 0 12px;
    color: var(--abd-green);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.abd-section-heading p {
    margin: 0;
    color: var(--abd-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.abd-center {
    display: flex;
    justify-content: center;
}


/* =========================================================
HEADER
========================================================= */

.abd-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;

    width: 100%;
    height: 78px;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(45, 70, 59, 0.06);

    transition:
        height var(--abd-transition),
        box-shadow var(--abd-transition),
        background var(--abd-transition);
}

.abd-header.abd-scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 10px 30px rgba(24, 55, 44, 0.08);
}

.abd-header-container {
    width: min(1180px, calc(100% - 48px));
    height: 100%;
    margin-right: auto;
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* =========================================================
LOGO DA HEADER
========================================================= */

.abd-logo-link {
    width: 255px;
    max-width: 255px;
    height: 100%;

    display: flex;
    align-items: center;
    flex: 0 0 255px;

    overflow: hidden;
}

.abd-logo {
    width: 100% !important;
    height: auto !important;

    max-width: 255px !important;
    max-height: 58px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: left center !important;

    transform: none !important;
}


/* =========================================================
MENU DESKTOP
========================================================= */

.abd-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.abd-desktop-nav a {
    position: relative;

    padding: 10px 0;

    color: var(--abd-green-dark);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.abd-desktop-nav a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;

    width: 0;
    height: 1px;
    margin: auto;

    background: var(--abd-salmon);

    transition: width var(--abd-transition);
}

.abd-desktop-nav a:hover::after,
.abd-desktop-nav a.abd-active::after {
    width: 100%;
}


/* =========================================================
BOTÃO DO MENU MOBILE
========================================================= */

.abd-menu-toggle {
    width: 43px;
    height: 43px;
    padding: 0;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    border: 0;
    border-radius: 50%;

    color: var(--abd-green-dark);
    background: transparent;

    cursor: pointer;
}

.abd-menu-toggle span {
    width: 22px;
    height: 2px;

    display: block;

    border-radius: 20px;
    background: currentColor;

    transition:
        transform var(--abd-transition),
        opacity var(--abd-transition);
}

.abd-menu-toggle.abd-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.abd-menu-toggle.abd-open span:nth-child(2) {
    opacity: 0;
}

.abd-menu-toggle.abd-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.abd-mobile-menu {
    display: none;
}


/* =========================================================
HERO
========================================================= */

.abd-hero {
    min-height: 650px;
    padding: 125px 0 68px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 84% 22%,
            rgba(221, 171, 155, 0.12),
            transparent 31%
        ),
        var(--abd-cream);
}

.abd-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.abd-hero-content {
    width: 100%;
    max-width: 520px;
}

.abd-eyebrow {
    display: block;

    margin: 0 0 21px;

    color: var(--abd-green-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.abd-hero-content h1 {
    width: 100%;
    max-width: 490px;

    margin: 0;

    color: #143f35;
    font-size: clamp(60px, 5.65vw, 76px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -3.2px;
}

.abd-hero-content h2 {
    margin: 15px 0 23px;

    color: var(--abd-salmon);
    font-size: clamp(19px, 1.65vw, 24px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.abd-hero-content p {
    width: 100%;
    max-width: 505px;

    margin: 0 0 29px;

    color: #495b53;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
BOTÕES
========================================================= */

.abd-btn {
    min-height: 49px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    transition:
        transform var(--abd-transition),
        box-shadow var(--abd-transition),
        background var(--abd-transition);
}

.abd-btn > svg,
.abd-btn > i > svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;

    stroke-width: 1.8;
}

.abd-btn-primary {
    color: var(--abd-white) !important;

    background:
        linear-gradient(
            135deg,
            var(--abd-salmon-dark),
            #dba08f
        );

    box-shadow:
        0 14px 26px rgba(174, 103, 85, 0.24);
}

.abd-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 34px rgba(174, 103, 85, 0.31);
}


/* =========================================================
IMAGEM DA HERO
========================================================= */

.abd-hero-image-wrap {
    position: relative;

    width: min(100%, 470px);
    margin-left: auto;
}

.abd-hero-image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 505px;

    object-fit: cover;
    object-position: center top;

    border-radius: 4px;

    box-shadow:
        0 22px 50px rgba(32, 57, 47, 0.16);
}

.abd-hero-shape {
    position: absolute;
    z-index: 1;

    border-radius: 50%;
    pointer-events: none;
}

.abd-hero-shape-one {
    top: -32px;
    right: -42px;

    width: 165px;
    height: 165px;

    border: 1px solid rgba(197, 128, 109, 0.28);
}

.abd-hero-shape-two {
    bottom: -32px;
    left: -42px;

    width: 115px;
    height: 115px;

    background: rgba(215, 164, 148, 0.13);
}


/* =========================================================
NEFROLOGIA
========================================================= */

.abd-nephrology {
    background: var(--abd-white);
}

.abd-nephrology-content {
    width: min(900px, 100%);
    margin: 0 auto;
}

.abd-nephrology-content h3 {
    margin: 0 0 17px;

    color: var(--abd-green-dark);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.abd-nephrology-content > p {
    margin: 0 0 14px;

    color: #53615c;
    font-size: 15px;
    line-height: 1.75;
}

.abd-nephrology-content h4 {
    position: relative;

    margin: 31px 0 27px;
    padding-bottom: 12px;

    color: var(--abd-green-dark);
    font-size: 17px;
    font-weight: 500;
}

.abd-nephrology-content h4::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 130px;
    height: 2px;

    background: var(--abd-salmon);
}

.abd-nephrology-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.abd-nephrology-card {
    min-height: 210px;
    padding: 27px 22px 23px;

    text-align: center;

    border: 1px solid var(--abd-border);
    border-top: 3px solid var(--abd-salmon-soft);
    border-radius: 12px;

    background: var(--abd-white);
    box-shadow: var(--abd-shadow-soft);

    transition:
        transform var(--abd-transition),
        box-shadow var(--abd-transition);
}

.abd-nephrology-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--abd-shadow);
}

.abd-nephrology-card h5 {
    margin: 0 0 10px;

    color: var(--abd-green-dark);
    font-size: 15px;
    font-weight: 600;
}

.abd-nephrology-card p {
    margin: 0;

    color: var(--abd-text-soft);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
ÍCONES DOS CARDS
========================================================= */

.abd-card-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--abd-salmon);
}

.abd-card-icon > svg,
.abd-card-icon > i > svg {
    width: 29px !important;
    height: 29px !important;
    flex: 0 0 29px;

    color: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
}


/* =========================================================
BOTÃO OUTLINE
========================================================= */

.abd-outline-btn {
    min-height: 43px;
    margin-top: 30px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: var(--abd-salmon) !important;

    border: 1px solid var(--abd-salmon);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 500;

    transition:
        color var(--abd-transition),
        background var(--abd-transition),
        transform var(--abd-transition);
}

.abd-outline-btn > svg,
.abd-outline-btn > i > svg {
    width: 15px;
    height: 15px;

    flex: 0 0 15px;
    stroke-width: 1.8;
}

.abd-outline-btn:hover {
    color: var(--abd-white) !important;
    background: var(--abd-salmon);
    transform: translateY(-2px);
}


/* =========================================================
SOBRE
========================================================= */

.abd-about {
    background: var(--abd-cream);
}

.abd-about-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: clamp(55px, 8vw, 105px);
}

.abd-about-image-column {
    display: flex;
    justify-content: center;
}

.abd-about-image-frame {
    position: relative;

    width: min(100%, 385px);
    aspect-ratio: 0.82;

    overflow: hidden;

    border-radius:
        52% 48% 48% 52% /
        38% 38% 62% 62%;

    box-shadow:
        0 22px 45px rgba(42, 61, 52, 0.17);
}

.abd-about-image-frame::after {
    content: "";

    position: absolute;
    inset: 13px;

    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: inherit;

    pointer-events: none;
}

.abd-about-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}

.abd-about-content h2 {
    margin: 0 0 8px;

    color: var(--abd-green);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.3px;
}

.abd-about-specialty {
    display: block;

    margin-bottom: 13px;

    color: var(--abd-salmon);
    font-size: 16px;
}

.abd-about-content strong {
    display: block;

    margin-bottom: 24px;

    color: var(--abd-salmon);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.abd-about-content p {
    margin: 0 0 15px;

    color: #56615c;
    font-size: 14px;
    line-height: 1.8;
}

.abd-about-link {
    position: relative;

    margin-top: 15px;
    padding: 13px 68px 13px 0;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--abd-salmon) !important;
    font-size: 13px;
    font-weight: 600;
}

.abd-about-link::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 115px;
    height: 2px;

    background: var(--abd-salmon-soft);
}

.abd-about-link > svg,
.abd-about-link > i > svg {
    width: 16px;
    height: 16px;

    flex: 0 0 16px;
    stroke-width: 1.8;

    transition: transform var(--abd-transition);
}

.abd-about-link:hover > svg,
.abd-about-link:hover > i > svg {
    transform: translateX(5px);
}


/* =========================================================
ESPECIALIDADES
========================================================= */

.abd-specialties {
    background: var(--abd-white);
}

.abd-specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.abd-specialty-card {
    position: relative;

    min-height: 315px;
    padding: 33px 26px 27px;

    display: flex;
    flex-direction: column;

    text-align: center;

    border: 1px solid rgba(48, 77, 64, 0.09);
    border-radius: 12px;

    background: var(--abd-white);

    transition:
        transform var(--abd-transition),
        box-shadow var(--abd-transition),
        border-color var(--abd-transition);
}

.abd-specialty-card:hover {
    transform: translateY(-6px);

    border-color: rgba(198, 128, 111, 0.24);
    box-shadow: var(--abd-shadow);
}

.abd-specialty-card h3 {
    margin: 0 0 13px;

    color: var(--abd-green-dark);
    font-size: 17px;
    font-weight: 600;
}

.abd-specialty-text {
    flex: 1;
}

.abd-specialty-card p {
    margin: 0 0 12px;

    color: var(--abd-text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.abd-hidden-content {
    max-height: 0;

    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.55s ease,
        opacity 0.35s ease,
        margin 0.35s ease;
}

.abd-specialty-card.abd-expanded .abd-hidden-content {
    max-height: 460px;
    margin-top: 12px;
    opacity: 1;
}

.abd-read-more {
    margin: 13px auto 0;
    padding: 7px 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 0;

    color: var(--abd-salmon);
    background: transparent;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.abd-read-more > svg,
.abd-read-more > i > svg {
    width: 14px;
    height: 14px;

    flex: 0 0 14px;
    stroke-width: 1.8;

    transition: transform var(--abd-transition);
}

.abd-specialty-card.abd-expanded .abd-read-more > svg,
.abd-specialty-card.abd-expanded .abd-read-more > i > svg {
    transform: rotate(180deg);
}


/* =========================================================
ATENDIMENTO HUMANIZADO
========================================================= */

.abd-humanized {
    padding-bottom: 105px;
    background: var(--abd-cream);
}

.abd-humanized-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.abd-humanized-card {
    min-height: 185px;
    padding: 27px 18px 23px;

    text-align: center;

    border: 1px solid rgba(46, 69, 59, 0.06);
    border-radius: 13px;

    background: var(--abd-white);
    box-shadow: var(--abd-shadow-soft);

    transition:
        transform var(--abd-transition),
        box-shadow var(--abd-transition);
}

.abd-humanized-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--abd-shadow);
}

.abd-humanized-card h3 {
    margin: 0 0 8px;

    color: var(--abd-green-dark);
    font-size: 15px;
    font-weight: 600;
}

.abd-humanized-card p {
    margin: 0;

    color: var(--abd-text-soft);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
IMAGEM DO ATENDIMENTO HUMANIZADO
========================================================= */

.abd-feature-image-wrap {
    position: relative;

    width: min(100%, 570px);
    margin: 82px auto 0;
}

.abd-feature-image {
    width: 100%;
    aspect-ratio: 0.78;

    object-fit: cover;
    object-position: center top;

    border-radius: 12px;

    box-shadow:
        0 25px 55px rgba(35, 57, 47, 0.18);
}

.abd-floating-badge {
    position: absolute;

    padding: 12px 15px;

    display: flex;
    align-items: center;
    gap: 10px;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 12px 32px rgba(34, 55, 46, 0.16);

    backdrop-filter: blur(10px);
}

.abd-badge-left {
    bottom: 70px;
    left: -55px;
}

.abd-badge-right {
    right: -70px;
    bottom: 140px;
}

.abd-mini-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;

    color: var(--abd-salmon);

    border-radius: 50%;
    background: var(--abd-cream);
}

.abd-mini-icon > svg,
.abd-mini-icon > i > svg {
    width: 17px !important;
    height: 17px !important;

    flex: 0 0 17px;

    stroke: currentColor;
    stroke-width: 1.7;
}

.abd-floating-badge strong,
.abd-floating-badge span {
    display: block;
}

.abd-floating-badge strong {
    color: var(--abd-green-dark);
    font-size: 11px;
}

.abd-floating-badge span {
    margin-top: 2px;

    color: var(--abd-text-soft);
    font-size: 9px;
}


/* =========================================================
LOCAIS DE ATENDIMENTO
========================================================= */

.abd-locations {
    position: relative;

    padding: 88px 0 92px;

    background: #28543a;
}

.abd-locations::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.2;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(255, 255, 255, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 25%
        );
}

.abd-locations .abd-container {
    position: relative;
    z-index: 2;
}

.abd-heading-light h2,
.abd-heading-light p {
    color: var(--abd-white);
}

.abd-heading-light p {
    opacity: 0.78;
}

.abd-locations-grid {
    width: min(880px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.abd-location-card {
    min-height: 190px;
    padding: 31px 25px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.09);

    transition:
        transform var(--abd-transition),
        background var(--abd-transition);
}

.abd-location-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.13);
}

.abd-location-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--abd-white);

    border-radius: 50%;
    background: var(--abd-salmon-soft);
}

.abd-location-icon > svg,
.abd-location-icon > i > svg {
    width: 22px !important;
    height: 22px !important;

    flex: 0 0 22px;

    stroke: currentColor;
    stroke-width: 1.6;
}

.abd-location-card h3 {
    margin: 0 0 12px;

    color: var(--abd-white);
    font-size: 18px;
    font-weight: 600;
}

.abd-location-card p,
.abd-location-card span {
    display: block;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
CTA
========================================================= */

.abd-cta-section {
    padding: 75px 0 78px;

    background: var(--abd-cream);
}

.abd-cta-content {
    text-align: center;
}

.abd-cta-content h2 {
    margin: 0 0 10px;

    color: var(--abd-green);
    font-size: clamp(31px, 3.2vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.abd-cta-content p {
    margin: 0 auto 25px;

    color: var(--abd-text-soft);
    font-size: 15px;
}

.abd-btn-white {
    color: var(--abd-green-dark) !important;

    background: var(--abd-white);
    box-shadow:
        0 13px 28px rgba(38, 62, 52, 0.11);
}

.abd-btn-white:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(38, 62, 52, 0.16);
}


/* =========================================================
FOOTER
========================================================= */

.abd-footer {
    padding: 56px 0 20px;

    color: var(--abd-white);
    background: #153c34;
}

.abd-footer-grid {
    padding-bottom: 42px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.abd-footer-column:first-child {
    max-width: 340px;
}


/* =========================================================
LOGO DO FOOTER
========================================================= */

.abd-footer-logo {
    width: 225px !important;
    height: auto !important;

    max-width: 225px !important;
    max-height: 56px !important;

    margin: 0 0 18px !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: left center !important;

    filter: brightness(0) invert(1);
    opacity: 0.95;

    transform: none !important;
}

.abd-footer-column h3 {
    margin: 0 0 10px;

    color: var(--abd-white);
    font-size: 15px;
    font-weight: 600;
}

.abd-footer-column p,
.abd-footer-column > a {
    margin: 0 0 7px;

    color: rgba(255, 255, 255, 0.77);
    font-size: 12px;
    line-height: 1.65;
}

.abd-footer-column > a,
.abd-footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Ícones apenas das informações de contato */

.abd-footer-column > a > svg,
.abd-footer-column > a > i > svg,
.abd-footer-location > svg,
.abd-footer-location > i > svg {
    width: 14px !important;
    height: 14px !important;

    flex: 0 0 14px;

    stroke: currentColor;
    stroke-width: 1.7;
}


/* =========================================================
REDES SOCIAIS DO FOOTER
========================================================= */

.abd-socials {
    margin-top: 17px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.abd-socials a {
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;

    color: var(--abd-white) !important;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    transition:
        color var(--abd-transition),
        background var(--abd-transition),
        border-color var(--abd-transition),
        transform var(--abd-transition);
}


/* Regra isolada dos ícones sociais */

.abd-socials a > svg,
.abd-socials a > i > svg {
    width: 17px !important;
    height: 17px !important;

    min-width: 17px;
    min-height: 17px;
    max-width: 17px;
    max-height: 17px;

    flex: 0 0 17px;

    color: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;

    fill: none;
}

.abd-socials a:hover {
    color: var(--abd-green-dark) !important;
    border-color: var(--abd-white);
    background: var(--abd-white);

    transform: translateY(-3px);
}

.abd-socials a:first-child:hover {
    color: var(--abd-salmon) !important;
}

.abd-socials a:last-child:hover {
    color: #278356 !important;
}


/* Permite preenchimento interno do ícone customizado do WhatsApp */

.abd-socials a:last-child svg path[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}


/* =========================================================
RODAPÉ INFERIOR
========================================================= */

.abd-footer-bottom {
    padding-top: 18px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.abd-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}


/* =========================================================
BOTÃO FLUTUANTE
========================================================= */

.abd-floating-whatsapp {
    position: fixed;
    z-index: 9998;
    right: 22px;
    bottom: 22px;

    width: 55px;
    height: 55px;

    display: none;
    align-items: center;
    justify-content: center;

    color: var(--abd-white) !important;

    border: 3px solid var(--abd-white);
    border-radius: 50%;

    background: var(--abd-green);

    box-shadow:
        0 13px 30px rgba(26, 62, 48, 0.3);
}

.abd-floating-whatsapp > svg,
.abd-floating-whatsapp > i > svg {
    width: 25px !important;
    height: 25px !important;

    flex: 0 0 25px;

    stroke: currentColor;
    stroke-width: 1.8;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

    .abd-header-container {
        width: calc(100% - 38px);
        gap: 25px;
    }

    .abd-logo-link {
        width: 220px;
        max-width: 220px;
        flex-basis: 220px;
    }

    .abd-logo {
        max-width: 220px !important;
        max-height: 52px !important;
    }

    .abd-desktop-nav {
        gap: 22px;
    }

    .abd-hero-grid {
        gap: 55px;
    }

    .abd-hero-content h1 {
        font-size: clamp(47px, 5.4vw, 61px);
    }

    .abd-humanized-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .abd-badge-left {
        left: -25px;
    }

    .abd-badge-right {
        right: -25px;
    }
}


/* =========================================================
MENU MOBILE / TABLET MENOR
========================================================= */

@media (max-width: 860px) {

    html {
        scroll-padding-top: 68px;
    }

    .abd-container {
        width: min(100% - 34px, 680px);
    }

    .abd-section {
        padding: 74px 0;
    }

    .abd-header,
    .abd-header.abd-scrolled {
        height: 68px;
    }

    .abd-header-container {
        width: calc(100% - 28px);
    }

    .abd-logo-link {
        width: 200px;
        max-width: 200px;
        flex-basis: 200px;
    }

    .abd-logo {
        width: 100% !important;
        max-width: 200px !important;
        max-height: 46px !important;
    }

    .abd-desktop-nav {
        display: none;
    }

    .abd-menu-toggle {
        display: flex;
    }

    .abd-mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        display: block;

        max-height: 0;

        overflow: hidden;
        opacity: 0;
        visibility: hidden;

        background: rgba(255, 255, 255, 0.99);
        box-shadow:
            0 17px 30px rgba(30, 58, 47, 0.1);

        transition:
            max-height 0.45s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .abd-mobile-menu.abd-open {
        max-height: 500px;

        opacity: 1;
        visibility: visible;
    }

    .abd-mobile-menu nav {
        padding: 13px 21px 22px;
    }

    .abd-mobile-menu a {
        padding: 14px 4px;

        display: block;

        color: var(--abd-green-dark);
        border-bottom:
            1px solid rgba(33, 62, 50, 0.08);

        font-size: 14px;
    }

    .abd-hero {
        min-height: auto;
        padding: 101px 0 60px;
    }

    .abd-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .abd-hero-content {
        max-width: 100%;
    }

    .abd-hero-content h1 {
        max-width: 520px;

        font-size: clamp(46px, 10vw, 59px);
        line-height: 0.98;
        letter-spacing: -2.7px;
    }

    .abd-hero-image-wrap {
        width: min(100%, 455px);
        margin-right: auto;
        margin-left: auto;
    }

    .abd-hero-image {
        height: auto;
        aspect-ratio: 0.88;

        object-position: center top;
    }

    .abd-about-grid {
        grid-template-columns: 1fr;
        gap: 47px;
    }

    .abd-about-image-frame {
        width: min(100%, 380px);
    }

    .abd-specialties-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .abd-nephrology-cards {
        grid-template-columns: 1fr;
    }

    .abd-locations-grid {
        grid-template-columns: 1fr;
    }

    .abd-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .abd-footer-logo {
        width: 210px !important;
        max-width: 210px !important;
        max-height: 52px !important;
    }

    .abd-floating-whatsapp {
        display: flex;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 600px) {

    .abd-container {
        width: calc(100% - 28px);
    }

    .abd-section {
        padding: 61px 0;
    }

    .abd-section-heading {
        margin-bottom: 38px;
    }

    .abd-section-heading h2 {
        font-size: 29px;
        line-height: 1.18;
        letter-spacing: -0.7px;
    }

    .abd-section-heading p {
        max-width: 310px;
        margin: 0 auto;

        font-size: 13px;
    }

    .abd-logo-link {
        width: 178px;
        max-width: 178px;
        flex-basis: 178px;
    }

    .abd-logo {
        width: 100% !important;
        max-width: 178px !important;
        max-height: 42px !important;
    }

    .abd-hero {
        padding: 95px 0 54px;
    }

    .abd-eyebrow {
        margin-bottom: 15px;

        font-size: 9px;
        letter-spacing: 3px;
    }

    .abd-hero-content h1 {
        max-width: 100%;

        font-size: clamp(42px, 13vw, 53px);
        line-height: 0.99;
        letter-spacing: -2.3px;
    }

    .abd-hero-content h2 {
        margin: 11px 0 19px;

        font-size: 18px;
    }

    .abd-hero-content p {
        margin-bottom: 25px;

        font-size: 14px;
        line-height: 1.68;
    }

    .abd-btn {
        min-height: 47px;
        padding: 0 20px;

        font-size: 12px;
    }

    .abd-hero-image-wrap {
        width: 88%;
    }

    .abd-hero-image {
        aspect-ratio: 0.84;
    }

    .abd-hero-shape-one {
        top: -20px;
        right: -22px;

        width: 100px;
        height: 100px;
    }

    .abd-hero-shape-two {
        bottom: -20px;
        left: -22px;

        width: 75px;
        height: 75px;
    }

    .abd-nephrology-content h3 {
        font-size: 21px;
    }

    .abd-nephrology-content > p {
        font-size: 13px;
        line-height: 1.75;
    }

    .abd-nephrology-card {
        min-height: auto;
    }

    .abd-about-grid {
        gap: 38px;
    }

    .abd-about-image-frame {
        width: 76%;
    }

    .abd-about-content h2 {
        font-size: 29px;
    }

    .abd-about-specialty {
        font-size: 14px;
    }

    .abd-about-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .abd-specialties-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .abd-specialty-card {
        min-height: auto;
        padding: 27px 22px 23px;
    }

    .abd-humanized-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .abd-humanized-card {
        min-height: auto;
        padding: 23px 18px;
    }

    .abd-feature-image-wrap {
        width: 83%;
        margin-top: 55px;
    }

    .abd-feature-image {
        aspect-ratio: 0.72;
    }

    .abd-floating-badge {
        padding: 9px 10px;
        gap: 7px;
    }

    .abd-badge-left {
        bottom: 43px;
        left: -25px;
    }

    .abd-badge-right {
        right: -27px;
        bottom: 95px;
    }

    .abd-mini-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .abd-mini-icon > svg,
    .abd-mini-icon > i > svg {
        width: 13px !important;
        height: 13px !important;

        flex-basis: 13px;
    }

    .abd-floating-badge strong {
        font-size: 8px;
    }

    .abd-floating-badge span {
        font-size: 7px;
    }

    .abd-locations {
        padding: 64px 0;
    }

    .abd-location-card {
        min-height: auto;
        padding: 27px 20px;
    }

    .abd-cta-section {
        padding: 57px 0;
    }

    .abd-cta-content h2 {
        font-size: 29px;
    }

    .abd-cta-content p {
        max-width: 300px;

        font-size: 13px;
    }

    .abd-footer {
        padding-top: 47px;
    }

    .abd-footer-logo {
        width: 188px !important;
        max-width: 188px !important;
        max-height: 46px !important;
    }

    .abd-socials a {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .abd-socials a > svg,
    .abd-socials a > i > svg {
        width: 16px !important;
        height: 16px !important;

        min-width: 16px;
        min-height: 16px;
        max-width: 16px;
        max-height: 16px;

        flex-basis: 16px;
    }
}


/* =========================================================
TELAS MUITO PEQUENAS
========================================================= */

@media (max-width: 380px) {

    .abd-logo-link {
        width: 158px;
        max-width: 158px;
        flex-basis: 158px;
    }

    .abd-logo {
        max-width: 158px !important;
        max-height: 38px !important;
    }

    .abd-hero-content h1 {
        font-size: 41px;
    }

    .abd-feature-image-wrap {
        width: 88%;
    }

    .abd-badge-left {
        left: -18px;
    }

    .abd-badge-right {
        right: -18px;
    }

    .abd-footer-logo {
        width: 172px !important;
        max-width: 172px !important;
        max-height: 42px !important;
    }
}


/* =========================================================
EDITOR DO ELEMENTOR
========================================================= */

body.elementor-editor-active .abd-header {
    position: relative;
}

body.elementor-editor-active .abd-hero {
    padding-top: 60px;
}

body.elementor-editor-active .abd-hidden-content {
    transition: none;
}


/* =========================================================
REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    #abd-site *,
    #abd-site *::before,
    #abd-site *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
AJUSTE FINAL — DIMINUIR FOTO DA HERO
========================================================= */

.abd-hero {
    min-height: 620px;
    padding-top: 110px;
    padding-bottom: 60px;
}

.abd-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 70px;
}

.abd-hero-image-wrap {
    width: 100%;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
}

.abd-hero-image {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
}

/* Mantém o conteúdo alinhado verticalmente */

.abd-hero-content {
    align-self: center;
}

/* Ajuste dos elementos decorativos ao novo tamanho */

.abd-hero-shape-one {
    top: -28px;
    right: -34px;
    width: 135px;
    height: 135px;
}

.abd-hero-shape-two {
    bottom: -25px;
    left: -34px;
    width: 95px;
    height: 95px;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1024px) {

    .abd-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
        gap: 48px;
    }

    .abd-hero-image-wrap {
        max-width: 395px;
    }

    .abd-hero-image {
        height: 435px;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 860px) {

    .abd-hero {
        min-height: auto;
        padding-top: 95px;
        padding-bottom: 55px;
    }

    .abd-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .abd-hero-image-wrap {
        width: 82%;
        max-width: 390px;
        margin: 0 auto;
    }

    .abd-hero-image {
        height: auto;
        aspect-ratio: 0.88;
        object-fit: cover;
        object-position: center top;
    }
}


/* =========================================================
MOBILE MENOR
========================================================= */

@media (max-width: 600px) {

    .abd-hero-image-wrap {
        width: 84%;
        max-width: 340px;
    }

    .abd-hero-image {
        aspect-ratio: 0.84;
    }

    .abd-hero-shape-one {
        top: -18px;
        right: -20px;
        width: 90px;
        height: 90px;
    }

    .abd-hero-shape-two {
        bottom: -18px;
        left: -20px;
        width: 65px;
        height: 65px;
    }
}
/* =========================================================
AVALIAÇÕES
========================================================= */

.abd-reviews {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(204, 130, 111, 0.09),
            transparent 28%
        ),
        var(--abd-white);
}

.abd-reviews .abd-section-heading {
    margin-bottom: 44px;
}

.abd-reviews .abd-eyebrow {
    margin-bottom: 14px;
    color: var(--abd-salmon);
}

.abd-reviews-slider {
    position: relative;
    width: min(100%, 850px);
    margin: 0 auto;
    padding: 0 68px 34px;
}

.abd-reviews-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
}

.abd-reviews-track {
    display: flex;
    align-items: center;

    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.abd-review-slide {
    width: 100%;
    min-width: 100%;

    display: flex;
    justify-content: center;
}

.abd-review-image-frame {
    position: relative;

    width: min(100%, 680px);
    padding: 18px;

    overflow: hidden;

    border: 1px solid rgba(49, 91, 62, 0.1);
    border-radius: 18px;

    background: var(--abd-white);
    box-shadow:
        0 22px 55px rgba(37, 58, 49, 0.11);
}

.abd-review-image-frame::before {
    content: "";

    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;

    width: 42px;
    height: 42px;

    border-top: 2px solid var(--abd-salmon);
    border-left: 2px solid var(--abd-salmon);
    border-radius: 10px 0 0;
}

.abd-review-image-frame::after {
    content: "";

    position: absolute;
    z-index: 2;
    right: 13px;
    bottom: 13px;

    width: 42px;
    height: 42px;

    border-right: 2px solid var(--abd-salmon);
    border-bottom: 2px solid var(--abd-salmon);
    border-radius: 0 0 10px;
}

.abd-review-image {
    width: 100%;
    height: auto;
    max-height: 620px;

    object-fit: contain;
    object-position: center;

    border-radius: 11px;
    background: var(--abd-cream-light);
}

/* SETAS */

.abd-review-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;

    width: 46px;
    height: 46px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--abd-green-dark);

    border: 1px solid rgba(49, 91, 62, 0.12);
    border-radius: 50%;

    background: var(--abd-white);
    box-shadow:
        0 12px 28px rgba(37, 58, 49, 0.12);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        color var(--abd-transition),
        background var(--abd-transition),
        border-color var(--abd-transition),
        transform var(--abd-transition);
}

.abd-review-arrow:hover {
    color: var(--abd-white);
    border-color: var(--abd-salmon);
    background: var(--abd-salmon);

    transform: translateY(-50%) scale(1.06);
}

.abd-review-arrow svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.8;
}

.abd-review-prev {
    left: 0;
}

.abd-review-next {
    right: 0;
}

/* INDICADORES */

.abd-review-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    min-height: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.abd-review-dot {
    width: 7px;
    height: 7px;
    padding: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(49, 91, 62, 0.22);

    cursor: pointer;

    transition:
        width var(--abd-transition),
        background var(--abd-transition);
}

.abd-review-dot.abd-active {
    width: 25px;
    background: var(--abd-salmon);
}

/* Oculta navegação enquanto houver somente uma avaliação */

.abd-reviews-slider.abd-single-review {
    padding-right: 0;
    padding-left: 0;
}

.abd-reviews-slider.abd-single-review .abd-review-arrow,
.abd-reviews-slider.abd-single-review .abd-review-dots {
    display: none;
}


/* =========================================================
AVALIAÇÕES — TABLET
========================================================= */

@media (max-width: 860px) {

    .abd-reviews-slider {
        width: min(100%, 680px);
        padding-right: 52px;
        padding-left: 52px;
    }

    .abd-review-image-frame {
        padding: 14px;
    }

    .abd-review-arrow {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
AVALIAÇÕES — MOBILE
========================================================= */

@media (max-width: 600px) {

    .abd-reviews .abd-section-heading {
        margin-bottom: 32px;
    }

    .abd-reviews-slider {
        width: 100%;
        padding: 0 0 47px;
    }

    .abd-review-image-frame {
        width: 100%;
        padding: 10px;

        border-radius: 14px;
    }

    .abd-review-image {
        max-height: none;
        border-radius: 9px;
    }

    .abd-review-arrow {
        top: auto;
        bottom: 0;

        width: 38px;
        height: 38px;

        transform: none;
    }

    .abd-review-arrow:hover {
        transform: scale(1.05);
    }

    .abd-review-prev {
        left: calc(50% - 72px);
    }

    .abd-review-next {
        right: calc(50% - 72px);
    }

    .abd-review-dots {
        bottom: 14px;
        pointer-events: none;
    }

    .abd-reviews-slider.abd-single-review {
        padding-bottom: 0;
    }

    .abd-review-image-frame::before,
    .abd-review-image-frame::after {
        width: 28px;
        height: 28px;
    }
}/* End custom CSS */