/* ==========================================================
   DR. MAGNO CRUZ
   Identidade:
   #F6F2E9
   #AE7B50
   #4C6476
   #26404F
   ========================================================== */

:root {
  --cream: #F6F2E9;
  --cream-light: #FBF8F2;
  --copper: #AE7B50;
  --gold: #C98A52;
  --slate: #4C6476;
  --navy: #26404F;
  --navy-dark: #123542;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Raleway", Arial, sans-serif;

  --container: 1370px;
  --line: rgba(38, 64, 79, 0.14);
}


/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}


/* GLOBAL */

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 16px;

  color: var(--copper);

  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.section-label--center {
  justify-content: center;
}

.eyebrow--light {
  color: #F2DFCD;
}

.button {
  display: inline-flex;
  min-height: 46px;

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

  gap: 15px;

  padding: 0 25px;

  border: 1px solid transparent;
  border-radius: 4px;

  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.text-link {
  color: var(--copper);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 10px;
}


/* ==========================================================
   NAVBAR AJUSTADO
   ========================================================== */

.header {
  position: sticky;
  z-index: 1000;
  top: 0;

  width: 100%;

  border-bottom: 1px solid rgba(38, 64, 79, 0.07);

  background: rgba(246, 242, 233, 0.98);

  backdrop-filter: blur(14px);
}


/* CONTAINER */

.navbar {
  display: grid;

  grid-template-columns:
    430px
    1fr
    auto;

  align-items: center;

  gap: 30px;

  height: 110px;
  min-height: 110px;
}


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

/* ÁREA RESERVADA PARA O LOGO */

.navbar__logo {
  position: relative;

  
  height: 80px;

  display: block;

  /* ESSENCIAL */
  overflow: hidden;

  cursor: pointer;
}


.navbar__logo img {
  position: absolute;

  top: 50%;
  left: 0;

  width: 80px !important;
  max-width: none !important;
  height: auto;

  transform:
    translateY(-40%)
    translateX(-100%)
    scale(5);

  transform-origin: left center;
}


/* ==========================================================
   LINKS
   ========================================================== */

.navbar__links {
  display: flex;

  height: 100%;

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

  gap: clamp(24px, 2.3vw, 42px);
}


.navbar__links a {
  position: relative;

  display: flex;

  height: 100%;

  align-items: center;

  padding: 0;

  color: var(--navy);

  font-size: 0.69rem;
  font-weight: 600;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}


/* LINHA DO ITEM ATIVO */

.navbar__links a::after {
  position: absolute;

  bottom: 22px;
  left: 50%;

  width: 0;
  height: 1px;

  background: var(--copper);

  content: "";

  transform: translateX(-50%);

  transition: width 180ms ease;
}


.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 38px;
}


/* ==========================================================
   BOTÃO
   ========================================================== */

.button--navbar {
  min-width: 210px;
  min-height: 52px;

  padding: 0 28px;

  color: #fff;

  background: var(--copper);
}


.button--navbar:hover {
  background: #956744;
}

.button--navbar:hover {
  background: #956744;
}

.navbar__toggle,
.navbar__menu-button {
  display: none;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
  display: grid;

  min-height: 560px;

  grid-template-columns: 58% 42%;

  background: #234453;
}


/* ==========================================================
   CONTEÚDO ESQUERDO
   ========================================================== */

.hero__content {
  position: relative;

  display: flex;
  overflow: hidden;

  align-items: center;

  background: #234453;
}


.hero__inner {
  position: relative;
  z-index: 3;

  width: min(calc(100% - 90px), 760px);

  margin-left:
    max(
      56px,
      calc((100vw - var(--container)) / 2)
    );

  padding: 60px 0;
}


.hero h1 {
  margin-bottom: 23px;

  color: var(--cream);

  font-size: clamp(3.65rem, 4.8vw, 5.35rem);

  line-height: 0.92;
  letter-spacing: -0.035em;
}


.hero h1 strong {
  display: block;

  color: var(--gold);

  font-weight: 400;
}


.hero h1 span {
  display: block;
}


.hero__inner > p {
  margin-bottom: 25px;

  color: rgba(246, 242, 233, 0.88);

  font-size: 0.88rem;
  line-height: 1.55;
}


/* ==========================================================
   MARCA D'ÁGUA
   ========================================================== */

.hero__watermark {
  position: absolute;
  z-index: 1;

  top: 50%;
  right: -2%;

  width: min(46vw, 520px);

  opacity: 0.10;

  transform:
    translateY(-50%)
    scale(1.05);

  pointer-events: none;
  user-select: none;
}


/* ==========================================================
   ÁREA DA FOTO
   ========================================================== */

.hero__visual {
  position: relative;

  width: 100%;
  height: 100%;

  min-width: 0;

  overflow: hidden;

  padding: 0;

  background: #234453;
}





/* ==========================================================
   MOLDURA
   ========================================================== */

.hero__frame {
  position: absolute;
  z-index: 2;

  inset: 0;

  display: block;

  width: 100%;
  max-width: none;

  height: 100%;

  overflow: hidden;

  border: 0;

  background: transparent;

  box-shadow: none;

  cursor: pointer;
}

/* FOTO CLICÁVEL */

.hero__frame {
  cursor: pointer;
}


/* pequena indicação no canto da foto */

.hero__frame-link {
  position: absolute;
  z-index: 5;

  right: 22px;
  bottom: 38px;

  display: flex;
  align-items: center;

  gap: 10px;

  color: #F6F2E9;

  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;

  letter-spacing: 0.10em;
  text-transform: uppercase;

  opacity: 0;

  transform: translateY(7px);

  transition:
    opacity 300ms ease,
    transform 300ms ease;
}


/* seta */

.hero__frame-link span {
  color: var(--copper);

  font-size: 1rem;

  transition: transform 300ms ease;
}


/* quando passa o mouse */

.hero__frame:hover .hero__frame-link {
  opacity: 1;

  transform: translateY(0);
}


.hero__frame:hover .hero__frame-link span {
  transform: translateX(4px);
}


/* FOTO */

.hero__frame img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 57% 41%;

  transform: none;

  filter:
    saturate(0.82)
    contrast(0.96)
    brightness(0.95);

  transition: transform 700ms ease;
}


/* hover muito sutil */

.hero__frame:hover img {
  transform: scale(1.085);

  filter:
    saturate(0.78)
    contrast(0.96)
    brightness(0.88);
}


/* ==========================================================
   ACABAMENTO INTERNO DA FOTO
   ========================================================== */

.hero__frame::after {
  position: absolute;
  z-index: 2;

  inset: 0;

  content: "";

  pointer-events: none;

  background:

    linear-gradient(
      180deg,
      rgba(35, 68, 83, 0.03),
      transparent 45%,
      rgba(20, 42, 52, 0.16)
    );
}

/* FADE ENTRE O FUNDO AZUL E A FOTO */
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 3;

  top: 0;
  bottom: 0;
  left: 0;

  width: 220px;

  background: linear-gradient(
    to right,
    #234453 0%,
    rgba(35, 68, 83, 0.95) 12%,
    rgba(35, 68, 83, 0.75) 30%,
    rgba(35, 68, 83, 0.40) 55%,
    rgba(35, 68, 83, 0.12) 78%,
    rgba(35, 68, 83, 0) 100%
  );

  pointer-events: none;
}


/* detalhe dourado */

.hero__frame-detail {
  position: absolute;
  z-index: 4;

  right: 22px;
  bottom: 22px;

  width: 46px;
  height: 1px;

  background: var(--copper);
}


/* ==========================================================
   RESPONSIVO
   ========================================================== */

@media (max-width: 1000px) {

  .hero {
    grid-template-columns: 55% 45%;
  }

  .hero__visual {
    padding-right: 30px;
  }

  .hero__frame {
    height: 450px;
  }

}


@media (max-width: 880px) {

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


  .hero__content {
    min-height: 540px;
  }


  .hero__inner {
    margin-inline: auto;
  }


  .hero__visual {
    min-height: 530px;

    padding: 42px;
  }


  .hero__frame {
    max-width: 620px;

    height: 450px;
  }


  .hero__visual::before {
    top: 65px;
    right: 45px;

    width: calc(100% - 90px);
    height: 420px;
  }

}


