/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 190;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: "Open Sans", sans-serif;
  --title-font: "Raleway", sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: 0.3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme,
.change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: 50px;
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.section__title1 {
  font-size: 50px;
  color: #24283c;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: 0.4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: "";
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -0.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
  font-size: 30px;
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: 0.5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  margin-top: 20px;
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: 0.3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

.button1 {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: 0.3s;
  margin-left: 30px;
}

.button1:hover {
  background-color: var(--first-color-alt);
}

.button1--flex {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}

.button1--link {
  background: none;
  padding: 0;
}

.button1--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  margin-top: 20px;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: flex-start;
  row-gap: 1rem; 
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 100px;
}

.about__img-two {
  width: 100px;
}

.about__img-one,
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover,
.about__img-two:hover {
  transform: var(--img-scale);
}

.about__caption p {
  text-align: start;
  font-size: 13px;
  color: black; 
}

.about__container.grid {
  display: grid;
  margin-right: 300px;
}

.about__logo-container {
  text-align: center;
  margin-right: 810px;
}

.about__logo {
  width: 400px;
  max-width: 100%;
  height: auto;
  padding-left: 38px;
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title,
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  transition: var(--img-transition);
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one,
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover,
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*=============== PLACES ===============*/
.place__card,
.place__img {
  height: 230px;
}
.place.section {
  background-color: #24283c;
  padding: 5rem 0; /* só para dar respiro interno */
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content,
.place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 0.75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: 0.75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle,
.place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
}
.section__title2 {
  font-size: 50px;
  color: white;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-color: var(--first-color-second);
  padding: 2.5rem 0;
}

.subscribe__title,
.subscribe__description {
  color: var(--white-color);
}

.subscribe__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.subscribe__form {
  background-color: var(--input-color);
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.subscribe__input {
  width: 70%;
  padding-right: 0.5rem;
  background-color: var(--input-color);
  color: var(--text-color);
}

.subscribe__input::placeholder {
  color: var(--text-color);
}

/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: white;
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
  color: white;
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: white;
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy,
.footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: 0.5rem;
  display: flex;
  opacity: 0.9;
  z-index: var(--z-tooltip);
  transition: 0.4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle,
  .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr 0.5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data,
  .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 0.5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr 0.5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: 0.7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card,
  .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container,
  .home__img {
    height: 640px;
  }
}
/* ========== SEÇÃO TÍTULO - SAÚDE PROFISSIONAL ========== */
.Section_titulo_servico {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
  padding: 2rem 1rem;
}

.servicos-saude__titulo {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #24283c;
  margin: 0;
  padding: 10px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(14, 55, 63, 0.1);
  position: relative;
  font-family: "system-ui", -apple-system, sans-serif;
}

/* linha decorativa acima do título */
.servicos-saude__titulo::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0e373f, transparent);
  opacity: 0.25;
}

/* linha principal decorativa */
.servicos-saude__linha {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #0e373f 0%, #1a5a66 50%, #0e373f 100%);
  margin: 20px auto 40px;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(14, 55, 63, 0.15), 0 0 12px rgba(14, 55, 63, 0.08);
  position: relative;
}

/* ponto central da linha */
.servicos-saude__linha::after {
  content: "•";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0e373f;
  font-size: 1.2rem;
  background: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #ffffff, 0 0 8px rgba(14, 55, 63, 0.15);
}

/* pequenas melhorias de responsividade */
@media (max-width: 768px) {
  .servicos-saude__linha {
    width: 80px;
  }

  .servicos-saude__titulo {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
}

/* ========== GRID DE PROCEDIMENTOS MÉDICOS ========== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 80px 30px;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.servicos-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(14, 55, 63, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(14, 55, 63, 0.02) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, rgba(14, 55, 63, 0.01) 0%, transparent 50%);
  pointer-events: none;
}

/* ========== CARDS MÉDICOS PROFISSIONAIS ========== */
.servicos-grid__card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 350px;
  margin: auto;
  text-align: left;
  box-shadow: 0 8px 25px rgba(14, 55, 63, 0.08),
    0 3px 10px rgba(14, 55, 63, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(14, 55, 63, 0.08);

  /* garante que todos fiquem com a mesma altura */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.servicos-grid__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0e373f 0%, #1a5a66 50%, #2a6b79 100%);
  z-index: 2;
}

.servicos-grid__card::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  z-index: 1;
  border-radius: 0 0 20px 20px;
}

