* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #16BEC4;
  --color-primary-hover: #0EA9AF;
  --color-title: #3C3C3C;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFA;
  --color-border: #EAEAEA;
  --color-footer: #202626;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 14px 35px rgba(12, 75, 80, .10);
  --shadow-card: 0 8px 28px rgba(24, 43, 45, .08);
  --transition: .28s ease;
  --space-section: 76px;
}

body {
  font-family: var(--font-main);
  background: #fff;
  color: #526064;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.section {
  padding: var(--space-section) 0;
}

.section--soft {
  background: linear-gradient(90deg, #eefdfd, #f7ffff);
}

.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: #e9fbfc;
  padding: 5px 9px;
  border-radius: 6px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 8px 0 5px;
  color: var(--color-title);
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  color: #687377;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .93rem;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), #11aeb7);
  color: #fff;
  box-shadow: 0 12px 28px rgba(22, 190, 196, .25);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn--primary:before {
  content: '☏';
  font-weight: 900;
}

.btn--outline {
  background: #fff;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: #eafbfc;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
}

.logo__image {
  width: 220px;
  height: auto;
  display: block;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-weight: 700;
  font-size: .86rem;
  color: #323b3d;
  position: relative;
}

.nav__link.active,
.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav__link:hover:after,
.nav__link.active:after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: #eafcfc;
  border: 0;
  color: var(--color-primary);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 24px;
}

.header__cta {
  min-height: 42px;
  font-size: .82rem;
  padding: 0 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 635px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 100%, rgba(22, 190, 196, .14), transparent 31%), linear-gradient(180deg, #fff, #fafdfe);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  align-items: center;
  gap: 62px;
}

.hero h1 {
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 1.08;
  margin: 18px 0;
  color: #303537;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--color-primary);
}

.hero p {
  max-width: 560px;
  color: #445055;
  font-size: 1.03rem;
  margin-bottom: 28px;
}

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

.hero__features {
  display: flex;
  gap: 38px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero__features span {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  column-gap: 12px;
  color: #7b8588;
}

.hero__features b {
  color: #424b4e;
  font-size: .92rem;
}

.hero__features small {
  grid-column: 2;
  color: #7b8588;
  font-size: .82rem;
}

.hero__visual {
  position: relative;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual img {
  width: min(100%, 455px);
  height: 455px;
  object-fit: cover;
  border-radius: 18px 58px 18px 58px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.hero__blob {
  position: absolute;
  width: 455px;
  height: 455px;
  border-radius: 55% 45% 40% 60%;
  background: rgba(22, 190, 196, .19);
  transform: translate(-62px, 25px);
  z-index: 1;
}

.hero__badge {
  position: absolute;
  left: 28px;
  bottom: 72px;
  z-index: 3;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-primary);
  font-size: 28px;
  padding: 20px;
}

.hero__badge strong {
  font-size: .84rem;
  line-height: 1.2;
  color: #3c4649;
}

/* Sobre */
.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafa 0%, #eefcfc 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 62px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__visual img {
  width: min(100%, 440px);
  height: 420px;
  object-fit: cover;
  border-radius: 22px 70px 22px 70px;
  box-shadow: var(--shadow-soft);
}

.about__experience {
  position: absolute;
  right: 12px;
  bottom: 22px;
  background: #fff;
  border: 1px solid #e7eeee;
  border-radius: 22px;
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  max-width: 290px;
}

.about__experience strong {
  display: block;
  color: var(--color-primary);
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 900;
}

.about__content h2 {
  color: #2f383b;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  margin: 10px 0 20px;
  letter-spacing: -.045em;
}

.about__content p {
  font-size: 1rem;
  color: #5c686b;
  margin-bottom: 24px;
  max-width: 650px;
}

.about__points {
  display: grid;
  gap: 16px;
  margin: 26px 0 30px;
}

.about__points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid #e7eeee;
  border-radius: 15px;
  padding: 17px 18px;
  box-shadow: 0 8px 24px rgba(24, 43, 45, .055);
}

.about__points span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.about__points h3 {
  margin: 0 0 3px;
  color: #30383b;
  font-size: 1.02rem;
}