@media (max-width: 600px) {

  .hero__visual {
    min-height: 440px;

    padding: 28px 24px;
  }


  .hero__frame {
    height: 380px;
  }


  .hero__visual::before {
    top: 45px;
    right: 20px;

    width: calc(100% - 40px);
    height: 350px;
  }

}


/* ABOUT */

.about {
  background: var(--cream);
}

.about__grid {
  display: grid;

  min-height: 180px;

  grid-template-columns:
    1.45fr
    1.40fr
    repeat(3, 0.78fr);
}

.about__heading,
.about__description,
.about__value {
  display: flex;

  justify-content: center;
  flex-direction: column;

  padding: 30px 34px;
}

.about__heading {
  padding-left: 0;
}

.about__heading h2 {
  font-size: clamp(2.8rem, 3.8vw, 4rem);
}

.about__description {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about__description p {
  margin-bottom: 19px;

  color: #405762;

  font-size: 0.76rem;
  line-height: 1.55;
}

.about__value {
  align-items: center;

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

  text-align: center;
}

.about__value:last-child {
  border-right: 0;
}

.about__value p {
  margin: 8px 0 0;

  font-size: 0.76rem;
  line-height: 1.45;
}


/* ICONES SOBRE */

.about__icon {
  position: relative;

  width: 44px;
  height: 44px;

  color: var(--copper);
}

.about__icon--doctor::before {
  position: absolute;

  top: 1px;
  left: 13px;

  width: 16px;
  height: 18px;

  border: 2px solid var(--copper);
  border-radius: 50%;

  content: "";
}

.about__icon--doctor::after {
  position: absolute;

  right: 3px;
  bottom: 2px;
  left: 3px;

  height: 20px;

  border: 2px solid var(--copper);
  border-bottom: 0;

  border-radius: 25px 25px 0 0;

  content: "";
}

.about__icon--shield::before {
  position: absolute;

  inset: 2px 8px;

  border: 2px solid var(--copper);

  border-radius:
    45% 45% 55% 55%
    /
    20% 20% 80% 80%;

  content: "";
}

.about__icon--shield::after {
  position: absolute;

  top: 18px;
  left: 15px;

  width: 13px;
  height: 6px;

  border-bottom: 2px solid var(--copper);
  border-left: 2px solid var(--copper);

  content: "";

  transform: rotate(-45deg);
}

.about__icon--heart::before {
  position: absolute;

  top: 7px;
  left: 7px;

  width: 29px;
  height: 27px;

  border: 2px solid var(--copper);

  border-radius: 50% 50% 48% 48%;

  content: "";

  transform:
    rotate(45deg)
    scale(0.72);
}


/* ESPECIALIDADES */

.specialties {
  position: relative;

  overflow: hidden;

  padding: 36px 0 48px;

  border-top:
    1px solid
    rgba(38, 64, 79, 0.05);

  background: var(--cream-light);
}

.specialties::before {
  position: absolute;

  bottom: -260px;
  left: -160px;

  width: 480px;
  height: 480px;

  border:
    1px solid
    rgba(174, 123, 80, 0.08);

  border-radius: 50%;

  content: "";
}

.specialties__heading {
  text-align: center;
}

.specialties__heading .section-label {
  margin-bottom: 8px;
}

.specialties__heading h2 {
  font-size: clamp(2.4rem, 3vw, 3.3rem);
}

.specialties__grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  margin-top: 25px;
}

.specialty {
  display: flex;

  min-height: 100px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 8px 15px;

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

  text-align: center;
}

.specialty:last-child {
  border-right: 0;
}

.specialty__icon {
  height: 42px;

  color: var(--copper);

  font-family: var(--serif);
  font-size: 2.3rem;

  line-height: 1;
}

.specialty__icon--molecule {
  font-size: 2.8rem;
}

.specialty__icon--runner {
  transform: rotate(-20deg);
}

.specialty h3 {
  margin: 8px 0 0;

  font-family: var(--sans);

  font-size: 0.76rem;
  font-weight: 500;

  line-height: 1.35;
}

.specialties__action {
  margin-top: 18px;

  text-align: center;
}

.button--outline {
  color: var(--copper);

  border-color: #C49A72;
}


/* MÉTODO */

.method {
  padding: 100px 0;

  background: var(--cream);
}

.method__grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 110px;
}

.method__grid h2 {
  max-width: 540px;
}

.method__steps {
  border-top: 1px solid var(--line);
}

.method__steps article {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 20px;

  padding: 27px 0;

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

.method__number {
  color: var(--copper);

  font-family: var(--serif);
  font-size: 1.3rem;
}

.method__steps h3 {
  margin-bottom: 5px;

  font-size: 1.7rem;
}

.method__steps p {
  margin-bottom: 0;

  color: var(--slate);

  font-size: 0.88rem;
}

.method__intro {
  max-width: 420px;

  margin: 28px 0 26px;

  color: var(--slate);

  font-size: 0.86rem;
  line-height: 1.8;
}


/* BLOG */

.blog {
  padding: 95px 0;

  background: #EEE8DC;
}

.blog__heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 40px;
}

.blog__heading h2 {
  max-width: 670px;
}

.blog__grid {
  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 20px;
}

.post {
  border: 1px solid var(--line);

  background:
    rgba(246, 242, 233, 0.7);
}

.post--featured {
  display: grid;

  grid-row: span 2;

  grid-template-rows: 280px auto;
}

.post__image {
  background:
    linear-gradient(
      135deg,
      rgba(38, 64, 79, 0.08),
      rgba(38, 64, 79, 0.30)
    ),
    linear-gradient(
      135deg,
      #C7C4BA,
      #607782
    );
}

.post__content {
  padding: 30px;
}

