/* componentes */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
}

body.hidden-scrolling {
  overflow-y: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  font-size: 0.9rem;
  color: #424242;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.bg-Prezecor {
  background-color: #3477e2;
}

.bg-destaque::before {
  content: "";
  width: 100%;
  height: 600px;
  background-color: #3477e2;
  position: absolute;
  top: 40px;
  border-radius: 1rem 1rem 0 0;
  z-index: -1;
}

.img-cta > img {
  height: 350px;
  object-position: center;
  object-fit: cover;
}

.subtitle small {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1f497d;
  position: relative;
}
.subtitle h2 {
  font-size: 3.3rem;
  font-weight: 700;
  color: #1f497d;
}
.subtitle h2 span {
  color: #3477e2;
}
@media (max-width: 767px) {
  .subtitle h2 {
    font-size: 1.8rem;
  }
}

.subtitle-white small {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  position: relative;
}
.subtitle-white h2,
.subtitle-white h3 {
  font-size: 3.3rem;
  font-weight: 700;
  color: #ffffff;
}
.subtitle-white h2 span,
.subtitle-white h3 span {
  color: #ffffff;
}
@media (max-width: 767px) {
  .subtitle-white h2,
  .subtitle-white h3 {
    font-size: 1.8rem;
  }
}
.subtitle-white p {
  color: #ffffff;
}

@media (max-width: 767px) {
  .o1 {
    order: 1;
  }
  .o2 {
    order: 2;
  }
}
@media (max-width: 767px) {
  .centraliza-responsivo {
    text-align: center;
  }
}

.mapsite i {
  color: #3477e2;
}
.mapsite-link {
  display: inline-block;
  color: #424242;
  transition: 0.5s;
  line-height: 2;
}
.mapsite-link::first-letter {
  text-transform: uppercase;
}
.mapsite-link:hover {
  color: #1f497d;
}

.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}
.header .header-info {
  display: block;
  background: #1f497d;
  padding: 8px;
}
@media (max-width: 767px) {
  .header .header-info {
    display: none;
  }
}
.header .header-info .social-item {
  background: #ffffff;
  margin-right: 16px;
  color: #1f497d;
  transition: 0.5s;
  padding: 5px;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.header .header-info .social-item i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-info .contact-link {
  font-size: 0.8rem;
  color: #ffffff;
  margin-right: 32px;
}
.header .header-info .contact-link i {
  margin-right: 5px;
}
.header .header-main {
  position: fixed;
  min-width: 80%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: 0.3s ease-in-out;
}
.header .header-main.scrolled {
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.header .nav-menu {
  padding: 0 15px;
}
.header .menu .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu .menu-item a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #424242;
  transition: all 0.3s ease;
}
.header .menu .menu-item a:hover {
  color: #3477e2;
}
.header .menu .menu-item a.btn-header {
  display: block;
  padding: 12px 25px;
  font-size: 0.9rem;
  background: #1f497d;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.header .menu .menu-item a.btn-header i {
  margin-left: 8px;
}
.header .menu .menu-item a.btn-header:hover {
  background: rgba(52, 119, 226, 0.8);
}
.header .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 800px;
  position: absolute;
  left: -300px;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.header .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0;
}
.header .menu .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #424242;
  transition: all 0.3s ease;
}
.header .menu .menu-item .sub-menu .menu-item a:hover {
  color: #ffffff;
  background-color: #1f497d;
}
.header .menu .menu-item-has-children:hover .sub-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 2px;
  width: 30px;
  background-color: #003ea4;
  position: relative;
}
.header .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003ea4;
  box-sizing: border-box;
  top: -7px;
}
.header .open-nav-menu span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003ea4;
  box-sizing: border-box;
  top: 7px;
}
.header .close-nav-menu {
  width: 100%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: end;
  padding: 15px;
}
.header .close-nav-menu i {
  color: #ffffff;
  font-size: 22px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .header .header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    min-width: 100%;
    border-radius: 0 0 0.5rem 0.5rem !important;
  }
  .header .header-main.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #1f497d;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu .menu-item a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 96, 255, 0.14);
  }
  .header .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 96, 255, 0.14);
  }
  .header .menu .menu-item-has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu .menu-item-has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}
