@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.cdnfonts.com/css/intro-black?styles=63066,63071,63075,63072,63076,63077,63073,63069,63067,63078,63074,63070,63068");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ocultar {
  position: absolute;
  left: -99px;
  top: -99px;
  text-indent: -9999px;
}

* {
  box-sizing: border-box;
}

.body_color {
  background: linear-gradient(120deg, #f5333f, #ba2e50 60%, #942954 75%, #420c51 100%);
}

.container {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1180px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1300px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1450px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.header {
  background: linear-gradient(to right, #ef3242, #a11f5c 50%, #8c1a63 60%, #580e74 100%);
  border-radius: 0 0 10px 10px;
  padding: 20px 0;
  display: flex;
  position: relative;
  z-index: 2;
  transition: all 0.6 ease-out;
}
.header .container {
  align-items: center;
  justify-content: space-between;
}
.header nav ul {
  display: flex;
  align-items: center;
}
.header nav ul li {
  padding: 0 5px;
}
.header nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.5s ease;
  font-size: 0.9rem;
}
.header nav ul li a:hover {
  transition: all 0.5s ease;
  color: #ecff39;
}
.header nav ul .desk_li {
  display: none;
  border-left: 1px solid #fff;
  padding: 0 10px;
}
.header nav ul .desk_li:last-child {
  border-right: 1px solid #fff;
}

.mostrar {
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 10px 0;
  top: 0;
  -webkit-animation: effectMenu;
  animation: effectMenu;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (min-width: 992px) {
  .header {
    border-radius: 0 0 30px 30px;
  }
  .header nav ul .desk_li {
    padding: 0 7px;
  }
}
@media (min-width: 1200px) {
  .header nav ul .desk_li {
    display: block;
  }
}
@media (min-width: 1400px) {
  .header nav ul .desk_li {
    display: block;
  }
}
@media (min-width: 1600px) {
  .header nav ul li {
    padding: 0px 10px;
  }
  .header nav ul .desk_li {
    display: block;
  }
  .header nav ul .desk_li a {
    font-size: 1.1rem;
  }
}
@-webkit-keyframes effectMenu {
  0% {
    position: absolute;
    top: -100%;
  }
  100% {
    top: 0%;
  }
}
@keyframes effectMenu {
  0% {
    position: absolute;
    top: -100%;
  }
  100% {
    top: 0%;
  }
}
@keyframes effectMenuOut {
  0% {
    position: absolute;
    top: -100%;
  }
  100% {
    top: 0%;
  }
}
.banner_top {
  position: relative;
  margin-top: -50px;
}
.banner_top .item {
  height: 60vh;
}
.banner_top .item .container {
  justify-content: flex-end;
  height: inherit;
}
.banner_top .item .takeBanner {
  display: flex;
  flex-wrap: wrap;
  height: inherit;
}
.banner_top .item .takeBanner .topBanner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 50px;
  width: 100%;
}
.banner_top .item .takeBanner .topBanner h2 {
  display: flex;
  font-family: "Intro Regular", sans-serif;
  color: #fff;
  margin-top: 30px;
  padding-right: 15px;
}
.banner_top .item .takeBanner .topBanner h2 img {
  width: 100px;
  height: 20px;
  position: relative;
  top: -3px;
  margin-left: 6px;
}
.banner_top .item .takeBanner .topBanner .imagem img {
  width: 60px;
  height: auto;
}
.banner_top .item .takeBanner .bottomBanner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  .banner_top .item {
    height: 90vh;
  }
  .banner_top .item .takeBanner .topBanner h2 {
    font-size: 1.25rem;
  }
  .banner_top .item .takeBanner .topBanner h2 img {
    top: 1.5px;
  }
  .banner_top .item .takeBanner .topBanner .imagem img {
    width: 95px;
    height: 161px;
  }
}
.wrapper_video {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper_video video {
  width: 100%;
  height: 35vh;
  object-fit: cover;
}
.wrapper_video video::-webkit-media-controls-timeline {
  display: none;
}
.wrapper_video video::-webkit-media-controls {
  display: none;
}
.wrapper_video video::-webkit-media-controls-play-button {
  display: none;
}
.wrapper_video video::-webkit-media-controls-start-playback-button {
  display: none;
}
.wrapper_video video::-webkit-media-controls-current-time-display {
  display: none;
}
.wrapper_video video::-webkit-media-controls-time-remaining-display {
  display: none;
}
.wrapper_video .player_video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 35vh;
}
.wrapper_video .player_video img {
  width: 116px;
  height: 116px;
}
.wrapper_video .title_video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  margin-top: 180px;
  text-align: center;
}
.wrapper_video .title_video h2 {
  font-family: "Intro Book", sans-serif;
  color: #fbfdfd;
  letter-spacing: 4px;
  font-size: 1.35rem;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .wrapper_video .title_video h2 {
    font-size: 2.688rem;
  }
  .wrapper_video video {
    height: 60vh;
  }
  .wrapper_video .player_video {
    height: 60vh;
  }
}
@media (min-width: 1200px) {
  .wrapper_video video {
    height: 90vh;
  }
  .wrapper_video .player_video {
    height: 90vh;
  }
}
.about_us {
  background: url("./assets/img/gradient.jpg") no-repeat top center;
  background-size: cover;
  width: 100%;
  padding: 80px 0;
}
.about_us .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.about_us .title_about {
  margin-bottom: 40px;
}
.about_us .title_about h2 {
  font-family: "Intro Black", sans-serif;
  font-size: 3rem;
  color: #fbfdfd;
}
.about_us .text {
  color: #fbfdfd;
  width: 100%;
}
.about_us .text p {
  line-height: 22px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .about_us .col:first-child {
    width: 50%;
    margin: 0 auto;
  }
  .about_us .col:last-child {
    width: 40%;
  }
}
@media (min-width: 1350px) {
  .about_us .col:first-child {
    width: 40%;
    margin: 0 auto;
  }
  .about_us .col:last-child {
    width: 50%;
  }
}
.our_belief {
  padding: 80px 0;
}
.our_belief .container {
  justify-content: space-between;
  align-items: flex-end;
}
.our_belief .title_our_belief {
  margin-bottom: 40px;
}
.our_belief .title_our_belief h2 {
  font-family: "Intro Black", sans-serif;
  font-size: 3rem;
  color: #fbfdfd;
}
.our_belief .text {
  color: #fbfdfd;
  width: 100%;
}
.our_belief .text h3 {
  font-family: "Intro Black", sans-serif;
  color: #55d5fc;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.our_belief .text p {
  line-height: 22px;
  margin-bottom: 20px;
}
.our_belief .col {
  width: 100%;
}
.our_belief .col img {
  width: 100%;
  height: auto;
}
.our_belief .col:last-child {
  text-align: center;
}

