@charset "UTF-8";
strong {
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus {
  outline: 0;
}

html, body, #root {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "skolar-sans-latin", sans-serif;
  background-color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

body, input, button, textarea {
  font-family: "skolar-sans-latin", sans-serif;
}

p {
  font-size: 1.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.2rem;
}

a {
  text-decoration: none;
  font-size: 1.6rem;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

.only-mobile {
  display: none !important;
}

@media (orientation: portrait) and (max-width: 600px) {
  .only-mobile {
    display: block !important;
  }
  .only-desktop {
    display: none !important;
  }
}
/* ===== header (mesmo do tratamentos2026) ===== */
#control-nav {
  display: none;
}

header {
  min-height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #3c3c3c;
  z-index: 9;
  display: flex;
  transition: top 0.3s;
  opacity: 0.9;
}

header .logo {
  display: flex;
  place-items: center;
  justify-content: center;
}

header .logo .logoMenu {
  padding: 20px 50px;
  z-index: 100;
}

header .logo .logoMenu img {
  width: 166px;
}

header nav {
  width: 100%;
  align-self: center;
  opacity: 1;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 5rem;
}

header nav ul li {
  margin-left: 4rem;
  align-self: center;
}

header nav ul li a {
  color: #c8b08b;
  font-weight: 700;
  transition: color 0.2s;
}

header nav ul li a:hover {
  color: #f5f5f7;
}

/* ===== menu mobile (dropdown compacto, redesign 2026) ===== */
@media screen and (max-width: 767px) {
  header {
    opacity: 1;
    transition: background-color 0.3s ease;
  }
  header:has(#control-nav:checked) {
    background: #575656;
  }
  header .logo {
    width: auto;
  }
  header .logo .logoMenu {
    padding: 1.2rem 2rem;
  }
  header .logo .logoMenu img {
    width: 8rem;
    height: auto;
  }
  header .control-nav,
  header .control-nav-close {
    display: none;
  }
  header .menuicon {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: auto;
    cursor: pointer;
    z-index: 12;
  }
  header .menuicon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-top: 0.6rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  header .menuicon span:first-child {
    margin-top: 0;
  }
  header nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    width: 100%;
    background: #575656;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 8;
    transition: opacity 0.3s ease;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    padding: 2.4rem 3.5rem 3rem;
    margin: 0;
  }
  header nav ul li {
    text-align: left;
    margin: 0 0 1.8rem;
    width: auto;
    font-size: inherit;
    align-self: flex-start;
  }
  header nav ul li:last-child {
    margin-bottom: 0;
  }
  header nav ul li a {
    display: inline-block;
    font-family: "skolar-sans-latin", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.7;
    padding-left: 1.5rem;
  }
  header nav ul li.menuactive {
    position: relative;
  }
  header nav ul li.menuactive::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #d9a522;
  }
  header nav ul li.menuactive a {
    font-weight: 500;
    opacity: 1;
  }
  #control-nav:checked ~ nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #control-nav:checked ~ .menuicon span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  #control-nav:checked ~ .menuicon span:nth-child(2) {
    opacity: 0;
  }
  #control-nav:checked ~ .menuicon span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}
/* ===== conteúdo (tema claro) ===== */
.casos2026 {
  background: rgba(23, 22, 21, 0.08);
  padding: 18rem 0 13rem;
}

.casos2026-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10rem;
  max-width: 130rem;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}
.casos2026-intro h2 {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
  color: #0b0b0b;
  white-space: nowrap;
  line-height: 1;
}
.casos2026-intro .texto {
  max-width: 61rem;
}
.casos2026-intro .texto p {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 130%;
  color: #171615;
  margin-bottom: 1.6rem;
}
.casos2026-intro .texto p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .casos2026-intro {
    flex-direction: column;
    gap: 3rem;
  }
  .casos2026-intro h2 {
    white-space: normal;
  }
}
@media screen and (max-width: 600px) {
  .casos2026 {
    padding: 11rem 0;
  }
  .casos2026-intro {
    padding: 0 2.2rem 4rem;
    width: 80%;
    margin: 0;
  }
  .casos2026-intro h2 {
    font-size: 2rem;
  }
  .casos2026-intro .texto p {
    font-size: 1.6rem;
  }
}
.casos2026-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 130rem;
  margin: 0 auto;
  row-gap: 7rem;
}