.img-logo {
  max-width: 150px;
}
@media (max-width: 991px) {
  .img-logo {
    max-width: 100px;
  }
}

.container-menu {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-menu {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-menu {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-menu {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-menu {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-menu {
    max-width: 1320px;
  }
}
.columns3 {
  columns: 3;
}

.carousel {
  max-height: 650px;
}
.carousel .carousel-inner,
.carousel .carousel-item {
  max-height: inherit;
}
.carousel .item-dark picture img {
  filter: brightness(0.4);
  object-fit: cover;
  object-position: center;
}

.carousel .banner-coleta picture img {
  object-position: 50% 20%;
  min-height: 650px;
  height: 100%;
}
@media (max-width: 991px) {
  .carousel .banner-coleta picture img {
    object-position: 50% 15%;
  }
}
@media (max-width: 767px) {
  .carousel .banner-coleta picture img {
    object-position: 50% 10%;
  }
}

.carousel .banner-endobariatrica picture img {
  object-position: center;
  min-height: 650px;
  height: 100%;
}
@media (max-width: 991px) {
  .carousel .banner-endobariatrica picture img {
    object-position: center;
  }
}
@media (max-width: 767px) {
  .carousel .banner-endobariatrica picture img {
    object-position: center;
  }
}

.text-banner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
}
.text-banner small {
  color: #ffffff;
  text-shadow: 0 0 10px #504a4a;
  position: relative;
  letter-spacing: 1px;
}
.text-banner small::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #3477e2;
  right: -50px;
  top: 50%;
}
.text-banner h1,
.text-banner h2 {
  font-size: 4.6em;
  font-weight: 700;
  text-align: left;
}
.text-banner h1 span,
.text-banner h2 span {
  color: #1ba5c4;
  text-shadow: 0 0 10px #504a4a;
}
@media (max-width: 767px) {
  .text-banner h1,
  .text-banner h2 {
    font-size: 2.5em;
  }
}
.text-banner p {
  color: #ffffff;
  text-align: left;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .text-banner p {
    font-size: 0.8rem;
  }
}
.text-banner a {
  display: inline-block;
  background: #ffffff;
  color: #1f497d;
  padding: 13px 50px;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: 0.3s ease-in;
  font-weight: 600;
}
.text-banner a i {
  margin-left: 16px;
}
.text-banner a:hover {
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s ease-out;
}
@media (max-width: 767px) {
  .text-banner a {
    padding: 13px 30px;
    font-size: 0.8rem;
  }
}

.most-wanted .img-most-wanted {
  overflow: hidden;
}
.most-wanted .img-most-wanted img {
  max-height: 700px;
  object-position: center;
  object-fit: cover;
}

.about {
  background-image: url("../img/bg-home.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-blend-mode: soft-light;
  background-size: cover;
}
.about p {
  color: #ffffff;
}
.about .about-destaque {
  position: relative;
}
.about .about-destaque p {
  font-weight: 500;
  color: #ffffff;
  margin-left: 2%;
}
.about .about-destaque::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #1f497d;
}
.about .subtitle small {
  color: #ffffff;
}
.about .subtitle h2,
.about .subtitle h3 {
  color: #ffffff;
}
.about .subtitle h2 span,
.about .subtitle h3 span {
  color: #ffffff;
  text-decoration-line: underline;
  text-decoration-color: #1f497d;
}
.about .btn-one {
  background: #ffffff;
  color: #1f497d;
  font-weight: 600;
}
.about .btn-one:hover {
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s ease-out;
}

.btn-one {
  display: inline-block;
  margin-top: 8px;
  background: #1f497d;
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 8px;
  transition: 0.3s ease-in;
  text-align: center;
}
.btn-one i {
  margin-left: 5px;
}
.btn-one:hover {
  background: #3477e2;
  transition: 0.3s ease-out;
}

.single_service {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center !important;
  overflow: hidden;
  border-radius: 0.375rem;
}
.single_service .service_hover {
  text-align: center;
  padding: 80px 0 80px 0;
  background: rgba(255, 255, 255, 0.8352941176);
  transition: 0.5s;
  position: relative;
}
.single_service .service_hover h2 {
  font-size: 1.3rem;
  color: #1f497d;
  margin-top: 20px;
  margin-bottom: 0;
}
.single_service .service_hover h3 {
  font-size: 1.3rem;
  color: #1f497d;
  margin-bottom: 0;
}
.single_service .service_hover .hover_content {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 100%;
  background: #1f497d;
  transform: translateY(40%);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.single_service .service_hover .hover_content .hover_content_inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 54px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_service .service_hover .hover_content .hover_content_inner {
    padding: 0 10px;
  }
}
.single_service .service_hover .hover_content .hover_content_inner h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.single_service .service_hover .hover_content .hover_content_inner h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.single_service .service_hover .hover_content .hover_content_inner p {
  font-size: 1rem;
  color: #ffffff;
}
.single_service .service_hover .hover_content .hover_content_inner a {
  color: #ffffff;
}
.single_service.bg-procedure-001 {
  background-image: url("../img/exames/ultrassom/1.jpg");
}
.single_service.bg-procedure-002 {
  background-image: url("../img/exames/endoscopia/1.jpg");
}
.single_service.bg-procedure-003 {
  background-image: url("../img/exames/exames.jpg");
}
.single_service.bg-procedure-004 {
  background-image: url("../img/exames/exames.jpg");
}
.single_service.bg-procedure-005 {
  background-image: url("../img/exames/exames.jpg");
}
.single_service.bg-procedure-006 {
  background-image: url("../img/exames/exames.jpg");
}
.single_service.bg-procedure-007 {
  background-image: url("../img/exames/exames.jpg");
}
.single_service.bg-procedure-008 {
  background-image: url("../img/exames/exames.jpg");
}
.single_service:hover {
  background-position: top;
}
.single_service:hover .hover_content {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.single_service:hover .service_hover {
  background: rgba(0, 0, 0, 0.5);
}

.mini-cards .card {
  transition: 0.2s ease-out;
  height: 100%;
}
.mini-cards .card:hover {
  transition: 0.2s ease-in;
  transform: scale(0.99);
}
.mini-cards .card p.card-text {
  margin-top: 1rem;
}

.convenio-container .single_convenio {
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
}
.convenio-container .single_convenio .convenio-img {
  width: 100%;
  height: 110px;
}
.convenio-container .single_convenio .convenio-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.2s ease-out;
}
.convenio-container .single_convenio .convenio-img:hover img {
  transition: 0.2s ease-in;
  transform: scale(1.04);
}

.card-service {
  background-color: #ffffff;
  border-radius: 8px;
  transition: 0.3s;
}
.card-service img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  position: relative;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.card-service .content {
  position: relative;
  background: rgba(204, 221, 255, 0.368627451);
}
.card-service .content .icon-service {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
}
.card-service .content .icon-service i {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f497d;
  color: #ffffff;
  font-size: 36px;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  border: 15px solid #ffffff;
}
.card-service .content .text-service {
  padding: 20px;
  position: relative;
  text-align: center;
}
.card-service .content .text-service h3 {
  color: #1e1e1e;
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 40px;
  min-height: 54px;
}
.card-service .content .text-service p {
  font-weight: 300;
  min-height: 93px;
}
.card-service .content .text-service span {
  border: none;
  display: block;
  background: transparent;
  color: #0d4fd1;
  margin: 0 auto;
  font-weight: 600;
}
.card-service .content .text-service span i {
  margin-left: 8px;
}
.card-service:hover {
  background: #1f497d;
}
.card-service:hover .content .text-service h3 {
  color: #ffffff;
}
.card-service:hover .content .text-service p {
  color: #e1e1e1;
}
.card-service:hover .content .text-service span {
  color: #ffffff;
}

.subtitle small {
  color: #1f497d;
}
.subtitle h2,
.subtitle h3 {
  color: #1f497d;
}
.subtitle h2 span,
.subtitle h3 span {
  color: #3477e2;
}

.service-destaque {
  position: relative;
}
.service-destaque p {
  font-weight: 500;
  color: #000;
  margin-left: 2%;
}
.service-destaque::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #1f497d;
}

ul.service-list li {
  margin-bottom: 1rem;
}
ul.service-list li i {
  color: #1f497d;
}

.icon {
  color: #1f497d;
  margin-right: 8px;
}

.img-service {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img-service img {
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.feedback-area {
  background: #3477e2;
  position: relative;
  display: block;
  overflow: hidden;
}
.feedback-area .before-one {
  position: absolute;
  width: 250px;
  height: 250px;
  left: -120px;
  top: -120px;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.18);
  background: #1f497d;
}
@media (max-width: 767px) {
  .feedback-area .before-one {
    width: 200px;
    height: 200px;
    top: -90px;
  }
}
.feedback-area .subtitle small {
  color: #ffffff;
}
.feedback-area .subtitle h2 span {
  color: #ffffff;
}
@media (max-width: 991px) {
  .feedback-area .subtitle {
    text-align: center;
  }
}
.feedback-area .card-feedback {
  padding: 10px;
}
.feedback-area .card-feedback .text-feedback {
  background: #fff;
  padding: 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  right: -10px;
}
.feedback-area .card-feedback .text-feedback p {
  font-size: 0.8rem;
  color: #1f497d;
}
.feedback-area .card-feedback .img-feedback {
  margin-top: 8px;
  margin-left: -24px;
}
@media (max-width: 991px) {
  .feedback-area .card-feedback .img-feedback {
    margin-left: -16px;
  }
}
.feedback-area .card-feedback .img-feedback img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.feedback-area .card-feedback .img-feedback span {
  color: #ffffff;
}

.list-contact li {
  line-height: 2;
  color: #1f497d;
}
.list-contact li i {
  color: #3477e2;
  margin-right: 8px;
}

.form-contact .form-group {
  margin-bottom: 30px;
}
.form-contact .form-control {
  border: 1px solid #e5e6e9;
  border-radius: 0.4rem;
  height: 48px;
  padding-left: 18px;
  font-size: 0.8rem;
  background: transparent;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
}
.form-contact .button-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1f497d;
  border: none;
  width: 100%;
}
.form-contact .button-form .text {
  padding: 0 15px;
}
.form-contact .button-form .text p {
  color: #ffffff;
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.form-contact .button-form .icon-bg {
  display: flex;
  background: #3477e2;
  height: 100%;
  padding: 20px 20px;
}
.form-contact .button-form .icon-bg i {
  color: #ffffff;
  font-size: 23px;
}

.contact-us {
  display: flex;
  margin-bottom: 30px;
}
.contact-us .icon-contact {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .icon-contact i {
  font-size: 22px;
  color: #1f497d;
}

.text-contact {
  margin-left: 20px;
}
.text-contact h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.text-contact p {
  color: #ffffff;
}

footer .bg-footer {
  background-color: #3477e2;
}
footer .footer-top {
  padding-top: 100px;
  padding-bottom: 50px;
}
footer .footer-bottom {
  border-top: 1px solid #ffffff;
  padding-bottom: 50px;
  padding-top: 30px;
}
footer .footer-bottom p {
  color: #ffffff;
}
footer .info-footer p {
  font-size: 0.9em;
  color: #ffffff;
}
footer .title-footer h3 {
  color: #ffffff;
  font-size: 1.3rem;
  position: relative;
  bottom: 8px;
}
footer .title-footer h3::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #ffffff;
  bottom: -5px;
}
footer .footer-itens ul li {
  line-height: 2;
  font-size: 1rem;
}
footer .footer-itens ul li a {
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: 0.3s;
}
footer .footer-itens ul li a i {
  color: #ffffff;
  font-size: 10px;
  margin-right: 8px;
  transform: rotate(180deg);
}
footer .footer-itens ul li a:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  footer .footer-itens ul li a {
    justify-content: center;
    text-align: center;
  }
  footer .footer-itens ul li a i {
    display: none;
  }
}
footer .footer-contact ul li {
  line-height: 2;
  font-size: 1rem;
}
footer .footer-contact ul li a {
  color: #ffffff;
  transition: 0.3s;
}
footer .footer-contact ul li a i {
  color: #ffffff;
  margin-right: 8px;
  font-size: 15px;
}
footer .footer-contact ul li a:hover {
  opacity: 0.9;
}

.back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3477e2;
  height: 50px;
  width: 50px;
  right: 31px;
  bottom: 18px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
}
.back-top i {
  color: #ffffff;
}