@media (min-width: 992px) {
  .our_belief .col img {
    max-width: 100%;
    width: 691px;
  }
  .our_belief .col:first-child {
    width: 40%;
    margin: 0 auto;
  }
  .our_belief .col:last-child {
    width: 50%;
  }
}
.products {
  padding: 80px 0;
}
.products .title_products {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.products .title_products h2 {
  font-family: "Intro Black", sans-serif;
  font-size: 3rem;
  color: #fbfdfd;
}
.products .all_products {
  width: 100%;
}
.products .all_products ul li {
  position: relative;
  z-index: 2;
}
.products .all_products ul li .btn_accordion {
  border-radius: 0 0 20px 20px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .all_products ul li .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.products .all_products ul li .content_accordion {
  display: none;
  background-color: #e1dfdf;
  padding: 40px 0 20px 0;
  position: relative;
  margin-top: -20px;
  z-index: -1;
}
.products .all_products ul li .content_accordion .product_item {
  width: 90%;
  margin: 0 auto;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.products .all_products ul li .content_accordion .product_item a {
  transition: 0.5s all ease;
  color: #545353;
}
.products .all_products ul li .content_accordion .product_item a:hover {
  color: #ff2238;
  transition: 0.5s all ease;
}
.products .all_products ul li .content_accordion .col {
  width: 100%;
}
.products .all_products ul li:nth-child(odd) .btn_accordion {
  background: #ff2238;
}
.products .all_products ul li:nth-child(even) .btn_accordion {
  background: #d8111f;
}
.products .all_products ul li button {
  width: 100%;
  font-family: "Intro Bold", sans-serif;
  color: #fff;
  font-size: 1.45rem;
  display: block;
  background: none;
  border: 0;
  width: 100%;
  cursor: pointer;
}
.products .all_products ul li button span {
  display: block;
  width: 300px;
  margin: auto;
  text-align: left;
}
.products .all_products ul li button span:before {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #56D4FC transparent;
  transform: rotate(180deg);
  position: relative;
  top: 2px;
  margin-right: 20px;
  transition: transform 0.3s ease, top 0.3s ease;
}
.products .all_products ul li button.is-open span:before {
  transform: rotate(0deg);
  top: -2px;
}
.products .slider_products {
  margin-top: 80px;
}
.products .slider_products .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.products .slider_products .slick-dots button {
  background: #fff;
  opacity: 0.58;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  color: transparent;
  cursor: pointer;
  border-radius: 200px;
  -webkit-border-radius: 200px;
  width: 20px;
  height: 20px;
  margin: 0 10px;
  border: 0;
}
.products .slider_products .slick-dots .slick-active button {
  opacity: 1;
}
.products .slider_products .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 30%;
  color: transparent;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background: none;
  border: 0;
}
.products .slider_products .slick-prev {
  cursor: pointer;
  left: 0;
  top: 30%;
}
.products .slider_products .slick-prev:before {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #56D4FC transparent;
  transform: rotate(-90deg);
  position: relative;
  top: 2px;
  margin-right: 20px;
}
.products .slider_products .slick-next {
  cursor: pointer;
  width: 39px;
  right: 0;
  top: 29.9%;
}
.products .slider_products .slick-next:before {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #56D4FC transparent;
  transform: rotate(90deg);
  position: relative;
  top: 2px;
  margin-right: 20px;
}
.products .slider_products .item {
  width: 100%;
  text-align: center;
  outline: 0;
}
.products .slider_products .item img {
  margin: 0 auto;
  max-width: 90%;
  height: auto;
}

@media (min-width: 768px) {
  .products .all_products ul li button {
    font-size: 2.313rem;
    width: 30%;
  }
  .products .all_products ul li button span {
    width: 360px;
  }
  .products .all_products ul li button span:before {
    top: -5px;
  }
  .products .slider_products .item img {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .products .all_products ul li button {
    font-size: 2.313rem;
    width: 15%;
  }
  .products .all_products ul li .content_accordion .product_item {
    width: 30%;
  }
  .products .all_products ul li .content_accordion .col {
    width: 30%;
  }
  .products .all_products ul li .content_accordion .col .product_item {
    width: 80%;
  }
}
@media (min-width: 1440px) {
  .products .all_products ul li .content_accordion .product_item {
    width: 25%;
  }
}
.contact_us .title {
  font-family: "Intro Black", sans-serif;
  font-size: 3rem;
  color: #fbfdfd;
  margin-bottom: 20px;
}
.contact_us .container {
  justify-content: space-between;
}
.contact_us .formulario {
  width: 100%;
  margin: 0 auto;
}
.contact_us .formulario form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.contact_us .formulario form .rowInput {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.contact_us .formulario form input {
  font-family: "Work Sans", sans-serif;
  outline: 0;
  color: #000000;
}
.contact_us .formulario form textarea {
  font-family: "Work Sans", sans-serif;
  outline: 0;
  resize: none;
  color: #000000;
}
.contact_us .formulario form input,
.contact_us .formulario form select,
.contact_us .formulario form textarea {
  border: 0;
  border-radius: 2px;
  padding: 10px 15px;
  width: 100%;
  max-width: 100%;
}
.contact_us .formulario form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
}
.contact_us .formulario form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
}
.contact_us .formulario form :-ms-input-placeholder {
  /* IE 10+ */
  color: #000000;
}
.contact_us .formulario form :-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
}
.contact_us .formulario form input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
}
.contact_us .formulario form label {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #fff;
  position: relative;
  top: 1px;
  margin-left: 5px;
  cursor: pointer;
}
.contact_us .formulario form label a {
  font-weight: 600;
  color: #fff;
  transition: 0.5s all ease;
}
.contact_us .formulario form label a:hover {
  transition: 0.5s all ease;
  color: #ecff39;
}
.contact_us .formulario form .itemCheckbox {
  display: flex;
  align-items: center;
}
.contact_us .formulario form .itemSend {
  margin: 30px 0;
  text-align: center;
}
.contact_us .formulario form .textform p {
  margin-bottom: 14px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: white;
}
.contact_us .formulario form .textform p a {
  color: white;
  transition: 0.3s ease all;
}
.contact_us .formulario form .textform p a:hover {
  opacity: 0.8;
}
.contact_us .formulario form button {
  width: 100%;
  border: 2px solid #fff;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  outline: 0;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.6s all ease;
  max-width: 280px;
  margin: 0 auto;
}
.contact_us .formulario form button:hover {
  transition: 0.6s all ease;
  background: #fff;
  color: #000;
}
.contact_us .formulario form button:disabled {
  cursor: auto;
}
.contact_us .address .item_address {
  margin-bottom: 18px;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 19px;
}
.contact_us .address .item_address h2 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact_us .address .item_address a {
  color: #fff;
}
.contact_us .address .item_address p {
  color: #fff;
  line-height: 25px;
}