.about__points p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}

/* Serviços */
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-align: center;
  padding: 28px 15px 26px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #04aeb5;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--color-primary);
}

.service-card h3 {
  margin: 0 0 8px;
  color: #283033;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: #647174;
  font-size: .82rem;
  line-height: 1.5;
}

/* Tratamentos */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.treatment-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #04aeb5;
}

.treatment-card img {
  height: 142px;
  width: 100%;
  object-fit: cover;
}

.treatment-card__body {
  padding: 18px 18px 20px;
}

.treatment-card h3 {
  margin: 0 0 10px;
  color: #3b3035;
  font-size: 1.18rem;
}

.treatment-card p {
  margin: 0 0 17px;
  font-size: .9rem;
  line-height: 1.48;
  color: #526174;
}

.treatment-card .btn {
  min-height: 35px;
  padding: 0 13px;
  font-size: .78rem;
  border-radius: 6px;
}

/* Equipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.team-card {
  background: #fff;
  border: 1px solid #e7eeee;
  border-radius: 11px;
  padding: 20px;
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #04aeb5;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.team-content h3 {
  margin: 0 0 5px;
  color: #242c2f;
  font-size: 1.32rem;
}

.team-content .cro {
  color: var(--color-primary);
  font-weight: 900;
  font-size: .9rem;
}

.team-content h4 {
  margin: 12px 0 8px;
  color: #384247;
}

.team-content p {
  font-size: .89rem;
  line-height: 1.6;
  color: #5b6870;
  margin-bottom: 20px;
}

.team-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================================
   REDES SOCIAIS - FOOTER
   ============================================================ */
.footer .socials {
  display: flex;
  gap: 10px;
}

.footer .socials a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #f8f6f4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

.footer .socials a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer .socials a img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

/* ============================================================
   REDES SOCIAIS - CARD EQUIPE
   ============================================================ */
.team-footer .socials {
  display: flex;
  gap: 10px;
}

.team-footer .socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9fbfc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

.team-footer .socials a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.team-footer .socials a i {
  font-size: 16px;
}

/* WhatsApp */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
}

.btn-whatsapp i {
  font-size: 18px;
}

/* Depoimentos */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #04aeb5;
}

.testimonial-card:before {
  content: '“';
  position: absolute;
  right: 22px;
  top: 8px;
  color: #d7f7f8;
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--color-primary);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.testimonial-card p {
  color: #5e6a6d;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-author span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1fbfc, #b8f4f6);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-weight: 900;
}

.testimonial-author b {
  display: block;
  color: #333;
}

.testimonial-author small {
  color: #7b8588;
}

/* Contato */
.contact__grid {
  display: grid;
  grid-template-columns: 245px 1fr 318px;
  gap: 38px;
  align-items: start;
}