.lgpd {
  width: 30%;
  background: rgb(255, 255, 255);
  position: fixed;
  bottom: 0;
  padding: 15px;
  margin-left: 10px;
  border-radius: 8px;
  z-index: 99999999999999;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
}
@media (max-width: 767px) {
  .lgpd {
    width: 90%;
  }
}
.lgpd .lgpd-txt span {
  display: block;
  margin-bottom: 8px;
  color: #212529;
  font-weight: 700;
  font-size: 18px;
}
.lgpd .lgpd-txt span i {
  margin-right: 8px;
}
.lgpd .lgpd-txt p {
  color: #424242;
  font-size: 0.8rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .lgpd .lgpd-txt p {
    font-size: 11px;
  }
}
.lgpd .lgpd-txt a {
  color: #3477e2;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .lgpd .lgpd-txt {
    display: block;
  }
}
.lgpd .lgpd-button {
  display: flex;
  justify-content: end;
  margin-top: 8px;
}
.lgpd .lgpd-button button {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #3477e2;
  padding: 10px 15px;
  font-size: 0.8rem;
  color: #ffffff;
  width: 100px;
  height: 35px;
  margin-left: 24px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .lgpd .lgpd-button button {
    font-size: 11px;
    margin-left: 0;
    margin-top: 10px;
  }
}