@media (min-width: 768px) {
  .contact_us .formulario form .itemInput,
.contact_us .formulario form .itemTextarea {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .contact_us .formulario {
    width: 65%;
  }
  .contact_us .address {
    width: 30%;
  }
}
.modal_politica {
  display: none;
  position: fixed;
  width: 100%;
  height: 101vh;
  z-index: 9999;
  top: 0px;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal_politica .content_modal {
  width: 310px;
  background-color: #fff;
  padding: 20px 10px;
  margin-top: 10px;
}

@media (min-width: 410px) {
  .modal_politica .content_modal {
    width: 400px;
  }
}
@media (min-width: 500px) {
  .modal_politica .content_modal {
    width: 480px;
  }
}
@media (min-width: 700px) {
  .modal_politica .content_modal {
    width: 650px;
  }
}
.activeModal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.activeModal .title_modal {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.activeModal .title_modal h2 {
  color: #fff;
  font-family: "Intro Black", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #212121;
}
.activeModal .title_modal svg {
  width: 20px;
  height: 20px;
}
.activeModal .title_modal svg path {
  fill: #8f8f8f;
}
.activeModal .title_modal .closeModal {
  cursor: pointer;
}
.activeModal .text_modal p {
  line-height: 1.4;
  margin-bottom: 20px;
}
.activeModal .text_modal p a {
  color: #fff;
}
.activeModal .text_modal p a:hover {
  color: #ecff39;
}

.footer {
  padding: 80px 0 80px 0;
}
.footer .container {
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.footer .col {
  padding: 0 30px;
  text-align: center;
}
.footer .social_media ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.footer .social_media ul li {
  margin: 0 10px;
}
.footer .menu_footer li {
  margin-bottom: 15px;
}
.footer .menu_footer li a {
  font-size: 1.563rem;
  color: #fff;
}

@media (min-width: 700px) {
  .footer .container {
    flex-direction: row;
    justify-content: center;
  }
  .footer .col {
    text-align: left;
  }
  .footer .social_media {
    margin-top: 20px;
  }
  .footer .social_media ul {
    justify-content: flex-end;
  }
}
.conheca-us {
  margin-top: 50px;
  position: relative;
}
.conheca-us img {
  width: 100%;
  max-width: 100%;
}
.conheca-us .conheca-us__button {
  background-color: #f5333f;
  font-weight: 500;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 0.5s ease-out;
  display: inline-block;
  margin-bottom: 10px;
}
.conheca-us .conheca-us__button:hover {
  background: #fff;
  color: #f5333f;
  transition: all 0.5s ease-out;
}
.conheca-us .hashtag {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  text-align: right;
}

@media (min-width: 767px) {
  .conheca-us .box-float {
    position: absolute;
    bottom: 10%;
    left: 52%;
  }
  .conheca-us .conheca-us__button {
    font-size: 1.6rem;
  }
}
@media (min-width: 1400px) {
  .conheca-us .box-float {
    bottom: 10%;
    left: 52%;
  }
  .conheca-us .conheca-us__button {
    font-size: 2rem;
  }
}
/* Carrossel de medicamentos - Genéricos */
.products .all_products .genericos-group .genericos-banner {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  line-height: 0;
}
.products .all_products .genericos-group .genericos-banner img {
  width: 100%;
  display: block;
  height: auto;
}
.products .all_products #accordion_08 {
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.products .all_products #accordion_08.genericos-enhanced .wrapper {
  display: none;
}
.products .all_products #accordion_08 .genericos-search {
  padding: 0 24px 14px;
}
.products .all_products #accordion_08 .genericos-search-field {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 16px;
}
.products .all_products #accordion_08 .genericos-search-icon {
  color: #8f8f8f;
  font-size: 1rem;
  line-height: 1;
}
.products .all_products #accordion_08 .genericos-search-input {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 12px 0;
  color: #333;
  font-size: 1rem;
  font-family: "Intro Book", sans-serif;
  transition: color 0.25s ease;
}
.products .all_products #accordion_08 .genericos-search-input:focus {
  outline: none;
}
.products .all_products #accordion_08 .genericos-search-field:focus-within {
  border-color: #ff2238;
  box-shadow: 0 0 0 3px rgba(255, 34, 56, 0.18);
}
.products .all_products #accordion_08 .medicamentos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 24px 34px;
}
.products .all_products #accordion_08 .medicamento-card {
  min-width: 0;
}
.products .all_products #accordion_08 .card-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 18px;
  padding: 16px 14px 18px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}