.post__content small {
  color: var(--copper);

  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.post__content h3 {
  margin: 10px 0;

  font-size: 1.9rem;
  line-height: 1.05;
}

.post__content p {
  color: var(--slate);

  font-size: 0.85rem;
}

.post__content a {
  color: var(--copper);

  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* CONTATO */

.contact {
  padding: 0 0 80px;

  background: #EEE8DC;
}

.contact__box {
  display: flex;

  min-height: 280px;

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

  gap: 70px;

  padding: 55px 60px;

  color: var(--cream);

  background: var(--slate);
}

.contact__box h2 {
  max-width: 650px;

  color: var(--cream);
}

.contact__box p {
  max-width: 630px;

  margin: 20px 0 0;

  color:
    rgba(246, 242, 233, 0.75);
}

.contact__actions {
  display: flex;

  min-width: 235px;

  flex-direction: column;

  gap: 15px;

  text-align: center;
}

.contact__actions > a:last-child {
  font-size: 0.68rem;
}

.button--light {
  color: var(--navy);

  background: var(--cream);
}

/* ==========================================================
   HOME — CONTATO
   ========================================================== */

.home-contact {
  padding: 120px 0;
  background: var(--cream);
}


/* HEADER */

.home-contact__heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: end;

  margin-bottom: 70px;
}

.home-contact__heading h2 {
  max-width: 650px;

  margin-top: 20px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: clamp(3.4rem, 4.5vw, 5rem);
  font-weight: 400;

  line-height: 0.95;
  letter-spacing: -0.035em;
}

.home-contact__intro {
  max-width: 480px;

  padding-bottom: 8px;
}

.home-contact__intro p {
  color: var(--slate);

  font-size: 0.88rem;
  line-height: 1.8;
}


/* GRID */

.home-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

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


/* CARD */

.contact-card {
  min-height: 320px;

  display: flex;
  flex-direction: column;

  padding: 36px 40px;

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

  transition:
    background 250ms ease,
    transform 250ms ease;
}

.contact-card:hover {
  background: rgba(35, 68, 83, 0.035);
}


/* TOP */

.contact-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-card__top > span {
  color: var(--copper);

  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.contact-card__top small {
  color: var(--slate);

  font-size: 0.6rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* CONTEÚDO */

.contact-card__content {
  margin: auto 0;
}

.contact-card h3 {
  margin-bottom: 16px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 400;

  line-height: 1;
}

.contact-card p {
  max-width: 400px;

  color: var(--slate);

  font-size: 0.8rem;
  line-height: 1.75;
}


/* LINK */

.contact-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 18px;

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

  color: var(--navy);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.05em;

  transition: color 200ms ease;
}

.contact-card > a span {
  color: var(--copper);

  font-size: 1rem;

  transition: transform 200ms ease;
}

.contact-card > a:hover {
  color: var(--copper);
}

.contact-card > a:hover span {
  transform: translateX(6px);
}


/* CTA INFERIOR */

.home-contact__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  margin-top: 55px;
  padding: 38px 42px;

  background: var(--navy);
}

.home-contact__cta small {
  display: block;

  margin-bottom: 8px;

  color: var(--copper);

  font-size: 0.6rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-contact__cta h3 {
  margin: 0;

  color: var(--cream);

  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 400;
}


/* RESPONSIVO */

@media (max-width: 880px) {

  .home-contact {
    padding: 85px 0;
  }

  .home-contact__heading {
    grid-template-columns: 1fr;
    gap: 30px;

    margin-bottom: 50px;
  }

  .home-contact__grid {
    grid-template-columns: 1fr;
  }

  .home-contact__cta {
    flex-direction: column;
    align-items: flex-start;
  }

}

.home-contact__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  padding: 18px 28px;

  background: var(--copper);
  border: 1px solid var(--copper);

  color: var(--cream);
  text-decoration: none;

  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  white-space: nowrap;

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

.home-contact__whatsapp span {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.home-contact__whatsapp:hover {
  background: transparent;
  color: var(--cream);
}

.home-contact__whatsapp:hover span {
  transform: translateX(5px);
}


@media (max-width: 520px) {

  .contact-card {
    min-height: 290px;
    padding: 30px 26px;
  }

  .home-contact__cta {
    padding: 32px 26px;
  }

}


/* FOOTER */

.footer {
  padding: 22px 0;

  color: rgba(246, 242, 233, 0.70);
  background: #203640;
}

.footer__grid {
  display: grid;

  grid-template-columns:
    220px
    1fr
    auto;

  min-height: 70px;

  align-items: center;

  gap: 45px;
}


/* LOGO */

.footer__grid > img {
  width: 115px;
  height: auto;

  opacity: 0.90;
}


/* INFORMAÇÕES */

.footer__grid p {
  margin: 0;

  font-size: 0.65rem;
  line-height: 1.6;
}


/* LINKS */

.footer__links {
  display: flex;

  flex-direction: column;

  gap: 4px;

  font-size: 0.65rem;

  text-align: right;
}


/* RESPONSIVO */

@media (max-width: 1100px) {

  .navbar {
    grid-template-columns:
      250px
      1fr
      auto;

    gap: 20px;
  }

  .navbar__logo {
    width: 240px;
  }

  .navbar__links {
    gap: 18px;
  }

  .about__grid {
    grid-template-columns:
      1.15fr
      1.25fr
      repeat(3, 0.8fr);
  }

  .specialties__grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .specialty:nth-child(3) {
    border-right: 0;
  }

  .specialty:nth-child(-n + 3) {
    border-bottom:
      1px solid
      var(--line);
  }
}


@media (max-width: 880px) {

  .container {
    width:
      min(
        calc(100% - 38px),
        var(--container)
      );
  }

  .navbar {
    min-height: 74px;

    grid-template-columns:
      1fr
      auto;
  }

  .navbar__logo {
    width: 225px;
  }

  .button--navbar {
    display: none;
  }

  .navbar__menu-button {
    position: relative;
    z-index: 1002;

    display: flex;

    width: 28px;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
  }

  .navbar__menu-button span {
    height: 1px;

    background: var(--navy);
  }

  .navbar__links {
    position: fixed;
    z-index: 1001;

    top: 0;
    right: -100%;

    width: min(82vw, 360px);
    height: 100vh;

    flex-direction: column;

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

    gap: 8px;

    padding: 48px;

    background: var(--cream);

    box-shadow:
      -15px 0 50px
      rgba(38, 64, 79, 0.14);

    transition: right 220ms ease;
  }

  .navbar__links a {
    padding: 7px 0;

    font-family: var(--serif);

    font-size: 1.55rem;
    font-weight: 400;

    letter-spacing: 0;
    text-transform: none;
  }

  .navbar__toggle:checked
  ~ .navbar__links {
    right: 0;
  }


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

  .hero__content {
    min-height: 570px;
  }

  .hero__inner {
    margin-inline: auto;
  }

  .hero__watermark {
    right: -14%;

    width: 700px;

    opacity: 0.16;
  }

  .hero__photo {
    min-height: 480px;
  }


  .about__grid {
    grid-template-columns:
      1fr
      1fr;
  }

  .about__heading {
    padding-left: 30px;
  }

  .about__value {
    min-height: 145px;

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

  .about__value:last-child {
    grid-column: span 2;
  }


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

    gap: 50px;
  }


  .blog__grid {
    grid-template-columns: 1fr;
  }

  .post--featured {
    grid-row: auto;
  }


  .contact__box {
    align-items: flex-start;

    flex-direction: column;

    padding: 45px 38px;
  }

  .contact__actions {
    width: 100%;
  }


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

    gap: 25px;
  }

  .footer__links {
    text-align: left;
  }
}


@media (max-width: 600px) {

  .navbar__logo {
    width: 205px;
  }


  .hero__content {
    min-height: 560px;
  }

  .hero__inner {
    width: calc(100% - 34px);
  }

  .hero h1 {
    font-size:
      clamp(
        3.45rem,
        16vw,
        4.8rem
      );
  }

  .hero__watermark {
    right: -42%;

    width: 650px;
  }

  .hero__photo {
    min-height: 400px;
  }


  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__heading,
  .about__description,
  .about__value {
    padding: 30px 24px;

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

  .about__value:last-child {
    grid-column: auto;
  }


  .specialties__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .specialty:nth-child(odd) {
    border-right:
      1px solid
      var(--line);
  }

  .specialty:nth-child(even) {
    border-right: 0;
  }

  .specialty {
    border-bottom:
      1px solid
      var(--line);
  }

  .specialty:nth-last-child(-n + 2) {
    border-bottom: 0;
  }


  .method,
  .blog {
    padding: 72px 0;
  }


  .blog__heading {
    align-items: flex-start;

    flex-direction: column;
  }

  .post--featured {
    grid-template-rows:
      210px
      auto;
  }


  .contact {
    padding-bottom: 0;
  }

  .contact__box {
    width: 100%;
  }
}

/* ==========================================================
   PÁGINA SOBRE — DR. MAGNO CRUZ
   ========================================================== */


/* ==========================================================
   HERO SOBRE
   ========================================================== */

.about-hero {
  position: relative;

  min-height: 540px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #234453;
}


.about-hero__copy {
  position: relative;

  display: flex;
  overflow: hidden;

  align-items: center;

  background: #234453;
}


.about-hero__inner {
  position: relative;
  z-index: 3;

  width: min(calc(100% - 90px), 760px);

  margin-left:
    max(
      56px,
      calc((100vw - var(--container)) / 2)
    );

  padding: 70px 0;
}


.about-hero h1 {
  max-width: 720px;

  margin-bottom: 28px;

  color: var(--cream);

  font-size: clamp(4rem, 5.4vw, 5.8rem);

  line-height: 0.92;
  letter-spacing: -0.04em;
}


.about-hero h1 strong {
  display: block;

  color: var(--gold);

  font-weight: 400;
}


.about-hero__inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(280px, 0.55fr);

  align-items: center;

  gap: clamp(70px, 9vw, 150px);

  width: 100%;

  padding-top: 75px;
  padding-bottom: 75px;
}

/* TÍTULO */

.about-hero__main {
  max-width: 820px;
}


.about-hero__main h1 {
  margin: 20px 0 0;

  color: var(--cream);

  font-family: var(--serif);

  font-size: clamp(4rem, 5.6vw, 6.6rem);

  font-weight: 400;

  line-height: 0.88;

  letter-spacing: -0.045em;
}


.about-hero__main h1 strong {
  display: block;

  color: var(--copper);

  font-weight: 400;
}


/* TEXTO LATERAL */

.about-hero__aside {
  position: relative;

  max-width: 360px;

  padding-top: 35px;

  border-top: 1px solid rgba(240, 137, 67, 0.45);
}


.about-hero__aside p {
  margin: 0 0 24px;

  color: var(--cream);

  font-family: var(--serif);

  font-size: clamp(1.45rem, 1.8vw, 2rem);

  line-height: 1.25;
}


.about-hero__aside small {
  display: block;

  max-width: 300px;

  color: rgba(246, 242, 233, 0.68);

  font-family: var(--sans);

  font-size: 0.76rem;

  line-height: 1.8;
}


.about-hero__line {
  position: absolute;

  top: -1px;
  left: 0;

  width: 60px;
  height: 1px;

  background: var(--copper);
}



/* MARCA D'ÁGUA */

.about-hero__watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  width: min(34vw, 520px);

  opacity: 0.08;

  transform:
    translate(-50%, -50%)
    scale(1.05);

  filter:
    brightness(1.2)
    contrast(0.9);

  mix-blend-mode: screen;

  pointer-events: none;
  user-select: none;
}



/* ==========================================================
   FOTO DO HERO SOBRE
   ========================================================== */

.about-hero__visual {
  position: relative;

  display: flex;

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

  padding:
    48px
    54px
    48px
    18px;

  background: #234453;
}


/* moldura fina atrás */

.about-hero__visual::before {
  position: absolute;

  top: 75px;
  right: 34px;

  width: 70%;
  height: calc(100% - 150px);

  border:
    1px solid
    rgba(174, 123, 80, 0.30);

  content: "";

  transform:
    translate(18px, 16px);

  pointer-events: none;
}


.about-hero__frame {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 590px;

  height: 500px;

  overflow: hidden;

  border:
    1px solid
    rgba(246, 242, 233, 0.16);

  background: #1D3844;

  box-shadow:
    0 26px 70px
    rgba(10, 31, 40, 0.24);
}


.about-hero__frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 57% 42%;

  transform: scale(1.06);

  filter:
    saturate(0.80)
    contrast(0.96)
    brightness(0.94);
}