.servicos-grid__card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 55, 63, 0.12),
    0 8px 20px rgba(14, 55, 63, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* ========== IMAGEM MÉDICA ========== */
.servicos-grid__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  filter: contrast(1.05) brightness(0.98);
}

.servicos-grid__card:hover .servicos-grid__img {
  transform: scale(1.04);
  filter: contrast(1.1) brightness(1.02) saturate(1.05);
}

.servicos-grid__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    rgba(14, 55, 63, 0.1) 100%
  );
  z-index: 1;
}

/* ========== TÍTULOS MÉDICOS PROFISSIONAIS ========== */
.servicos-grid__titulo {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 24px 24px 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  font-family: "system-ui", -apple-system, sans-serif;
}

.servicos-grid__card:hover .servicos-grid__titulo {
  color: #1a5a66;
  transform: translateY(-2px);
}

.servicos-grid__titulo::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e373f, #1a5a66);
  transition: width 0.4s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(14, 55, 63, 0.3);
}

.servicos-grid__card:hover .servicos-grid__titulo::after {
  width: 60px;
}

/* ========== DESCRIÇÕES MÉDICAS ========== */
.servicos-grid__descricao {
  font-size: 1rem;
  color: #5a6c7d;
  margin: 0 24px 28px;
  line-height: 1.6;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;

  /* ocupa espaço restante para alinhar cards */
  flex-grow: 1;
}

.servicos-grid__card:hover .servicos-grid__descricao {
  color: #3d4852;
  transform: translateY(-1px);
}

/* ========== RESPONSIVIDADE ========== */
@media screen and (max-width: 768px) {
  .Section_titulo_servico {
    margin-top: 60px;
    padding: 1.5rem 0;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 60px 20px;
  }

  .servicos-grid__card {
    max-width: 100%;
    border-radius: 16px;
  }

  .servicos-grid__img {
    height: 220px;
  }

  .servicos-grid__titulo {
    font-size: 1.2rem;
    margin: 20px 20px 10px;
  }

  .servicos-grid__descricao {
    font-size: 0.95rem;
    margin: 0 20px 24px;
  }
}

@media screen and (max-width: 480px) {
  .servicos-saude__titulo {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .servicos-grid {
    padding: 40px 15px;
    gap: 1.5rem;
  }

  .servicos-grid__card {
    border-radius: 12px;
  }

  .servicos-grid__img {
    height: 200px;
  }

  .servicos-grid__titulo {
    font-size: 1.1rem;
    margin: 16px 16px 8px;
  }

  .servicos-grid__descricao {
    font-size: 0.9rem;
    margin: 0 16px 20px;
  }

  .servicos-saude__linha {
    width: 80px;
    margin-bottom: 30px;
  }
}

/* ========== ANIMAÇÕES MÉDICAS PROFISSIONAIS ========== */
@keyframes fadeInUpMedical {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(14, 55, 63, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(14, 55, 63, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(14, 55, 63, 0.3);
  }
}

.servicos-grid__card {
  animation: fadeInUpMedical 0.7s ease forwards;
  opacity: 0;
}

.servicos-grid__card:nth-child(1) {
  animation-delay: 0.1s;
}

.servicos-grid__card:nth-child(2) {
  animation-delay: 0.25s;
}

.servicos-grid__card:nth-child(3) {
  animation-delay: 0.4s;
}

.servicos-grid__card:nth-child(4) {
  animation-delay: 0.55s;
}

.servicos-saude__linha {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ========== EFEITOS ESPECIAIS PARA ÁREA DA SAÚDE ========== */
.servicos-grid__card:active {
  transform: translateY(-8px) scale(0.98);
  transition: transform 0.2s ease;
}

.servicos-saude__titulo:hover {
  color: #1a5a66;
  transition: color 0.3s ease;
  text-shadow: 0 2px 12px rgba(14, 55, 63, 0.2);
}

.servicos-saude__linha:hover {
  transform: scale(1.08);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 55, 63, 0.3), 0 0 25px rgba(14, 55, 63, 0.2);
}

/* ========== CONFIANÇA MÉDICA ========== */
.servicos-grid__card:hover {
  cursor: pointer;
}

.servicos-grid__card:hover .servicos-grid__img {
  position: relative;
}

.servicos-grid__card:hover .servicos-grid__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 55, 63, 0.05), transparent);
  z-index: 2;
}
/* ===== SEÇÃO CONVÊNIOS ===== */
.convenios {
  background-color: #24283c; /* Azul no padrão da imagem */
  text-align: center;
  padding: 60px 20px;
}

