@font-face {
  font-family: "Bestoom";
  src: url("../fonts/bestoom/Bestoom.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  scroll-padding-top: 100px;
  /* ajuste conforme altura do seu header fixo */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

header {
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 85px;
}

.nav-bar {
  display: flex;
  align-items: center;
  background-color: #bf4e1e;
  border-radius: 3.125rem;
  height: 4.375rem;
}

.nav-bar ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.nav-bar li {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 3.125rem;
}

.nav-bar a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.nav-bar li:hover {
  background-color: #2f7885;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3.125rem;
  height: 3.125rem;
  background: #bf4e1e;
  border: none;
  cursor: pointer;
  border-radius: 0.625rem;
  padding: 0.3rem;
  z-index: 999;
  place-items: center;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
}

@media (max-width: 1050px) {
  .hamburger {
    display: flex;
    justify-content: center;
  }

  .nav-bar {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    border-radius: 0 0 2rem 2rem;
    z-index: 10;
  }

  .nav-bar.active {
    display: flex;
  }

  .nav-bar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-bar li {
    width: 100%;
    text-align: center;
  }

  .header-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header-scroll-hidden {
    display: none;
  }
}

.header-scroll-hidden {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.header-scroll-hidden.active {
  transform: translateY(0);
}

.header-scroll-hidden.active .header-container {
  padding: 1rem;
}

.header-scroll-hidden.active .logo img {
  height: 75px;
}

.header-scroll-hidden.active .nav-bar {
  background-color: transparent;
}

.header-scroll-hidden.active .nav-bar a {
  color: #bf4e1e;
}

.header-scroll-hidden.active .nav-bar a:hover {
  color: #2f7885;
}

.header-scroll-hidden.active .nav-bar li:hover {
  background-color: transparent;
}

.hero {
  /* height: 87vh; */
  background: url(../img/hero-desktop.svg) no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  background-position: right;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-section {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.hero-content {
  max-width: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: "Bestoom";
  color: #df6531;
  text-align: left;
}

.hero-btn {
  border-radius: 3.125rem;
  background: #2f7a8b;
  border: none;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  max-width: 16.5rem;
  height: 4rem;
  color: #fff;
  font-family: "Poppins";
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  cursor: pointer;
}

.hero-btn:hover {
  background-color: #bf4e1e;
}

@media (max-width: 1024px) {
  .hero {
    background-position: center;
    background-size: cover;
    height: auto;
    padding: 4rem 1rem;
  }

  .hero-content {
    align-items: start;
    text-align: start;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    background-image: url("../img/mobile.svg");
    height: auto;
  }

  .hero-section {
    padding: 1rem;
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-btn {
    font-size: 0.8rem;
    height: 3.5rem;
    padding: 0 1rem;
  }

  .hero .puzzle-1,
  .hero .puzzle-2,
  .hero .puzzle-3 {
    display: none;
  }
}

/* ====== SECTION WRAPPER ====== */
.section {
  padding: 80px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.especialidades h2 {
  color: #f7931e;
  font-family: Bestoom;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 2.85rem;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.card {
  width: auto;
  height: 30.75rem;
  perspective: 1000px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card-inner .card-front,
.card-inner .card-back {
  height: 450px;
}

.card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  border-radius: 3.75rem;
  background: #f7931e;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.38rem;
  gap: 1.85rem;
}

.card-front .img-wrapper {
  width: 100%;
  min-height: 19.375rem;
  border-radius: 3.75rem 3.75rem 0.625rem 0.625rem;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}


.card-front .img-wrapper img {
  max-height: 10rem;
}

.card-content {
  width: 100%;
  padding: 0 2rem;
  margin-bottom: 1.85rem;
}

.card-front h3 {
  color: #fff;
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-front button {
  background: none;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.card-back {
  background: #f7931e;
  color: white;
  transform: rotateY(180deg);
  font-size: 1rem;
  height: 100%;
  text-align: center;
  justify-content: center;
  padding: 2rem;
}

.card-back h3 {
  font-size: 1.3rem;
}

.especialidades {
  position: relative;
  overflow: visible;
}

.bg-decor {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100vh;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.especialidades.section-bg-active .bg-decor {
  opacity: 1;
  transform: translateX(0);
}


.especialidades .swiper-container-wrapper {
  position: relative;
  overflow: hidden;
}

.especialidades .swiper-button-prev,
.especialidades .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #75c8db;
  cursor: pointer;
}

.especialidades .swiper-button-prev {
  left: 0;
  transform: translateX(-120%);
}

.especialidades .swiper-button-next {
  right: 0;
  transform: translateX(120%);
}

.sobre {
  background-image: url("../img/bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.sobre .section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 5rem;
}

.sobre h2 {
  color: #fff;
  font-family: Bestoom;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
}

.sobre h3 {
  color: #fff;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.sobre p {
  color: #000;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 2rem */
}

.sobre-img .hero-btn {
  display: none;
}

.sobre-img img {
  object-fit: cover;
  width: 464px;
  height: 464px;
  border-radius: 50%;
}

.localizacao {
  /* background-color: #75c8db; */
  background-image: url("../img/wrapper.png");
  background-repeat: repeat-x;
}

.localizacao .section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  background-image: url("../img/vetor.png");
  background-position-x: 200px;
  background-repeat: no-repeat;
  background-position: 275px 280px;
}

.localizacao h2 {
  color: #f7931e;
  font-family: Bestoom;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
}

.localizacao .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.localizacao .text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.localizacao .text-content h4 {
  color: #2f7a8b;
  font-family: Bestoom;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.localizacao .text-content p {
  color: #000;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.96%;
  /* 2.39938rem */
}

.map iframe {
  width: 45rem;
  height: 31rem;
}

.depoimentos {
  background-image: url("../img/vector-2.svg");
  background-repeat: no-repeat;
  background-position: top right;
}

.depoimentos h2 {
  color: #f7931e;
  font-family: Bestoom;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
}

.depoimento-card {
  max-width: 26.5rem;
  max-height: 25.625rem;
  border-radius: 3.125rem;
  background: #75c8db;
  padding: 2rem;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  font-family: Poppins;
  font-size: 1rem;
  color: #333;
  text-align: center;
  height: 25.625rem;
  place-content: center;
}

.depoimento-card p {
  margin-bottom: 1rem;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
}

.depoimento-card span {
  display: block;
  color: #fff;

  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.depoimentos-swiper {
  position: relative;
  padding: 0 3rem;
}

.swiper-button-prev.depoimentos-prev,
.swiper-button-next.depoimentos-next {
  color: #f7931e;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev.depoimentos-prev {
  left: 0;
}

.swiper-button-next.depoimentos-next {
  right: 0;
}

.upper-footer {
  border-radius: 2.5rem 2.5rem 0rem 0rem;
  background: #2f7a8b;
  height: 7rem;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 2rem;
}

.upper-footer .section {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.upper-footer .brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.upper-footer .brand span {
  color: #fff;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.upper-footer .links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.upper-footer .links a {
  color: #fff;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}

.lower-footer {
  width: 100%;
  text-align: center;
  background-color: #272727;
  padding: 1rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

#topBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  display: none;
  background: #222;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
}

#topBtn:hover {
  background: #555;
}

.feed {
  background-image: url("../img/wrapper.png");
  background-repeat: repeat-x;
}

.feed .section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feed h2 {
  color: #f7931e;
  font-family: Bestoom;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: inherit;
}

.feed .feed-swiper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.feed .swiper-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 0.5rem;
}

.feed .swiper-slide {
  flex-shrink: 0;
  width: auto;
}

.feed .post img {
  height: -webkit-fill-available;
  object-fit: cover;
  width: 100%;
  max-width: 27.125rem;
}

.feed .hero-btn {
  background: #bf4e1e;
}

.feed .hero-btn:hover {
  background: #2f7a8b;
}

@media (min-width: 768px) {
  .feed-swiper {
    overflow: visible;
  }

  .feed .swiper-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .feed .swiper-slide {
    width: auto;
    flex: 0 0 200px;
  }

  .feed-pagination {
    display: none;
  }
}

.video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  padding-top: 4rem;
}

.video-overlay h2 {
  color: white;
  font-family: Bestoom;
  font-size: 4rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero .puzzle {
  position: absolute;
  width: 100px;
  z-index: -1;
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
}

.hero .puzzle.enter {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.hero .puzzle-1 {
  top: 20%;
  left: 5%;
}

.hero .puzzle-2 {
  top: 5%;
  right: 15%;
}

.hero .puzzle-3 {
  bottom: 27%;
  left: 30%;
}

.hero.hide-puzzles .puzzle-1 {
  transform: translateX(-200%) rotate(-60deg);
  opacity: 0;
}

.hero.hide-puzzles .puzzle-2 {
  transform: translateY(-150%) rotate(60deg);
  opacity: 0;
}

.hero.hide-puzzles .puzzle-3 {
  transform: translateX(200%) translateY(100%) rotate(90deg);
  opacity: 0;
}

.section .puzzle {
  position: absolute;
  width: 100px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.section .puzzle.puzzle-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.especialidades .puzzle-1 {
  top: 35%;
  left: -10%;
  width: 80px;
}

.especialidades .puzzle-2 {
  bottom: 5%;
  left: 1%;
  width: 50px;
}

.especialidades .puzzle-3 {
  top: 30%;
  right: 5%;
}

.sobre .puzzle-1 {
  top: 0;
  left: 10%;
}

.sobre .puzzle-2 {
  bottom: 5%;
  right: 5%;
}

.sobre .puzzle-3 {
  top: 40%;
  right: 20%;
}

.localizacao .puzzle-1 {
  top: 10%;
  left: 15%;
}

.localizacao .puzzle-2 {
  bottom: 0;
  right: 10%;
}

.localizacao .puzzle-3 {
  top: 20%;
  right: 0;
}

.especialidades,
.sobre,
.localizacao {
  position: relative;
}

@media screen and (max-width: 1220px) {
  .hero {
    background-size: contain;
  }

  .logo img {
    height: 70px;
  }

  .nav-bar ul li a {
    padding: 1rem;
  }

  .localizacao .section {
    background-position: 125px 280px;
  }
}

/* Responsividade: tablets */
@media (max-width: 1024px) {
  .header-container {
    flex-direction: row;
    padding: 1rem;
    text-align: center;
    gap: 1rem;
  }

  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 1rem;
  }

  .nav-bar ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero {
    background-position: center;
    background-size: cover;
    height: auto;
    padding: 4rem 1rem;
    margin-top: 0;
  }

  .hero-content {
    align-items: start;
    text-align: start;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
  }

  .map iframe {
    width: 100%;
    height: 20rem;
  }

  .localizacao .section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-position: center;
    background-size: contain;
  }

  .depoimentos h2,
  .especialidades h2,
  .sobre h2 {
    font-size: 2.5rem;
  }

  .sobre .section {
    flex-direction: column;
    gap: 2rem;
  }

  .video-overlay h2 {
    font-size: 2.5rem;
  }

  .upper-footer .section {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .upper-footer .brand {
    flex-direction: column;
    gap: 1rem;
  }

  .upper-footer .links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Responsividade: celulares */
@media (max-width: 600px) {
  .hero {
    background-image: url("../img/mobile.svg");
  }

  .hero-section {
    min-height: 60vh;
    min-height: 60vh;
    padding: 1rem;
  }

  .logo img {
    height: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-btn {
    font-size: 0.8rem;
    height: 3.5rem;
    width: auto;
    padding: 0 1rem;
  }

  .card,
  .card-front,
  .card-back {
    width: 100%;
    max-height: 22rem;
  }

  .card-front .img-wrapper {
    height: 12rem;
    min-height: 12rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3.75rem 3.75rem 0.625rem 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-front .img-wrapper img {
    max-height: 6rem;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .card-front h3 {
    font-size: 1.4rem;
  }

  .card-front button {
    font-size: 0.9rem;
  }

  .card-back {
    font-size: 0.85rem;
    padding: 1rem;
  }

  .card-front .img-wrapper img {
    max-height: 7rem;
    object-fit: contain;
  }

  .especialidades .swiper-button-prev,
  .especialidades .swiper-button-next {
    display: none;
  }

  .especialidades.section-bg-active .bg-decor {
    width: 12.75rem;
    top: 1rem;
    transform: rotate(0deg);
  }

  .especialidades .puzzle-2 {
    top: 90%;
    left: 0%;
    width: 53px;
  }

  .especialidades .puzzle-1 {
    top: 90%;
    left: 85%;
    width: 53px;
  }

  .especialidades h2 {
    margin-top: 2rem;
  }

  .swiper-container,
  .swiper {
    overflow: visible !important;
  }

  .localizacao .content {
    text-align: start;
    gap: 1rem;
    padding: 0 20px;
  }


  .localizacao .content h3 {
    font-weight: normal;
    margin-bottom: 2rem;
  }

  .localizacao .text-content h4 {
    line-height: 1rem;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
  }

  .localizacao .text-content p {
    font-size: 1.2rem;
  }

  .localizacao .text-content.end {
    margin-top: 2rem;
  }

  .localizacao .section {
    background-position: 100px 280px;
    background-size: 300px;
    padding: 80px 0 0 0;
  }

  .localizacao .map {
    width: 100%;
  }

  .depoimentos {
    padding: 3rem 2rem;
    background-position: 252px -5px;
    background-size: 300px;
  }

  .depoimentos h2 {
    margin-bottom: 2rem;
  }

  .depoimento-card {
    height: auto;
    padding: 3rem 1rem;
  }

  .especialidades h2,
  .depoimentos h2,
  .sobre h2,
  .feed h2 {
    font-size: 2.5rem;
    line-height: normal;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sobre h3 {
    font-size: 1.25rem;
    line-height: normal;
    margin-bottom: 0.5rem;
  }

  .sobre-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .sobre-img {
    display: flex;
    align-items: center;
    flex-flow: column-reverse;
    gap: 1rem;
  }

  .sobre-img img {
    width: 300px;
    height: 300px;
  }

  .sobre-img .hero-btn {
    display: flex;
    background-color: #EAB32C;
  }

  .sobre .section {
    padding: 2.5rem 2rem;
  }

  .sobre {
    background-image: url("../img/mobile-bg.svg");
  }

  .sobre p {
    font-size: 0.9rem;
  }

  .localizacao h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
    margin-top: 2rem;
  }

  .video {
    height: 70vh;
  }

  .video-overlay h2 {
    font-size: 1.8rem;
  }

  .upper-footer {
    height: auto;
  }

  .upper-footer .links {
    text-align: center;
    gap: 2rem;
  }

  .feed .swiper-wrapper {
    display: flex;
    flex-direction: column;
  }

  .feed .swiper-wrapper img {
    object-fit: cover;
    height: 350px;
  }
}


.swiper-pagination {
  all: unset;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.swiper-pagination.especialidades-pagination,
.swiper-pagination.depoimentos-pagination {
  text-align: center;
  margin-top: 2rem;
  position: relative;
}

.especialidades-pagination .swiper-pagination-bullet,
.depoimentos-pagination .swiper-pagination-bullet {
  background: #f7931e;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.especialidades-pagination .swiper-pagination-bullet {
  background: #75c8db !important;
}

.especialidades-pagination .swiper-pagination-bullet-active,
.depoimentos-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #333;
  font-size: 24px;
  cursor: pointer;
}