.about-hero__frame::after {
  position: absolute;
  z-index: 2;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(35, 68, 83, 0.02),
      transparent 52%,
      rgba(20, 42, 52, 0.18)
    );

  content: "";

  pointer-events: none;
}


.about-hero__frame-detail {
  position: absolute;
  z-index: 4;

  right: 22px;
  bottom: 22px;

  width: 48px;
  height: 1px;

  background: var(--copper);
}


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

.intro {
  padding: 120px 0;

  background: var(--cream);
}


.intro__grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 130px;
}


.intro__title h2 {
  max-width: 590px;
}


.intro__content {
  padding-top: 42px;
}


.intro__lead {
  margin-bottom: 26px;

  color: var(--navy);

  font-family: var(--serif);

  font-size: 1.65rem;
  line-height: 1.4;
}


.intro__content > p:not(.intro__lead) {
  max-width: 650px;

  margin-bottom: 22px;

  color: var(--slate);

  font-size: 0.92rem;
  line-height: 1.9;
}

/* ==========================================================
   SOBRE — APRESENTAÇÃO DO MÉDICO
   ========================================================== */

.intro--doctor {
  position: relative;

  padding: 110px 0 120px;

  background: var(--cream);
}


.intro-doctor__grid {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.82fr)
    minmax(0, 1.18fr);

  align-items: center;

  gap: clamp(70px, 8vw, 140px);
}


/* FOTO */

.intro-doctor__visual {
  position: relative;
}


.intro-doctor__image {
  position: relative;

  width: 100%;
  height: 580px;

  overflow: hidden;

  background: #e8e2d8;
}


.intro-doctor__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center 30%;

  filter:
    saturate(0.88)
    contrast(0.97);
}


/* DETALHE MINIMALISTA */

.intro-doctor__image::after {
  position: absolute;

  right: 24px;
  bottom: 24px;

  width: 46px;
  height: 1px;

  background: var(--copper);

  content: "";
}


/* NOME ABAIXO DA FOTO */

.intro-doctor__signature {
  display: flex;

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

  gap: 20px;

  padding-top: 18px;

  border-bottom: 1px solid rgba(35, 68, 83, 0.14);

  padding-bottom: 18px;
}


.intro-doctor__signature span {
  color: var(--navy);

  font-family: var(--serif);

  font-size: 1.3rem;
}