.convenios__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--title-font);
}

.convenios__descricao {
  font-size: 1rem;
  color: #e5e5e5;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* ===== LOGOS ===== */
.convenios__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.convenios__logos img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.convenios__logos img:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVIDADE ===== */
@media screen and (max-width: 768px) {
  .convenios__logos {
    gap: 20px;
  }
  .convenios__descricao {
    font-size: 0.95rem;
  }
}
/* Container geral da seção */
.secoes {
  background-color: #f8f9fa;
  padding: 50px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.secoes .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
}

.secoes h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #24283c;
  padding-top: 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(14, 55, 63, 0.1);
  position: relative;
  font-family: "system-ui", -apple-system, sans-serif;
}

/* Card individual - estilo atualizado */
.secao__item {

  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 400px;
  max-width: 500px;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
}

.secao__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

/* Ícones com cores específicas */
.secao__icone {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #000;
  
}

.secao__icone.quadrado {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #7bc4a4;
  position: relative;
}

.secao__icone.quadrado::after {
  content: "💬";
  font-size: 24px;
  color: white;
}

.secao__icone.circulo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #7bc4a4;
  position: relative;
}

.secao__icone.circulo::after {
  content: "✚";
  font-size: 24px;
  color: white;
  font-weight: bold;
}

/* Container do conteúdo textual */
.secao__conteudo {
  width: 100%;
}

/* Título e descrição */
.secao__titulo {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c3e50;
  line-height: 1.3;
}

.secao__descricao {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .secoes .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .secao__item {
    max-width: 90%;
    margin: 10px 0;
  }
}
.whatsapp-section {
  background-color: var(--body-color);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.whatsapp-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(36, 40, 60, 0.05) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.whatsapp-container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
  text-align: center;
  position: relative;
  z-index: 2;
}

.whatsapp__titulo {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: var(--mb-0-5);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(14, 55, 63, 0.1);
  position: relative;
  font-family: var(--title-font);
}

.whatsapp__titulo span {
  color: #24283c;
  position: relative;
}

.whatsapp__titulo span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;

  border-radius: 2px;
}




.whatsapp__subtitulo {
  font-size: var(--h3-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-2-5);
  font-weight: var(--font-medium);
}
.whatsapp-section {
  background-color: var(--body-color);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.whatsapp-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(36, 40, 60, 0.05) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.whatsapp-container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
  text-align: center;
  position: relative;
  z-index: 2;
}

.whatsapp__titulo {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color:#24283c;
  margin-bottom: var(--mb-0-5);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(14, 55, 63, 0.1);
  position: relative;
  font-family: var(--title-font);
}

.whatsapp__titulo span {
  color: #24283c;
  position: relative;
}

.whatsapp__titulo span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;

  border-radius: 2px;
}

.whatsapp__subtitulo {
  font-size: var(--h3-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-2-5);
  font-weight: var(--font-medium);
}

/*=============== BENEFITS GRID ===============*/
.whatsapp__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: var(--mb-2-5) auto;
  max-width: 900px;
}

.benefit__card {
  background: var(--white-color);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(36, 40, 60, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #24283c;
  position: relative;
  text-align: center;
}

.benefit__card::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, var(--white-color) 0%, #c7c3c2 10%);
  z-index: -1;
  border-radius: 0 0 12px 12px;
  opacity: 0.3;
}

.benefit__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(36, 40, 60, 0.15);
}

.benefit__icon {
  width: 60px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  font-size: 24px;
  color: var(--white-color);
}

.benefit__titulo {
  font-size: 22px;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--mb-0-5);
  font-family: var(--title-font);
}

.benefit__descricao {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}