.breadcrumb {
  display: block;
  background-image: url(../img/bg-home.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #1f497d;
  background-blend-mode: hard-light;
}

.breadcrumb-height {
  height: 300px;
}

.bread-overly {
  position: relative;
  z-index: 1;
}
.bread-overly::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.breadcrumb_iner {
  padding: 150px 0 0 0;
  text-align: center;
}
.breadcrumb_iner .breadcrumb_iner_item h1 {
  color: #ffffff;
  font-size: 3.3rem;
}
@media (max-width: 767px) {
  .breadcrumb_iner .breadcrumb_iner_item h1 {
    font-size: 2.5em;
  }
}
.breadcrumb_iner .breadcrumb_iner_item p,
.breadcrumb_iner .breadcrumb_iner_item a {
  color: #ffffff;
  font-size: 0.9rem;
}
.breadcrumb_iner .breadcrumb_iner_item p i,
.breadcrumb_iner .breadcrumb_iner_item a i {
  color: #3477e2;
  font-size: 0.7rem;
}

.count-area {
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(9, 9, 121) 35%, rgb(0, 212, 255) 100%);
}
.count-area .count-card {
  text-align: center;
}
.count-area .count-card span {
  display: block;
}
.count-area .count-card .counter {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
}
.count-area .count-card .text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 100;
}