.intro-doctor__signature small {
  color: rgba(35, 68, 83, 0.6);

  font-family: var(--sans);

  font-size: 0.62rem;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


/* CONTEÚDO */

.intro-doctor__content {
  max-width: 680px;
}


.intro-doctor__content h2 {
  max-width: 650px;

  margin: 22px 0 36px;

  color: var(--navy);

  font-family: var(--serif);

  font-size: clamp(3rem, 4vw, 4.7rem);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;
}


.intro-doctor__content .intro__lead {
  max-width: 600px;

  margin-bottom: 28px;

  color: var(--navy);

  font-family: var(--serif);

  font-size: clamp(1.35rem, 1.7vw, 1.75rem);

  line-height: 1.35;
}


.intro-doctor__content > p:not(.intro__lead) {
  max-width: 610px;

  margin: 0 0 20px;

  color: rgba(35, 68, 83, 0.78);

  font-family: var(--sans);

  font-size: 0.88rem;

  line-height: 1.85;
}

@media (max-width: 900px) {

  .about-hero {
    min-height: auto;
  }

  .about-hero__inner {
    grid-template-columns: 1fr;

    gap: 55px;

    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-hero__aside {
    max-width: 520px;
  }


  .intro-doctor__grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .intro-doctor__visual {
    max-width: 620px;
  }

  .intro-doctor__image {
    height: 650px;
  }

}


@media (max-width: 600px) {

  .about-hero__main h1 {
    font-size: clamp(3.4rem, 15vw, 4.5rem);
  }

  .about-hero__watermark {
    width: 85vw;
  }


  .intro--doctor {
    padding: 75px 0;
  }

  .intro-doctor__image {
    height: 480px;
  }

  .intro-doctor__signature {
    align-items: flex-start;
    flex-direction: column;

    gap: 5px;
  }

}


/* ==========================================================
   MANIFESTO
   ========================================================== */

.manifesto {
  padding: 85px 0;

  color: var(--cream);

  background: var(--navy);
}


.manifesto__content {
  text-align: center;
}


.manifesto__content > span {
  display: block;

  width: 46px;
  height: 1px;

  margin:
    0
    auto
    28px;

  background: var(--copper);
}


.manifesto p {
  max-width: 900px;

  margin:
    0
    auto
    20px;

  font-family: var(--serif);

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

  line-height: 1;
  letter-spacing: -0.03em;
}


.manifesto small {
  color: var(--copper);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================
   SOBRE — HISTÓRIA
   ========================================================== */

.about-story {
  padding: 115px 0;
  background: var(--cream);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 9vw, 150px);
}

.about-story__heading h2 {
  max-width: 580px;
  color: var(--navy);
  font-size: clamp(3rem, 4vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.about-story__content {
  max-width: 650px;
  padding-top: 35px;
}

.about-story__lead {
  margin-bottom: 30px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.4;
}

.about-story__content > p:not(.about-story__lead) {
  margin-bottom: 22px;

  color: rgba(35, 68, 83, 0.78);

  font-size: 0.88rem;
  line-height: 1.85;
}

@media (max-width: 880px) {
  .about-story {
    padding: 80px 0;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-story__content {
    padding-top: 0;
  }
}

/* ==========================================================
   FORMAÇÃO E TRAJETÓRIA
   ========================================================== */

.profile__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(80px, 10vw, 160px);
}

.profile__heading {
  max-width: 520px;
}

.profile__heading h2 {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.profile__heading > p {
  max-width: 430px;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.8;
}

.profile__timeline {
  border-top: 1px solid var(--line);
}

.profile__timeline article {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 30px;

  padding: 25px 0;

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

.profile__timeline article > span {
  padding-top: 5px;

  color: var(--copper);

  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile__timeline h3 {
  margin: 0 0 6px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;
}

.profile__timeline p {
  margin: 0;

  color: var(--slate);

  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .profile__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 600px) {
  .profile__timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ==========================================================
   PRINCÍPIOS
   ========================================================== */

.principles {
  padding: 115px 0;

  background: var(--cream-light);
}


.principles__heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 80px;

  margin-bottom: 60px;
}


.principles__heading h2 {
  max-width: 640px;
}


.principles__heading > p {
  max-width: 430px;

  margin: 0;

  color: var(--slate);

  font-size: 0.88rem;
  line-height: 1.8;
}


.principles__grid {
  display: grid;

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

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

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


.principles__grid article {
  min-height: 300px;

  padding: 38px 34px;

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

  transition:
    background
    180ms ease;
}


.principles__grid article:last-child {
  border-right: 0;
}


.principles__grid article:hover {
  background:
    rgba(
      174,
      123,
      80,
      0.035
    );
}


.principles__grid article > span {
  display: block;

  margin-bottom: 55px;

  color: var(--copper);

  font-family: var(--serif);

  font-size: 1.25rem;
}


.principles__grid h3 {
  margin-bottom: 12px;

  font-size: 2rem;
}


.principles__grid p {
  margin-bottom: 0;

  color: var(--slate);

  font-size: 0.84rem;
  line-height: 1.75;
}


/* ==========================================================
   TRAJETÓRIA / PERFIL
   ========================================================== */

.profile {
  padding: 115px 0;

  background: var(--cream);
}


.profile__grid {
  display: grid;

  grid-template-columns:
    0.82fr
    1.18fr;

  align-items: center;

  gap: 120px;
}


.profile__card {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  padding: 52px;

  color: var(--cream);

  background: #234453;
}


/* marca d'água dentro do card */

.profile__card > img {
  position: absolute;

  top: 50%;
  right: -8%;

  width: 78%;

  opacity: 0.08;

  transform:
    translateY(-50%);

  pointer-events: none;
}


.profile__info {
  position: absolute;
  z-index: 2;

  bottom: 48px;
  left: 52px;
}


.profile__info > span {
  display: block;

  margin-bottom: 8px;

  color: var(--copper);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.profile__info strong {
  display: block;

  font-family: var(--serif);

  font-size: 2.8rem;
  font-weight: 400;

  line-height: 1;
}


.profile__info p {
  margin:
    12px
    0
    0;

  color:
    rgba(
      246,
      242,
      233,
      0.65
    );

  font-size: 0.72rem;
}


.profile__copy h2 {
  max-width: 620px;

  margin-bottom: 30px;
}


.profile__copy p {
  max-width: 650px;

  margin-bottom: 20px;

  color: var(--slate);

  font-size: 0.9rem;
  line-height: 1.85;
}


.profile__note {
  font-style: italic;

  opacity: 0.78;
}


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

.about-cta {
  padding:
    0
    0
    90px;

  background: var(--cream);
}


.about-cta__box {
  display: flex;

  min-height: 310px;

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

  gap: 70px;

  padding: 62px 68px;

  color: var(--cream);

  background: var(--slate);
}


.about-cta__box h2 {
  max-width: 760px;

  color: var(--cream);
}


.about-cta__actions {
  display: flex;

  min-width: 235px;

  flex-direction: column;

  gap: 18px;

  text-align: center;
}


.about-cta__secondary,
.about-cta__actions > a:last-child {
  color:
    rgba(
      246,
      242,
      233,
      0.82
    );

  font-size: 0.69rem;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.about-cta__secondary span {
  margin-left: 8px;

  color: var(--copper);
}


/* ==========================================================
   RESPONSIVO — SOBRE
   ========================================================== */

@media (max-width: 1100px) {

  .about-hero {
    grid-template-columns:
      55%
      45%;
  }


  .about-hero__visual {
    padding-right: 34px;
  }


  .intro__grid,
  .profile__grid {
    gap: 75px;
  }

}


@media (max-width: 880px) {

  .about-hero {
    grid-template-columns: 1fr;
  }


  .about-hero__copy {
    min-height: 570px;
  }


  .about-hero__inner {
    margin-inline: auto;
  }


  .about-hero__visual {
    min-height: 560px;

    padding: 42px;
  }


  .about-hero__frame {
    max-width: 620px;

    height: 470px;
  }


  .about-hero__visual::before {
    top: 66px;
    right: 45px;

    width:
      calc(100% - 90px);

    height: 440px;
  }


  .intro__grid,
  .profile__grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .intro__content {
    padding-top: 0;
  }


  .principles__heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 28px;
  }


  .principles__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .principles__grid article:nth-child(2) {
    border-right: 0;
  }


  .principles__grid article:nth-child(-n + 2) {
    border-bottom:
      1px solid
      var(--line);
  }


  .about-cta__box {
    align-items: flex-start;

    flex-direction: column;

    padding: 48px 38px;
  }


  .about-cta__actions {
    width: 100%;
  }

}


@media (max-width: 600px) {

  .about-hero__copy {
    min-height: 540px;
  }


  .about-hero__inner {
    width:
      calc(100% - 34px);
  }


  .about-hero h1 {
    font-size:
      clamp(
        3.5rem,
        15vw,
        4.8rem
      );
  }


  .about-hero__watermark {
    right: -38%;

    width: 640px;
  }


  .about-hero__visual {
    min-height: 440px;

    padding: 28px 24px;
  }


  .about-hero__frame {
    height: 380px;
  }


  .about-hero__visual::before {
    top: 46px;
    right: 20px;

    width:
      calc(100% - 40px);

    height: 350px;
  }


  .intro,
  .principles,
  .profile {
    padding: 78px 0;
  }


  .manifesto {
    padding: 70px 0;
  }


  .principles__grid {
    grid-template-columns: 1fr;
  }


  .principles__grid article,
  .principles__grid article:nth-child(2) {
    border-right: 0;

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


  .principles__grid article:last-child {
    border-bottom: 0;
  }


  .profile__card {
    min-height: 320px;

    padding: 35px;
  }


  .profile__info {
    bottom: 35px;
    left: 35px;
  }


  .about-cta {
    padding-bottom: 0;
  }


  .about-cta__box {
    width: 100%;

    padding: 46px 28px;
  }

}

/* ==========================================================
   PÁGINA ESPECIALIDADES — DR. MAGNO CRUZ
   Cole este bloco no final do style.css existente
   ========================================================== */

.specialties-hero{position:relative;overflow:hidden;color:var(--cream);background:#234453}
.specialties-hero__grid{display:grid;min-height:540px;grid-template-columns:1.05fr .95fr;align-items:stretch}
.specialties-hero__copy{display:flex;justify-content:center;flex-direction:column;padding:70px 80px 70px 0}
.specialties-hero h1{max-width:760px;margin-bottom:28px;color:var(--cream);font-size:clamp(4rem,5.2vw,5.8rem);line-height:.93;letter-spacing:-.04em}
.specialties-hero h1 strong{display:block;color:var(--gold);font-weight:400}
.specialties-hero__copy>p{max-width:570px;margin-bottom:0;color:rgba(246,242,233,.78);font-size:.92rem;line-height:1.8}
.specialties-hero__visual{position:relative;display:flex;overflow:hidden;align-items:flex-end;justify-content:flex-end;padding:60px 0 60px 60px}
.specialties-hero__watermark{position:absolute;top:50%;right:-9%;width:min(45vw,570px);opacity:.08;transform:translateY(-50%) scale(1.08);pointer-events:none}
.specialties-hero__card{position:relative;z-index:2;width:min(100%,450px);padding:36px 40px;border-top:1px solid rgba(174,123,80,.5);border-bottom:1px solid rgba(246,242,233,.12)}
.specialties-hero__card span{display:block;margin-bottom:18px;color:var(--copper);font-size:.66rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase}
.specialties-hero__card p{margin:0;color:var(--cream);font-family:var(--serif);font-size:1.75rem;line-height:1.28}

.specialties-intro{padding:115px 0;background:var(--cream)}
.specialties-intro__grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:120px}
.specialties-intro h2{max-width:630px}
.specialties-intro__copy{padding-top:42px}
.specialties-intro__lead{max-width:620px;margin-bottom:25px;color:var(--navy);font-family:var(--serif);font-size:1.6rem;line-height:1.42}
.specialties-intro__copy>p:not(.specialties-intro__lead){max-width:620px;margin-bottom:0;color:var(--slate);font-size:.9rem;line-height:1.85}

.specialties-list{padding:0 0 115px;background:var(--cream)}
.specialties-list__grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-left:1px solid var(--line)}
.specialty-card{position:relative;min-height:390px;padding:38px 36px;border-right:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(246,242,233,.45);transition:background .2s ease,transform .2s ease,box-shadow .2s ease}
.specialty-card:hover{z-index:2;background:var(--cream-light);transform:translateY(-4px);box-shadow:0 18px 50px rgba(38,64,79,.07)}
.specialty-card__top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:64px}
.specialty-card__number{color:var(--copper);font-family:var(--serif);font-size:1.25rem}
.specialty-card__icon{display:grid;width:46px;height:46px;place-items:center;color:var(--copper);border:1px solid rgba(174,123,80,.34);border-radius:50%;font-family:var(--serif);font-size:1.75rem}
.specialty-card__icon--runner{transform:rotate(-18deg)}
.specialty-card h3{max-width:310px;margin-bottom:18px;font-size:2rem;line-height:1.06}
.specialty-card>p{max-width:330px;margin-bottom:30px;color:var(--slate);font-size:.84rem;line-height:1.78}
.specialty-card>a{position:absolute;bottom:35px;left:36px;color:var(--copper);font-size:.68rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase}
.specialty-card>a span{display:inline-block;margin-left:9px;transition:transform .18s ease}
.specialty-card>a:hover span{transform:translateX(4px)}

.specialties-method{padding:110px 0;color:var(--cream);background:var(--navy)}
.specialties-method__grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:120px}
.section-label--light{color:var(--copper)}
.specialties-method__heading h2{max-width:600px;color:var(--cream)}
.specialties-method__steps{border-top:1px solid rgba(246,242,233,.16)}
.specialties-method__steps article{display:grid;grid-template-columns:75px 1fr;gap:24px;padding:31px 0;border-bottom:1px solid rgba(246,242,233,.16)}
.specialties-method__steps article>span{color:var(--copper);font-family:var(--serif);font-size:1.3rem}
.specialties-method__steps h3{margin-bottom:7px;color:var(--cream);font-size:1.85rem}
.specialties-method__steps p{max-width:570px;margin-bottom:0;color:rgba(246,242,233,.68);font-size:.85rem;line-height:1.75}

.specialties-cta{padding:90px 0;background:var(--cream)}
.specialties-cta__box{display:flex;min-height:310px;align-items:center;justify-content:space-between;gap:70px;padding:62px 68px;color:var(--cream);background:var(--slate)}
.specialties-cta__box h2{max-width:720px;margin-bottom:20px;color:var(--cream)}
.specialties-cta__box p{max-width:620px;margin-bottom:0;color:rgba(246,242,233,.72);font-size:.87rem;line-height:1.8}
.specialties-cta__actions{display:flex;min-width:235px;flex-direction:column;gap:18px;text-align:center}
.specialties-cta__actions>a:last-child{color:rgba(246,242,233,.82);font-size:.69rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase}
.specialties-cta__actions>a:last-child span{margin-left:8px;color:var(--copper)}

.specialties-list__grid .specialty-card:last-child {
  grid-column: 1 / -1;
}

.specialties-list__grid .specialty-card:last-child p {
  max-width: 720px;
}

@media(max-width:1100px){
  .specialties-hero__grid{grid-template-columns:1fr .8fr}
  .specialties-intro__grid,.specialties-method__grid{gap:75px}
  .specialties-list__grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:880px){
  .specialties-hero__grid{grid-template-columns:1fr}
  .specialties-hero__copy{min-height:520px;padding-right:0}
  .specialties-hero__visual{min-height:330px;padding:40px 0 50px}
  .specialties-hero__watermark{right:3%;width:470px}
  .specialties-hero__card{margin-left:auto}
  .specialties-intro__grid,.specialties-method__grid{grid-template-columns:1fr;gap:50px}
  .specialties-intro__copy{padding-top:0}
  .specialties-cta__box{align-items:flex-start;flex-direction:column;padding:48px 38px}
  .specialties-cta__actions{width:100%}
}

@media(max-width:600px){
  .specialties-hero__copy{min-height:500px}
  .specialties-hero h1{font-size:clamp(3.4rem,15vw,4.8rem)}
  .specialties-hero__visual{min-height:280px}
  .specialties-hero__card{width:100%;padding:28px 24px}
  .specialties-intro{padding:78px 0}
  .specialties-list{padding-bottom:78px}
  .specialties-list__grid{grid-template-columns:1fr}
  .specialty-card{min-height:350px;padding:32px 28px}
  .specialty-card__top{margin-bottom:44px}
  .specialty-card>a{bottom:30px;left:28px}
  .specialties-method{padding:78px 0}
  .specialties-cta{padding:0}
  .specialties-cta__box{width:100%;padding:46px 28px}
}

.specialties-method__link {
  position: relative;
}

.specialties-method__link::before {
  content: "";
  position: absolute;

  top: -1px;
  left: 0;

  width: 0;
  height: 1px;

  background: var(--copper);

  transition: width 0.35s ease;
}

.specialties-method__link:hover::before {
  width: 100%;
}

.specialties-method__link span {
  color: var(--copper);
  font-size: 1rem;

  transition: transform 0.25s ease;
}

/* HOVER */
.specialties-method__link:hover {
  color: var(--cream);
  padding-left: 8px;
}

.specialties-method__link:hover span {
  color: var(--copper);
  transform: translateX(7px);
}


/* ==========================================================
   PÁGINA MÉTODO — DR. MAGNO CRUZ
   Cole este bloco no final do style.css existente
   ========================================================== */


/* ==========================================================
   HERO
   ========================================================== */

.method-page-hero {
  overflow: hidden;

  color: var(--cream);

  background: #234453;
}


.method-page-hero__grid {
  display: grid;

  min-height: 540px;

  grid-template-columns:
    1.05fr
    0.95fr;

  align-items: stretch;
}


.method-page-hero__copy {
  display: flex;

  justify-content: center;
  flex-direction: column;

  padding: 70px 80px 70px 0;
}


.method-page-hero h1 {
  max-width: 760px;

  margin-bottom: 28px;

  color: var(--cream);

  font-size:
    clamp(
      4rem,
      5.2vw,
      5.8rem
    );

  line-height: 0.93;

  letter-spacing: -0.04em;
}


.method-page-hero h1 strong {
  display: block;

  color: var(--gold);

  font-weight: 400;
}


.method-page-hero__copy > p {
  max-width: 580px;

  margin-bottom: 0;

  color:
    rgba(
      246,
      242,
      233,
      0.78
    );

  font-size: 0.92rem;

  line-height: 1.8;
}


/* VISUAL HERO */

.method-page-hero__visual {
  position: relative;

  display: flex;

  overflow: hidden;

  align-items: flex-end;
  justify-content: flex-end;

  padding: 60px 0 60px 60px;
}


.method-page-hero__watermark {
  position: absolute;

  top: 50%;
  right: -8%;

  width: min(45vw, 570px);

  opacity: 0.08;

  transform:
    translateY(-50%)
    scale(1.08);

  pointer-events: none;
}


.method-page-hero__quote {
  position: relative;
  z-index: 2;

  width: min(100%, 450px);

  padding: 34px 38px;

  border-top:
    1px solid
    rgba(
      174,
      123,
      80,
      0.52
    );

  border-bottom:
    1px solid
    rgba(
      246,
      242,
      233,
      0.12
    );
}


.method-page-hero__quote > span {
  display: block;

  margin-bottom: 16px;

  color: var(--copper);

  font-size: 0.65rem;
  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.method-page-hero__quote p {
  margin: 0;

  color: var(--cream);

  font-family: var(--serif);

  font-size: 1.75rem;

  line-height: 1.28;
}


/* ==========================================================
   INTRO
   ========================================================== */

.method-page-intro {
  padding: 115px 0;

  background: var(--cream);
}


.method-page-intro__grid {
  display: grid;

  grid-template-columns:
    0.95fr
    1.05fr;

  gap: 120px;
}


.method-page-intro h2 {
  max-width: 650px;
}


.method-page-intro__copy {
  padding-top: 42px;
}


.method-page-intro__lead {
  max-width: 620px;

  margin-bottom: 25px;

  color: var(--navy);

  font-family: var(--serif);

  font-size: 1.6rem;

  line-height: 1.42;
}


.method-page-intro__copy > p:not(.method-page-intro__lead) {
  max-width: 620px;

  margin-bottom: 20px;

  color: var(--slate);

  font-size: 0.9rem;

  line-height: 1.85;
}


/* ==========================================================
   ETAPAS
   ========================================================== */

.method-journey {
  padding:
    0
    0
    115px;

  background: var(--cream);
}


.method-journey__heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 80px;

  margin-bottom: 60px;
}


.method-journey__heading h2 {
  max-width: 620px;
}


.method-journey__heading > p {
  max-width: 400px;

  margin: 0;

  color: var(--slate);

  font-size: 0.87rem;

  line-height: 1.8;
}


.method-journey__grid {
  display: grid;

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

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

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


.method-step-card {
  min-height: 390px;

  padding: 38px 34px;

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

  transition:
    background 180ms ease;
}


.method-step-card:last-child {
  border-right: 0;
}


.method-step-card:hover {
  background:
    rgba(
      174,
      123,
      80,
      0.035
    );
}


.method-step-card__number {
  display: block;

  margin-bottom: 28px;

  color: var(--copper);

  font-family: var(--serif);

  font-size: 1.3rem;
}


.method-step-card__line {
  width: 42px;
  height: 1px;

  margin-bottom: 44px;

  background:
    rgba(
      174,
      123,
      80,
      0.58
    );
}


.method-step-card h3 {
  margin-bottom: 15px;

  font-size: 2.1rem;

  line-height: 1;
}


.method-step-card p {
  max-width: 290px;

  margin-bottom: 30px;

  color: var(--slate);

  font-size: 0.84rem;

  line-height: 1.78;
}


.method-step-card small {
  display: block;

  color: var(--copper);

  font-size: 0.63rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* ==========================================================
   MANIFESTO
   ========================================================== */

.method-page-manifesto {
  padding: 105px 0;

  color: var(--cream);

  background: var(--navy);
}


.method-page-manifesto__grid {
  display: grid;

  grid-template-columns:
    0.36fr
    1fr;

  align-items: center;

  gap: 90px;
}


.method-page-manifesto__number {
  color:
    rgba(
      246,
      242,
      233,
      0.06
    );

  font-family: var(--serif);

  font-size:
    clamp(
      8rem,
      16vw,
      15rem
    );

  line-height: 0.72;
}


.method-page-manifesto__copy h2 {
  max-width: 760px;

  margin-bottom: 28px;

  color: var(--cream);
}


.method-page-manifesto__copy > p {
  max-width: 620px;

  margin-bottom: 0;

  color:
    rgba(
      246,
      242,
      233,
      0.68
    );

  font-size: 0.88rem;

  line-height: 1.85;
}


/* ==========================================================
   DIFERENCIAIS
   ========================================================== */

.method-values {
  padding: 115px 0;

  background: var(--cream-light);
}


.method-values__heading {
  margin-bottom: 60px;
}


.method-values__heading h2 {
  max-width: 700px;
}


.method-values__grid {
  display: grid;

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

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

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


.method-values__grid article {
  min-height: 285px;

  padding: 36px 32px;

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


.method-values__grid article:last-child {
  border-right: 0;
}


.method-values__grid article > span {
  display: block;

  margin-bottom: 50px;

  color: var(--copper);

  font-family: var(--serif);

  font-size: 1.2rem;
}


.method-values__grid h3 {
  margin-bottom: 12px;

  font-size: 1.9rem;

  line-height: 1.05;
}


.method-values__grid p {
  margin-bottom: 0;

  color: var(--slate);

  font-size: 0.82rem;

  line-height: 1.75;
}


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

.method-page-cta {
  padding: 90px 0;

  background: var(--cream);
}


.method-page-cta__box {
  display: flex;

  min-height: 310px;

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

  gap: 70px;

  padding: 62px 68px;

  color: var(--cream);

  background: var(--slate);
}


.method-page-cta__box h2 {
  max-width: 700px;

  margin-bottom: 20px;

  color: var(--cream);
}


.method-page-cta__box p {
  max-width: 620px;

  margin-bottom: 0;

  color:
    rgba(
      246,
      242,
      233,
      0.72
    );

  font-size: 0.87rem;

  line-height: 1.8;
}


.method-page-cta__actions {
  display: flex;

  min-width: 235px;

  flex-direction: column;

  gap: 18px;

  text-align: center;
}


.method-page-cta__actions > a:last-child {
  color:
    rgba(
      246,
      242,
      233,
      0.82
    );

  font-size: 0.69rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.method-page-cta__actions > a:last-child span {
  margin-left: 8px;

  color: var(--copper);
}


/* ==========================================================
   RESPONSIVO
   ========================================================== */

@media (max-width: 1100px) {

  .method-page-hero__grid {
    grid-template-columns:
      1fr
      0.8fr;
  }


  .method-page-intro__grid,
  .method-page-manifesto__grid {
    gap: 70px;
  }


  .method-journey__grid,
  .method-values__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .method-step-card:nth-child(2),
  .method-values__grid article:nth-child(2) {
    border-right: 0;
  }


  .method-step-card:nth-child(-n + 2),
  .method-values__grid article:nth-child(-n + 2) {
    border-bottom:
      1px solid
      var(--line);
  }

}


@media (max-width: 880px) {

  .method-page-hero__grid {
    grid-template-columns: 1fr;
  }


  .method-page-hero__copy {
    min-height: 520px;

    padding-right: 0;
  }


  .method-page-hero__visual {
    min-height: 320px;

    padding:
      40px
      0
      50px;
  }


  .method-page-hero__watermark {
    right: 3%;

    width: 470px;
  }


  .method-page-hero__quote {
    margin-left: auto;
  }


  .method-page-intro__grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .method-page-intro__copy {
    padding-top: 0;
  }


  .method-journey__heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 28px;
  }


  .method-page-manifesto__grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .method-page-manifesto__number {
    font-size: 8rem;
  }


  .method-page-cta__box {
    align-items: flex-start;

    flex-direction: column;

    padding: 48px 38px;
  }


  .method-page-cta__actions {
    width: 100%;
  }

}


@media (max-width: 600px) {

  .method-page-hero__copy {
    min-height: 500px;
  }


  .method-page-hero h1 {
    font-size:
      clamp(
        3.4rem,
        15vw,
        4.8rem
      );
  }


  .method-page-hero__visual {
    min-height: 270px;
  }


  .method-page-hero__quote {
    width: 100%;

    padding:
      28px
      24px;
  }


  .method-page-intro {
    padding: 78px 0;
  }


  .method-journey {
    padding-bottom: 78px;
  }


  .method-journey__grid,
  .method-values__grid {
    grid-template-columns: 1fr;
  }


  .method-step-card,
  .method-step-card:nth-child(2),
  .method-values__grid article,
  .method-values__grid article:nth-child(2) {
    border-right: 0;

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


  .method-step-card:last-child,
  .method-values__grid article:last-child {
    border-bottom: 0;
  }


  .method-page-manifesto,
  .method-values {
    padding: 78px 0;
  }


  .method-page-cta {
    padding:
      0
      0
      0;
  }


  .method-page-cta__box {
    width: 100%;

    padding:
      46px
      28px;
  }

}

/* ==========================================================
   BLOG
   ========================================================== */

.blog-hero {
  padding: 110px 0 120px;
  background: var(--navy);
}

.blog-hero__content {
  max-width: 900px;
}

.blog-hero h1 {
  margin: 24px 0 28px;

  color: var(--cream);

  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 400;

  line-height: 0.9;
  letter-spacing: -0.045em;
}

.blog-hero h1 strong {
  display: block;

  color: var(--copper);
  font-weight: 400;
}

.blog-hero p {
  max-width: 520px;

  color: rgba(246, 241, 232, 0.75);

  font-size: 0.86rem;
  line-height: 1.8;
}


/* LISTAGEM */

.blog-list {
  padding: 110px 0 130px;
  background: var(--cream);
}

.blog-list__heading {
  margin-bottom: 65px;
}

.blog-list__heading h2 {
  margin-top: 20px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 400;

  line-height: 1;
}

.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 70px 38px;
}


/* CARD */

.blog-list__card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-list__image {
  height: 390px;

  overflow: hidden;
  background: #ddd;
}

.blog-list__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 600ms ease;
}

.blog-list__card:hover img {
  transform: scale(1.025);
}

.blog-list__content {
  padding-top: 25px;
}

.blog-list__content > span {
  color: var(--copper);

  font-size: 0.62rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-list__content h3 {
  max-width: 590px;

  margin: 14px 0 18px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  font-weight: 400;

  line-height: 1.08;
}

.blog-list__content p {
  max-width: 530px;

  color: var(--slate);

  font-size: 0.78rem;
  line-height: 1.75;
}

.blog-list__content small {
  display: inline-block;

  margin-top: 22px;
  padding-bottom: 6px;

  border-bottom: 1px solid var(--copper);

  color: var(--navy);

  font-size: 0.65rem;
  font-weight: 600;

  letter-spacing: 0.05em;
}


/* RESPONSIVO */

@media (max-width: 800px) {

  .blog-list__grid {
    grid-template-columns: 1fr;
  }

  .blog-list__image {
    height: 340px;
  }

}

@media (max-width: 520px) {

  .blog-hero {
    padding: 80px 0;
  }

  .blog-list {
    padding: 80px 0;
  }

  .blog-list__image {
    height: 280px;
  }

}

/* ==========================================================
   ARTIGO
   ========================================================== */

.article {
  background: var(--cream);
}


/* HERO */

.article__hero {
  padding: 85px 0 95px;
  background: var(--navy);
}

.article__hero-inner {
  max-width: 1050px;
}

.article__back {
  display: inline-block;

  margin-bottom: 55px;

  color: rgba(246, 241, 232, 0.6);

  font-size: 0.65rem;
  letter-spacing: 0.08em;

  transition: color 200ms ease;
}

.article__back:hover {
  color: var(--copper);
}

.article__category {
  display: block;

  margin-bottom: 20px;

  color: var(--copper);

  font-size: 0.62rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article__hero h1 {
  max-width: 1000px;

  color: var(--cream);

  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 5.8rem);
  font-weight: 400;

  line-height: 0.98;
  letter-spacing: -0.04em;
}

.article__lead {
  max-width: 700px;

  margin-top: 35px;

  color: rgba(246, 241, 232, 0.75);

  font-size: 0.95rem;
  line-height: 1.8;
}


/* COVER */

.article__cover {
  margin-top: 70px;
}

.article__cover img {
  display: block;

  width: 100%;
  height: min(55vw, 650px);

  object-fit: cover;
}


/* CONTEÚDO */

.article__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);

  justify-content: center;

  gap: 90px;

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

.article__aside {
  padding-top: 8px;

  border-top: 1px solid var(--copper);
}

.article__aside span {
  display: block;

  margin-top: 16px;

  color: var(--navy);

  font-size: 0.65rem;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article__aside p {
  margin-top: 8px;

  color: var(--slate);

  font-family: var(--serif);
  font-size: 1.2rem;
}


/* TYPOGRAPHY */

.article__content > p {
  margin-bottom: 24px;

  color: var(--slate);

  font-size: 0.95rem;
  line-height: 1.9;
}

.article__content h2 {
  margin: 65px 0 24px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 400;

  line-height: 1.05;
}

.article__content h3 {
  margin: 40px 0 18px;

  color: var(--navy);

  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.article__content ul {
  margin: 25px 0 35px;
  padding: 0;

  list-style: none;
}

.article__content li {
  position: relative;

  padding: 13px 0 13px 22px;

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

  color: var(--slate);

  font-size: 0.9rem;
  line-height: 1.6;
}

.article__content li::before {
  content: "";

  position: absolute;

  top: 21px;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--copper);
}


/* CTA */

.article__cta {
  margin-top: 80px;
  padding: 45px;

  background: var(--navy);
}

.article__cta > span {
  color: var(--copper);

  font-size: 0.6rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article__cta h2 {
  margin: 15px 0 18px;

  color: var(--cream);
}

.article__cta p {
  max-width: 500px;

  color: rgba(246, 241, 232, 0.7);

  line-height: 1.7;
}

.article__cta a {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  margin-top: 28px;

  color: var(--cream);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article__cta a span {
  color: var(--copper);

  transition: transform 200ms ease;
}

.article__cta a:hover span {
  transform: translateX(6px);
}


/* MOBILE */

@media (max-width: 800px) {

  .article__layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article__aside {
    max-width: 220px;
  }

}

@media (max-width: 520px) {

  .article__hero {
    padding: 65px 0 75px;
  }

  .article__cover {
    margin-top: 35px;
  }

  .article__layout {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .article__cta {
    padding: 32px 26px;
  }

}


.footer p,
.footer a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-variant-numeric: normal;
  font-feature-settings: normal;
}

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

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px 18px;

  background: var(--copper, #b77d4f);
  color: var(--cream, #f5f0e7);

  border-radius: 50px;
  text-decoration: none;

  font-family: var(--sans, Arial, sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);

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

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;

  fill: currentColor;
}

/* Hover */
.whatsapp-float:hover {
  background: var(--blue, #234453);
  color: var(--cream, #f5f0e7);

  transform: translateY(-3px);

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* Clique */
.whatsapp-float:active {
  transform: translateY(-1px);
}


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

@media (max-width: 768px) {

  .whatsapp-float {
    right: 18px;
    bottom: 18px;

    width: 54px;
    height: 54px;

    padding: 0;

    justify-content: center;

    border-radius: 50%;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }

  .whatsapp-float span {
    display: none;
  }
}

/* ========================================
   NAVBAR LOGO — MOBILE
======================================== */

@media (max-width: 768px) {

  .navbar__logo {
    position: relative;
    display: block;
    width: 190px;
    height: 70px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .navbar__logo img {
    position: absolute;

    /* reseta o posicionamento do desktop */
    top: 50%;
    left: 0;

    width: 190px !important;
    max-width: 190px !important;
    height: auto;

    /* MUITO IMPORTANTE: remove o scale(5) */
    transform: translateY(-50%) !important;
    transform-origin: center;

    object-fit: contain;
  }

}

@media (max-width: 768px) {

  .navbar__logo {
    position: relative;
    display: block;
    width: 210px;
    height: 75px;
    overflow: visible;
    flex-shrink: 0;
  }

  .navbar__logo img {
    position: absolute;
    top: 50%;
    left: 0;

    width: 250px !important;
    max-width: none !important;
    height: auto;

    transform: translateY(-50%) !important;
    object-fit: contain;

    pointer-events: none;
  }
}

/* =========================================================
   FIX — BOTÃO SERVIÇOS MOBILE
========================================================= */

.specialties__action {
  position: relative;
  z-index: 10;
}

.specialties__action .button {
  position: relative;
  z-index: 11;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .specialties__action {
    position: relative;
    z-index: 20;
  }

  .specialties__action .button {
    position: relative;
    z-index: 21;
    pointer-events: auto;
  }
}

/* Ícone — Emagrecimento estruturado */
.specialty__icon--weight {
  position: relative;
  width: 32px;
  height: 32px;
}

/* seta diagonal */
.specialty__icon--weight::before {
  content: "";
  position: absolute;

  width: 18px;
  height: 1.5px;

  background: var(--copper);

  top: 14px;
  left: 6px;

  transform: rotate(45deg);
  transform-origin: center;
}

/* ponta da seta */
.specialty__icon--weight::after {
  content: "";
  position: absolute;

  width: 8px;
  height: 8px;

  border-right: 1.5px solid var(--copper);
  border-bottom: 1.5px solid var(--copper);

  right: 4px;
  bottom: 4px;
}

.specialty-card__arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.specialty-card__arrow::before {
  content: "";
  position: absolute;

  width: 18px;
  height: 1.5px;

  background: var(--copper);

  top: 9px;
  left: 1px;

  transform: rotate(45deg);
}

.specialty-card__arrow::after {
  content: "";
  position: absolute;

  width: 7px;
  height: 7px;

  border-right: 1.5px solid var(--copper);
  border-bottom: 1.5px solid var(--copper);

  right: 0;
  bottom: 0;
}