.products .all_products #accordion_08 .card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(216, 17, 31, 0.18);
  border-color: #ff2238;
}
.products .all_products #accordion_08 .medicamento-badge {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff6f7;
  border: 1px solid #ff8d98;
  color: #d8111f;
  border-radius: 999px;
  font-family: "Intro Bold", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.products .all_products #accordion_08 .card-inner img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 8px auto 12px;
  transition: transform 0.35s ease;
}
.products .all_products #accordion_08 .card-inner:hover img {
  transform: scale(1.05);
}
.products .all_products #accordion_08 .card-inner h4 {
  min-height: 24px;
  margin: 0 0 8px;
  font-family: "Intro Bold", sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #212121;
}
.products .all_products #accordion_08 .medicamento-description {
  margin: 0 0 12px;
  min-height: 54px;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.35;
  font-family: "Intro Book", sans-serif;
}
.products .all_products #accordion_08 .presentation-list {
  margin: 0 -14px 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.products .all_products #accordion_08 .presentation-tag {
  flex: 1 1 auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #ff2238;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5px 8px;
  font-size: 0.75rem;
  line-height: 1.1;
  font-family: "Intro Bold", sans-serif;
}
.products .all_products #accordion_08 .presentation-tag:last-child {
  border-right: 0;
}
.products .all_products #accordion_08 .presentation-tag:hover {
  background: #d8111f;
}
.products .all_products #accordion_08 .btn-saiba-mais {
  display: inline-block;
  background: #ff2238;
  color: #fff;
  border: 1px solid #ff2238;
  border-radius: 40px;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: "Intro Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.products .all_products #accordion_08 .btn-saiba-mais:hover {
  background-color: #fff;
  color: #ff2238;
  transform: translateY(-2px);
}
.products .all_products #accordion_08 .genericos-no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: #5b5b5b;
  font-family: "Intro Book", sans-serif;
  padding: 20px;
}
@media (max-width: 767px) {
  .products .all_products #accordion_08 .medicamentos-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 10px 16px 24px;
  }
  .products .all_products #accordion_08 .medicamento-description {
    min-height: auto;
  }
  .products .all_products #accordion_08 .presentation-tag {
    flex: 1 1 100%;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .products .all_products #accordion_08 .medicamentos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1101px) and (max-width: 1400px) {
  .products .all_products #accordion_08 .medicamentos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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