.casos2026-grid .caso {
  padding: 0rem 2.1rem;
  display: grid;
}
.casos2026-grid .caso:not(:nth-child(3n)) {
  border-right: 1px solid rgba(23, 22, 21, 0.15);
}
.casos2026-grid .caso img {
  width: 100%;
  height: auto;
  aspect-ratio: 37/30;
  object-fit: cover;
}
.casos2026-grid .caso h3 {
  margin-top: 2.9rem;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  color: #171615;
}
.casos2026-grid .caso .numero {
  display: block;
  margin-top: 0.4rem;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1;
  color: #171615;
}
.casos2026-grid .caso .leia-mais {
  display: flex;
  gap: 2.5rem;
  align-self: flex-end;
  margin-top: 6rem;
}
.casos2026-grid .caso .leia-mais p {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  color: #171615;
  line-height: 1;
}
.casos2026-grid .caso .leia-mais .seta {
  display: block;
}

@media screen and (max-width: 900px) {
  .casos2026-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .casos2026-grid .caso:not(:nth-child(3n)) {
    border-right: none;
  }
  .casos2026-grid .caso:not(:nth-child(2n)) {
    border-right: 1px solid rgba(23, 22, 21, 0.15);
  }
}
@media screen and (max-width: 600px) {
  .casos2026-grid {
    grid-template-columns: 1fr;
    width: 90%;
    row-gap: 5rem;
  }
  .casos2026-grid .caso:not(:nth-child(2n)) {
    border-right: none;
  }
  .casos2026-grid .caso {
    padding: 0;
  }
  .casos2026-grid .caso img {
    aspect-ratio: 316/256;
  }
  .casos2026-grid .caso .name-number {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1.9rem;
  }
  .casos2026-grid .caso .name-number h3 {
    font-size: 1.8rem;
    margin-top: 0;
  }
  .casos2026-grid .caso .name-number .numero {
    font-size: 1.8rem;
    color: #d9a522;
    margin-top: 0;
  }
  .casos2026-grid .caso .leia-mais {
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
  }
  .casos2026-grid .caso .leia-mais p {
    font-size: 1.5rem;
  }
  .casos2026-grid .caso .leia-mais .seta {
    width: 15px;
    height: 15px;
    line-height: 1;
  }
  .casos2026-grid .caso .leia-mais .seta svg {
    width: 100%;
    height: 100%;
  }
}
/* ===== footer (mesmo do tratamentos2026, adaptado pro fundo branco) ===== */
footer {
  background-color: #171615;
  color: #ffffff;
  width: 100vw;
  margin: auto;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  width: 80vw;
  margin: 0 auto;
}
footer .footer-container .logo-footer {
  margin-bottom: 7rem;
  margin-top: 8rem;
  width: 276px;
}
footer .footer-container .top {
  display: flex;
  justify-content: space-between;
}
footer .footer-container .top p, footer .footer-container .top a {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 120%;
}
footer .footer-container .top .left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
footer .footer-container .top .left a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
footer .footer-container .top .right {
  display: flex;
  gap: 5rem;
}
footer .footer-container .top .right .menu {
  display: flex;
  gap: 5rem;
}
footer .footer-container .top .right .menu div {
  display: flex;
  flex-direction: column;
}
footer .footer-container .top .right .menu div a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 200%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
footer .footer-container .top .right .social-buttons {
  display: flex;
  justify-content: end;
  margin-top: auto;
  gap: 2.4rem;
}
footer .footer-container .top .right .social-buttons img {
  margin: 0;
}

footer .bottom {
  width: 80vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 0.8rem;
  padding-bottom: 1.8rem;
  margin-top: 4rem;
}

footer .bottom p {
  font-size: 1.2rem;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 600px) {
  footer .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 85vw;
    margin: 0 auto;
  }
  footer .footer-container .logo-footer {
    margin: 5rem 0 5.4rem;
    width: 166px;
  }
  footer .footer-container .top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  footer .footer-container .top p, footer .footer-container .top a {
    font-size: 1.5rem;
  }
  footer .footer-container .top .left {
    gap: 9px;
  }
  footer .footer-container .top .left a {
    gap: 1rem;
  }
  footer .footer-container .top .left a svg {
    width: 15px;
    height: 15px;
  }
  footer .footer-container .top .right {
    margin-top: 3.6rem;
    flex-direction: column;
    gap: 4rem;
  }
  footer .footer-container .top .right .menu {
    gap: 4rem;
  }
  footer .footer-container .top .right .menu div a {
    font-size: 1.2rem;
  }
  footer .footer-container .top .right .social-buttons {
    margin-top: 0;
    gap: 1.6rem;
    justify-content: flex-start;
  }
  footer .footer-container .top .right .social-buttons img {
    height: 16px;
  }
}
.zap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  cursor: pointer;
}
.zap img {
  height: 65px;
}

@media screen and (max-width: 600px) {
  .zap {
    right: 20px;
    bottom: 20px;
  }
  .zap img {
    height: 40px;
    width: 40px;
  }
}

/*# sourceMappingURL=casos2026.css.map */