.section-unidades .card-unidade {
  position: relative;
  height: 450px;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: 0.3s ease-in;
}
.section-unidades .card-unidade:hover img {
  transform: scale(1.05);
}
.section-unidades .card-unidade img {
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-out;
}
.section-unidades .card-unidade .card-unidade-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: -webkit-fill-available;
  height: 200px;
  background-color: #ffffff;
  border-radius: 0.6rem;
  margin: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-unidades .card-unidade .card-unidade-content .title h3 {
  font-size: 1.5rem;
}
.section-unidades .card-unidade .card-unidade-content .title h3 span {
  font-size: 1.1rem;
  color: #1f497d;
}
.section-unidades .card-unidade .card-unidade-content .title p {
  font-size: 0.8rem;
}
.section-unidades .card-unidade .card-unidade-content .links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}
.section-unidades .unidades-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
  border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-nav {
    gap: 8px;
    padding: 15px 0;
  }
}
.section-unidades .unidades-tabs-nav .tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff;
  color: #424242;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-nav .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.section-unidades .unidades-tabs-nav .tab-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-nav .tab-btn i {
    font-size: 14px;
  }
}
.section-unidades .unidades-tabs-nav .tab-btn:hover {
  background: rgb(252.8125, 253.5344827586, 254.6875);
  border-color: #3477e2;
  color: #3477e2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 119, 226, 0.15);
}
.section-unidades .unidades-tabs-nav .tab-btn.active {
  background: #3477e2;
  color: #ffffff;
  border-color: #3477e2;
  box-shadow: 0 4px 15px rgba(52, 119, 226, 0.3);
}
.section-unidades .unidades-tabs-nav .tab-btn.active i {
  transform: scale(1.1);
}
.section-unidades .unidades-tabs-content {
  position: relative;
  min-height: 400px;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content {
    min-height: 300px;
  }
}
.section-unidades .unidades-tabs-content .tab-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  animation: fadeOut 0.3s ease;
}
.section-unidades .unidades-tabs-content .tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  animation: fadeIn 0.4s ease;
}
.section-unidades .unidades-tabs-content .unidade-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-image {
    margin-bottom: 20px;
  }
}
.section-unidades .unidades-tabs-content .unidade-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.section-unidades .unidades-tabs-content .unidade-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-image img {
    height: 250px;
  }
}
.section-unidades .unidades-tabs-content .unidade-image img:hover {
  transform: scale(1.05);
}
.section-unidades .unidades-tabs-content .unidade-info {
  padding: 20px;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info {
    padding: 10px 0;
  }
}
.section-unidades .unidades-tabs-content .unidade-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f497d;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.section-unidades .unidades-tabs-content .unidade-info h3 span {
  font-size: 1.2rem;
  color: #3477e2;
  font-weight: 400;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info h3 span {
    font-size: 1rem;
  }
}
.section-unidades .unidades-tabs-content .unidade-info .address {
  font-size: 1.1rem;
  color: #424242;
  margin-bottom: 30px;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info .address {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.section-unidades .unidades-tabs-content .unidade-info .address i {
  color: #3477e2;
  font-size: 1.2rem;
  margin-top: 4px;
}
.section-unidades .unidades-tabs-content .unidade-info .phone {
  font-size: 1.1rem;
  color: #424242;
  margin-bottom: 30px;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info .phone {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.section-unidades .unidades-tabs-content .unidade-info .phone i {
  color: #3477e2;
  font-size: 1.2rem;
  margin-top: 4px;
}
.section-unidades .unidades-tabs-content .unidade-info .unidade-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info .unidade-actions {
    gap: 10px;
  }
}
.section-unidades .unidades-tabs-content .unidade-info .unidade-actions a.btn-one {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .section-unidades .unidades-tabs-content .unidade-info .unidade-actions a.btn-one {
    padding: 12px 20px;
    font-size: 14px;
    flex: 1 1 100%;
  }
}
.section-unidades .unidades-tabs-content .unidade-info .unidade-actions a.btn-one:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 119, 226, 0.3);
}
.section-unidades .unidades-tabs-content .unidade-info .unidade-actions a.btn-one.btn-outline {
  background: transparent;
  border: 2px solid #3477e2;
  color: #3477e2;
}
.section-unidades .unidades-tabs-content .unidade-info .unidade-actions a.btn-one.btn-outline:hover {
  background: #3477e2;
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.btn-unidades {
  display: inline-block;
  margin-top: 8px;
  background: #3477e2;
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 8px;
  transition: 0.3s ease-in;
  text-align: center;
}
.btn-unidades i {
  margin-left: 5px;
}
.btn-unidades:hover {
  background: #1f497d;
  transition: 0.3s ease-out;
}

.exames-icons-section {
  background: #f8f9fa;
}
.exames-icons-section .subtitle h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f497d;
}
.exames-icons-section .subtitle h2 span {
  color: #3477e2;
}
.exames-icons-section .subtitle p {
  color: #666;
  font-size: 1.1rem;
}

.exame-icon-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exame-icon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.exame-icon-card .icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1f497d 0%, #3477e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.exame-icon-card .icon-wrapper img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.exame-icon-card .icon-wrapper i {
  font-size: 3rem;
  color: white;
}
.exame-icon-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f497d;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exame-icon-card .btn-exame {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.exame-icon-card .btn-exame i {
  font-size: 1.2rem;
}
.exame-icon-card .btn-exame:hover {
  background: linear-gradient(135deg, #1DA851 0%, #25D366 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

@media (max-width: 991px) {
  .exames-icons-section .subtitle h2 {
    font-size: 2rem;
  }
  .exame-icon-card {
    padding: 1.5rem 1rem;
  }
  .exame-icon-card .icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .exame-icon-card .icon-wrapper img {
    width: 60px;
    height: 60px;
  }
  .exame-icon-card .icon-wrapper i {
    font-size: 2.5rem;
  }
  .exame-icon-card h3 {
    font-size: 1.1rem;
    min-height: 2.5rem;
  }
}
@media (max-width: 575px) {
  .exames-icons-section {
    padding: 3rem 0;
  }
  .exames-icons-section .subtitle h2 {
    font-size: 1.8rem;
  }
  .exames-icons-section .subtitle p {
    font-size: 1rem;
  }
  .exame-icon-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
  .exame-icon-card h3 {
    font-size: 1rem;
  }
  .exame-icon-card .btn-exame {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
.exames-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.exames-cta-section .exames-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f497d;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .exames-cta-section .exames-cta-title {
    font-size: 1.4rem;
  }
}
.exames-cta-section .exames-cta-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c8102e;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .exames-cta-section .exames-cta-subtitle {
    font-size: 1.1rem;
  }
}
.exames-cta-section .exames-cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #c8102e;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .exames-cta-section .exames-cta-text {
    font-size: 1rem;
  }
}
.exames-cta-section .btn-exame-cta {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.exames-cta-section .btn-exame-cta i {
  font-size: 1.5rem;
}
.exames-cta-section .btn-exame-cta:hover {
  background: linear-gradient(135deg, #1DA851 0%, #25D366 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}
@media (max-width: 768px) {
  .exames-cta-section .btn-exame-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .exames-cta-section .btn-exame-cta i {
    font-size: 1.3rem;
  }
}


.carousel-caption.text-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .carousel-caption.text-banner h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .carousel-caption.text-banner h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.carousel-caption.text-banner small {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .carousel-caption.text-banner small {
    font-size: 0.8rem;
  }
}

.fz-2 {
  font-size: 2rem !important;
}

/* Ícones circulares */
.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(52, 119, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-circle-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover .icon-circle {
  background: rgba(52, 119, 226, 0.15);
  transform: scale(1.05);
}

/* Calculadora IMC */
.form-control-lg {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.form-control-lg:focus {
  border-color: #3477e2;
  box-shadow: 0 0 0 0.2rem rgba(52, 119, 226, 0.15);
}

.card.h-100 {
  height: 100%;
  transition: all 0.3s ease;
}

.service .card {
  transition: all 0.3s ease;
}

.service .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Espaçamento entre colunas */
.row.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.row.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Melhorias visuais */
.d-grid {
  display: grid;
}

.btn-primary {
  background-color: #3477e2;
  border-color: #3477e2;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2a5fb8;
  border-color: #2a5fb8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 119, 226, 0.3);
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

#resultado-imc {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Endobariatrica - Mobile Responsive */
@media (max-width: 767px) {
  /* Hero section adjustments */
  .service .fz-2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }
  
  .service .lead {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Cards padding reduction */
  .service .card-body.p-5 {
    padding: 2rem !important;
  }
  
  .service .card.p-4 {
    padding: 1.5rem !important;
  }
  
  /* Results cards - reduce display size */
  .service .display-3 {
    font-size: 2.5rem !important;
  }
  
  .service .display-5 {
    font-size: 2rem !important;
  }
  
  /* Icon sizes */
  .service .fa-3x {
    font-size: 2rem !important;
  }
  
  .service .fa-2x {
    font-size: 1.5rem !important;
  }
  
  /* Buttons */
  .service .btn-one {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem !important;
  }
  
  .service .btn-unidades {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem !important;
  }
  
  /* Spacing adjustments */
  .service.pt-100 {
    padding-top: 3rem !important;
  }
  
  .service.pb-100 {
    padding-bottom: 3rem !important;
  }
  
  .service.pt-50 {
    padding-top: 2rem !important;
  }
  
  .service.pb-50 {
    padding-bottom: 2rem !important;
  }
  
  /* Image adjustments */
  .service .img-service img {
    margin-bottom: 2rem;
  }
  
  /* Timeline cards */
  .service .rounded-circle[style*="width: 60px"] {
    width: 50px !important;
    height: 50px !important;
  }
  
  .service .rounded-circle .fs-4 {
    font-size: 1.2rem !important;
  }
  
  /* Subtitle adjustments */
  .service .subtitle small {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .service .subtitle h1,
  .service .subtitle h2 {
    margin-bottom: 1rem;
  }
  
  /* Alert adjustments */
  .service .alert {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  /* Card spacing */
  .service .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .service .mt-5 {
    margin-top: 2rem !important;
  }
  
  .service .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .service .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  /* D-flex items spacing */
  .service .d-flex .me-3 {
    margin-right: 1rem !important;
  }
  
  /* Text adjustments */
  .service p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service .text-muted {
    font-size: 0.9rem;
  }
  
  /* Card title spacing */
  .service .card h3 {
    margin-bottom: 1rem;
  }
  
  .service .card h5 {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 991px) {
  /* Ajustes para tablet */
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .icon-circle-lg {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 767px) {
  /* Calculadora IMC - Mobile */
  .form-control-lg {
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
  }
  
  .btn-primary,
  .btn-success {
    font-size: 0.95rem;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .icon-circle i {
    font-size: 1.5rem !important;
  }
  
  .icon-circle-lg {
    width: 80px;
    height: 80px;
  }
  
  .icon-circle-lg i {
    font-size: 2rem !important;
  }
}

@media (max-width: 575px) {
  /* Extra small devices - Mobile Portrait */
  .service .fz-2 {
    font-size: 1.3rem !important;
    line-height: 1.3;
  }
  
  /* Calculadora IMC - Extra Small */
  .btn-primary,
  .btn-success {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem !important;
  }
  
  #resultado-imc .alert h4 {
    font-size: 1.2rem;
  }
  
  .service .display-3 {
    font-size: 2rem !important;
  }
  
  .service .display-5 {
    font-size: 1.5rem !important;
  }
  
  .service .card-body.p-5 {
    padding: 1.5rem !important;
  }
  
  .service .card.p-4 {
    padding: 1.25rem !important;
  }
  
  .service .btn-one,
  .service .btn-unidades {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem !important;
  }
  
  .service h3 {
    font-size: 1.1rem;
  }
  
  .service h5 {
    font-size: 1rem;
  }
  
  .service h6 {
    font-size: 0.95rem;
  }
  
  .service .lead {
    font-size: 0.95rem;
  }
  
  /* Icon adjustments */
  .service .fa-2x {
    font-size: 1.3rem !important;
  }
  
  /* Spacing */
  .service.pt-100 {
    padding-top: 2.5rem !important;
  }
  
  .service.pb-100 {
    padding-bottom: 2.5rem !important;
  }
  
  .service.pt-50 {
    padding-top: 1.5rem !important;
  }
  
  .service.pb-50 {
    padding-bottom: 1.5rem !important;
  }
  
  /* Results cards */
  .service .card.shadow-lg {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15) !important;
  }
  
  /* Text sizing */
  .service .subtitle small {
    font-size: 0.7rem;
  }
  
  .service p {
    font-size: 0.9rem;
  }
  
  .service .text-muted,
  .service small {
    font-size: 0.85rem;
  }
  
  /* Image border radius */
  .service .rounded-3 {
    border-radius: 0.5rem !important;
  }
  
  /* Alert */
  .service .alert {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
  
  /* Timeline circles */
  .service .rounded-circle[style*="width: 60px"] {
    width: 45px !important;
    height: 45px !important;
  }
  
  .service .rounded-circle .fs-4 {
    font-size: 1.1rem !important;
  }
}

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