.contact-info h2 {
  color: #2d3638;
  font-size: 2.1rem;
  margin: 6px 0 22px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list p {
  margin: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 13px;
  align-items: center;
}

.contact-list span {
  grid-row: 1/3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
}

.contact-list b {
  color: #354043;
}

.contact-list small {
  color: #687377;
  line-height: 1.45;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #dce5e6;
  border-radius: 6px;
  min-height: 49px;
  padding: 0 16px;
  outline: none;
  transition: var(--transition);
  margin-bottom: 13px;
  color: #30383b;
}

.form textarea {
  min-height: 122px;
  resize: vertical;
  padding-top: 15px;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(22, 190, 196, .12);
}

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

.form__message {
  margin: 10px 0 0;
  font-weight: 700;
}

.location-card {
  background: linear-gradient(180deg, #fff, #f7fbfb);
  border-radius: 12px;
  padding: 23px;
  box-shadow: var(--shadow-card);
}

.location-card h3 {
  margin: 0 0 12px;
  color: #293133;
  font-size: 1.35rem;
}

.location-card p {
  font-size: .95rem;
  margin-bottom: 16px;
}

.location-card .btn {
  min-height: 42px;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background: radial-gradient(circle at 10% 20%, rgba(22, 190, 196, .12), transparent 30%), var(--color-footer);
  color: #d8e0e1;
  padding: 54px 0 22px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.55fr .8fr 1fr 1.35fr;
  gap: 60px;
}

.footer .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer .logo__image--footer {
  width: 220px;
  height: auto;
  display: block;
}

.footer p {
  margin: 0 0 18px;
  color: #c6d0d1;
}

.footer h4 {
  margin: 0 0 17px;
  color: #fff;
}

.footer a:not(.btn):not(.logo) {
  display: block;
  color: #d2dada;
  margin: 8px 0;
  font-size: .94rem;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin-top: 44px;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.footer__info a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer__cnpj {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer__credits {
  text-align: right;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-container {
  background: #ffffff;
  max-width: 600px;
  width: 90%;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-fechar {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.2s ease;
}

.modal-fechar:hover {
  color: #16BEC4;
  transform: scale(1.1);
}

.modal-imagem {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

.modal-container h2 {
  color: #2d3748;
  font-size: 1.75rem;
  margin: 0 0 16px 0;
}

.modal-descricao {
  margin: 0 0 24px 0;
  line-height: 1.7;
  color: #4a5568;
  font-size: 1rem;
}

.btn-modal-orcamento {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, #16BEC4, #0EA9AF);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal-orcamento:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 190, 196, 0.35);
  background: #0EA9AF;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(calc(100% - 36px), 980px);
  background: rgba(255, 255, 255, .98);
  border: 1px solid #d9f5f6;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(20, 43, 45, .18);
  z-index: 950;
  padding: 20px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  backdrop-filter: blur(10px);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner strong {
  display: block;
  color: #2f383b;
  font-size: 1.08rem;
  margin-bottom: 3px;
}

.cookie-banner p {
  margin: 0;
  color: #5a6669;
  font-size: .92rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--color-primary);
  font-weight: 900;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: .82rem;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Botão Saiba Mais dos Tratamentos */
/* Botão Saiba Mais dos Tratamentos - Estilo Print 1 */
.treatment-card .btn-saiba-mais {
  background: linear-gradient(180deg, #04aeb5, #008c94);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 30px;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 140px;
  margin-top: 10px;
}

.treatment-card .btn-saiba-mais:hover {
  background: linear-gradient(180deg, #008c94, #006f75);
  transform: translateY(-2px);
  gap: 12px;
}

.treatment-card .btn-saiba-mais::after {
  content: "➤";
  font-size: 11px;
  transition: transform 0.2s;
}

.treatment-card .btn-saiba-mais:hover::after {
  transform: translateX(3px);
}

/* Responsivo */
@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .contact-info {
    grid-column: 1/-1;
  }

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

@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .08);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

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

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

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

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

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

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-grid,
  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .team-footer {
    flex-direction: column;
    align-items: center;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

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

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

  .modal-container {
    padding: 20px;
  }

  .modal-container h2 {
    font-size: 1.25rem;
  }

  .cookie-banner {
    bottom: 86px;
  }

  /* ============================================================
   CARDS DE TRATAMENTOS - ESTILO PRINCIPAL
   ============================================================ */

  .treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
  }

  .treatment-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }

  .treatment-card-placeholder {
    width: 80px;
    height: 80px;
    background: #e5f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px auto;
    color: #04aeb5;
  }

  .treatment-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  /* Botão Saiba Mais dos Tratamentos - Estilo Print 1 (Mobile) */
  .treatment-card .btn-saiba-mais {
    background: linear-gradient(180deg, #04aeb5, #008c94);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 30px;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 160px;
    margin-top: 12px;
  }

  .treatment-card .btn-saiba-mais:hover {
    background: linear-gradient(180deg, #008c94, #006f75);
    transform: translateY(-2px);
    gap: 12px;
  }

  .treatment-card .btn-saiba-mais::after {
    content: "➤";
    font-size: 12px;
    transition: transform 0.2s;
  }

  .treatment-card .btn-saiba-mais:hover::after {
    transform: translateX(3px);
  }

  /* Responsivo dos cards de tratamento */
  @media (max-width: 1100px) {
    .treatment-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .treatment-grid {
      grid-template-columns: 1fr;
    }
  }
}