/*=============== WHATSAPP BUTTON ===============*/
.whatsapp__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #25d366, #1ebe5c);
  color: var(--white-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
  margin: var(--mb-2) 0;
}

.whatsapp__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.whatsapp__btn:hover::before {
  left: 100%;
}

.whatsapp__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(45deg, #1ebe5c, #25d366);
}

.whatsapp__btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/*=============== CONTACT INFO ===============*/
.whatsapp__info {
  background: rgba(199, 195, 194, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-top: var(--mb-2);
  box-shadow: 0 5px 20px rgba(36, 40, 60, 0.08);
  border: 1px solid rgba(36, 40, 60, 0.1);
}

.whatsapp__info p {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: var(--mb-0-25);
}

.whatsapp__phone {
  font-weight: var(--font-semi-bold);
  color: #25d366;
  font-size: var(--h3-font-size);
}

/*=============== MEDIA QUERIES ===============*/
@media screen and (min-width: 568px) {
  .whatsapp__benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .whatsapp-container {
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp__benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .whatsapp-section {
    padding: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .whatsapp-container {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1200px) {
  .whatsapp-container {
    max-width: 1024px;
  }
}

@media screen and (max-width: 767px) {
  .whatsapp__benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit__card {
    padding: 1.5rem 1rem;
  }

  .whatsapp__btn {
    padding: 1rem 2rem;
    font-size: var(--small-font-size);
  }

  .whatsapp-section {
    padding: 4rem 0 2rem;
  }
}

@media screen and (max-width: 340px) {
  .whatsapp__benefits {
    gap: 1rem;
  }

  .benefit__card {
    padding: 1.2rem 0.8rem;
  }

  .whatsapp__info {
    padding: 1rem;
  }
}

/*=============== ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(36, 40, 60, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(36, 40, 60, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(36, 40, 60, 0.3);
  }
}

.benefit__card {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

.benefit__card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit__card:nth-child(2) {
  animation-delay: 0.25s;
}

.benefit__card:nth-child(3) {
  animation-delay: 0.4s;
}

.whatsapp__linha {
  animation: pulseGlow 3s ease-in-out infinite;
}
.contato-section {
    padding: 60px 10%;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #24283c;
}

.contato-section h2 {
    font-size:35px;
    color: #24283c;
    margin-bottom: 10px;
}

.contato-section h2 span {
    color: #24283c;
    font-size: 40px;
}

.descricao_contato {
 font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: black;
  margin-top: 30px;
  margin-bottom: 50px;
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mapa {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.info-contato {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.info-contato h3 {
  margin-top: 10px;
    margin-bottom: 10px;
    color: #24283c;
    font-size: 25px;
}

.info-contato p {
    margin-top: 20px;
    color: black;
    font-size: 16px;
}
.info-contato p span{
  color: #000;

}

.redes-sociais {
    margin-top: 10px;
}

.redes-sociais a img {
    width: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.redes-sociais a img:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        align-items: center;
    }
    .info-contato {
        text-align: center;
    }
}
.avaliacoes-section {
  background-color: #24283c;
  padding: 50px 20px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

.avaliacoes-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.descricao {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #8e9bac;
  margin-top: 30px;
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin: 0 10px;
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.perfil {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.perfil img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.perfil h3 {
  margin: 0;
  font-size: 1rem;
}

.perfil span {
  font-size: 0.85rem;
  color: #777;
}

.estrelas {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.texto {
  font-size: 0.95rem;
  line-height: 1.5;
}

.dots {
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #fff;
}
.linha_cinza{
  height: 8px;
  background: #8e9bac;
}
.linha_cinzaFina{
  height: 3px;
  background: #8e9bac;
}
.espaco{
  margin-top: 50px;
}
/* Responsivo */
@media (max-width: 768px) {
  .card {
    max-width: 90%;
  }
}/* Botão flutuante WhatsApp */
.whatsapp-button {
  position: fixed;
  top: 90%;
  right: 0;
  transform: translateY(-50%);
  background-color: #25d366;
  color: #fff;
  font-size: 1.2rem; /* aumenta o ícone */
  padding: 10px 20px; /* aumenta a área do botão */
  border-radius: 30px 0 0 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}


