@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #0e0e10;
  font-size: 1rem;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

h2 {
  font-weight: normal;
}

.container {
  width: 100%;
  width: 1084px;
  margin: 0 auto;
}

p {
  color: #212121;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.12px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-transform: uppercase;
  padding: 24px 10px;
  width: 200px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background: #d63e8f;
  border: 1px solid transparent;
}
.button:active {
  opacity: 0.8;
}

#emphasis {
  color: #d63e8f;
  font-weight: 700;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: #212121;
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
header .header-container {
  width: 100%;
  max-width: 1140px;
  height: 100%;
  max-width: 1190px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
header .header-container .logo-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 90px;
  overflow-y: hidden;
}
header .header-container .logo-container img {
  height: 110px;
}
header .header-container .nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
header .header-container .nav a + .drop-title {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #8a8a8a;
}
header .header-container .nav #dropdown {
  position: relative;
}
header .header-container .nav #dropdown .list-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  background-color: #212121;
}
header .header-container .nav #dropdown .drop-title:hover + .list-items,
header .header-container .nav #dropdown .list-items:hover {
  display: flex;
}
header .header-container .nav #dropdown .drop-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
header .header-container .nav #dropdown .selected-item {
  display: none;
}
header .header-container #burguer {
  display: none;
  width: 30px;
  height: 25px;
  position: absolute;
  right: 1em;
  top: 1.5em;
  cursor: pointer;
  flex-direction: column;
}
header .header-container #burguer .bar {
  width: 30px;
  height: 3px;
  display: block;
  border-radius: 3px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .header-container #burguer .bar:nth-last-child(-n+2) {
  margin-top: 5px;
}
header .nav-mobile {
  display: none;
  background-color: #212121;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
header .nav-mobile a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Adiciona uma divisória */
  padding-bottom: 5px; /* Espaçamento na parte inferior de cada item */
}
header .nav-mobile a:last-child {
  margin-bottom: 0; /* Remove a margem inferior do último item */
  border-bottom: none; /* Remove a divisória do último item */
}
header .show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  body header .header-container {
    position: relative;
  }
  body header .header-container .nav {
    display: none;
    position: absolute;
    right: -100%;
    border-radius: 0 0 0 8px;
    z-index: 3;
  }
  body header .header-container #burguer {
    display: block;
    z-index: 3;
  }
  body header .header-container .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.banner {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  background-image: url("../assets/images/background-banner.png");
  background-size: cover;
  background-position: center;
  background-color: #000000;
  background-repeat: no-repeat;
}
.banner .container-title {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}
.banner .presentation-left {
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.banner .presentation-left h1 {
  color: #d63e8f;
  text-align: center;
  font-size: 70px;
  font-weight: 700;
}
.banner .presentation-left .text h2 {
  letter-spacing: 3px;
  color: #fff;
  font-size: 35px;
  text-transform: capitalize;
}
.banner .presentation-left a {
  margin: 10px 0;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -moz-max-content;
  height: max-content;
  height: 40px;
  width: 201.95px;
  max-width: 201.95px;
  background-color: #d63e8f;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  box-shadow: 1px 1px 5px #1e1e1e;
}
.banner .presentation-left a:hover {
  background-color: #000;
  box-shadow: none;
}

@media screen and (max-width: 900px) {
  .banner .presentation-left h1 {
    font-size: 50px;
  }
  .banner .presentation-left .text h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 660px) {
  .banner {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .banner .presentation-left {
    width: 100%;
    align-items: center;
    padding: 20px;
  }
}
@media screen and (max-width: 314px) {
  .banner {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .banner .presentation-left h1 {
    font-size: 32px;
  }
}
footer {
  width: 100vw;
  background-color: #212121;
  padding: 0 20px 0 20px;
  color: #f1f3f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer #footer {
  width: 100%;
  max-width: 1200px;
  padding: 70px 0 45px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer #footer .logo-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
footer #footer .logo-container img {
  height: 80px;
}
footer #footer .logo-container p {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #f1f3f5;
}
footer #footer .social-media, footer #footer .company {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
footer #footer .social-media h5, footer #footer .company h5 {
  color: var(--primaryText);
  font-size: 14px;
}
footer #footer .social-media h6, footer #footer .company h6 {
  margin-top: 5px;
  font-size: 12px;
  color: #f1f3f5;
  font-weight: normal;
}
footer #footer .social-media .media-links, footer #footer .company .media-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 0 20px 0;
  width: 100%;
}
footer #footer .social-media .media-links li, footer #footer .company .media-links li {
  font-size: 40px;
}
footer #footer .social-media .media-links li a, footer #footer .company .media-links li a {
  text-decoration: none;
  color: var(--secondaryText);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
footer #footer .social-media .media-links li a:hover, footer #footer .company .media-links li a:hover {
  color: #b9208a;
}
footer #footer .company ul li, footer #footer .site-pages ul li {
  list-style: none;
}
footer #footer .company ul li a, footer #footer .site-pages ul li a {
  margin-top: 5px;
  text-decoration: none;
  font-size: 12px;
  color: var(--secondaryText);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
footer #footer .company ul li a:hover, footer #footer .site-pages ul li a:hover {
  color: #b9208a;
}
footer #footer-bottom {
  width: 100%;
  max-width: 1200px;
  padding: 20px 0;
  border-top: 2px solid rgba(185, 32, 139, 0.5176470588);
  font-size: 12px;
  color: #b9208a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer #footer-bottom a {
  text-decoration: none;
  color: #b9208a;
  font-weight: bold;
}
footer #footer-bottom .copyright {
  width: 100%;
  text-align: center;
}
footer #footer-bottom .copyright p {
  color: #f1f3f5;
  font-size: 12px;
}

@media (max-width: 650px) {
  #footer {
    flex-direction: column;
    gap: 20px;
  }
  #footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  #footer .social-media {
    align-items: center;
    margin-top: 10px;
  }
  #footer .social-media .media-links {
    padding: 0;
  }
  #footer-bottom a {
    display: none;
  }
  #footer-bottom .copyright {
    width: 100%;
    text-align: center;
  }
}
.gallery {
  width: 100vw;
  padding: 86px 20px;
  height: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
  justify-content: center;
}
.gallery .background-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("..//..//assets//images//gallery-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gallery .background-container .phrases-container {
  width: 100%;
  max-width: 1140px;
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 30px;
}
.gallery .background-container .phrases-container .phrase {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gallery .background-container .phrases-container .phrase:nth-child(2) {
  flex-direction: row-reverse;
  text-align: right;
}
.gallery .background-container .phrases-container .phrase .text-container {
  width: 604.023px;
  height: -moz-max-content;
  height: max-content;
  color: #212121;
  font-weight: 400;
}
.gallery .background-container .phrases-container .phrase .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.gallery .background-container .phrases-container .phrase .image-container:img {
  border-radius: 10px;
}

@media screen and (max-width: 543px) {
  .gallery .background-container {
    height: -moz-max-content;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .gallery .background-container img {
    display: none !important;
  }
  .gallery .background-container .phrases-container {
    width: 90%;
    position: relative;
    gap: 19px;
  }
  .gallery .background-container .phrases-container .phrase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .gallery .background-container .phrases-container .phrase:nth-child(2) {
    text-align: left;
  }
  .gallery .background-container .phrases-container .phrase .text-container {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
  }
  .gallery .background-container .phrases-container .phrase .text-container img {
    display: none !important;
  }
}
.contact-container {
  width: 100%;
  min-height: 100vh;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}
.contact-container .contact-banner {
  display: flex;
  color: #212121;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-container .contact-banner h1 {
  font-family: "Poppins", sans-serif;
  color: #0e0e10;
  font-size: 2rem;
  margin-bottom: 24px;
}
.contact-container .contact-banner p {
  margin-bottom: 24px;
}
.contact-container .contact-banner .contact-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d63e8f;
}
.contact-container .contact-banner .contact-icons a {
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}
.contact-container .contact-banner .contact-icons a:hover {
  color: #d63e8f;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-form-container .contact-form {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.contact-form-container .contact-form .social-media {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form-container .contact-form .contact-info {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
.contact-form-container .contact-form .contact-info a {
  display: flex;
}
.contact-form-container .contact-form .contact-info p {
  margin-left: 26.5px;
  color: #212121;
}
.contact-form-container #back-button {
  width: 207px;
  height: 41px;
  text-transform: capitalize;
  background-color: #ffffff;
  color: #d63e8f;
  font-size: 1.5em;
  border: 1.5px solid #d63e8f;
  cursor: pointer;
  margin-top: 99px;
  margin-bottom: 69px;
}

.modal {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 8px 8px 24px 0px rgba(0, 0, 0, 0.25);
  padding: 32px;
  border-radius: 4px;
}
.modal form h2 {
  font-family: "Poppins", sans-serif;
  color: #0e0e10;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #212121;
  font-size: 16px;
  font-weight: 700;
  line-height: 103.5%;
  text-transform: uppercase;
}
.modal form input,
.modal form textarea {
  font-family: "Poppins", sans-serif;
  color: #0e0e10;
  font-size: 1.25rem;
  display: block;
  width: 450px;
  height: 50px;
  border: none;
  border-bottom: 1px solid #000;
  margin-bottom: 16px;
  padding: 16px;
  outline: none;
}
.modal form input::-moz-placeholder, .modal form textarea::-moz-placeholder {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 400;
  line-height: 103.5%;
}
.modal form input::placeholder,
.modal form textarea::placeholder {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 400;
  line-height: 103.5%;
}
.modal form #message {
  height: 150px;
}
.modal form .error-message {
  color: red;
  margin-bottom: 10px;
  display: none;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.modal form .validation-error {
  animation: shake 0.1s linear 5;
  border-bottom: 1px solid red;
}
.modal form .validation-error::-moz-placeholder {
  color: red !important;
}
.modal form .validation-error::placeholder {
  color: red !important;
}
.modal form .button-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.modal form .button-container button {
  font-family: "Poppins", sans-serif;
  color: #0e0e10;
  font-size: 1.25rem;
  width: 200px;
  height: 50px;
  border-radius: 8px;
  background: #942564;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.modal form .button-container button:hover {
  background: #d63e8f;
  color: #ffffff;
}
.modal .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  height: 170px;
  border: 1px solid #d63e8f;
  border-radius: 4px;
  background: #0e0e10;
  padding: 32px;
  margin-top: 70px;
}
.modal .contact-info a {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
.modal .contact-info a:last-child {
  margin-bottom: 0;
}
.modal .contact-info a p {
  margin-left: 8px;
}
.modal .contact-info a:hover {
  color: #d63e8f;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.popup .popup-content {
  background-color: #fff;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.popup .popup-content h3 {
  color: #d63e8f;
}
.popup .popup-content p {
  color: #0e0e10;
}

@media screen and (max-width: 920px) {
  .contact-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .contact-form .social-media {
    flex-direction: row;
  }
  .contact-banner {
    width: 90%;
  }
}
@media screen and (max-width: 545px) {
  .banner-left h1 {
    font-size: 40px;
  }
  .modal {
    border: none;
    width: 100%;
  }
  .modal .contact-info {
    max-width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .banner-left h1 {
    font-size: 40px;
  }
  .modal form h2 {
    font-size: 24px;
  }
  .modal .contact-info a svg {
    width: 20px;
  }
}
@media screen and (max-width: 375px) {
  .modal .contact-info {
    padding: 8px;
  }
}
.who-we-are-container {
  min-height: 100vh;
  width: 100%;
  background-color: #b9208a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 80px;
}
.who-we-are-container .rect-container {
  width: 82.77%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.who-we-are-container .rect-container .left,
.who-we-are-container .rect-container .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-we-are-container .rect-container .left .image-container {
  width: 478px;
  height: 548px;
  display: flex;
  justify-content: flex-end;
}
.who-we-are-container .rect-container .left .image-container img {
  width: 100%;
  height: 100%;
}
.who-we-are-container .rect-container .right {
  min-width: 518px;
  background-color: #ffffff;
  padding: 106px 22px 106px 22px;
}
.who-we-are-container .rect-container .right .content-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 84px;
}
.who-we-are-container .rect-container .right .content-container h1 {
  color: #d63e8f;
  font-size: 40px;
  font-weight: 700;
  line-height: 103.5%;
  letter-spacing: -0.2px;
}
.who-we-are-container .rect-container .right .content-container a {
  width: 207px;
  height: 41px;
}
.who-we-are-container .rect-container .right .content-container button {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50px;
  background-color: #d63e8f;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (max-width: 542px) {
  .who-we-are-container {
    width: 100vw !important;
    min-height: -moz-max-content;
    min-height: max-content;
    padding: 0px;
    display: block;
  }
  .who-we-are-container .rect-container {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    padding: 0px;
  }
  .who-we-are-container .rect-container .left {
    display: none !important;
  }
  .who-we-are-container .rect-container .right {
    width: 100% !important;
    height: 100% !important;
    padding: 0px !important;
    padding-bottom: 100px !important;
    min-width: 0 !important;
  }
  .who-we-are-container .rect-container .right .content-container {
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    gap: 84px;
  }
  .who-we-are-container .rect-container .right .content-container a {
    width: 100%;
  }
}
.about {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.about .content {
  width: 82.98%;
  height: 100%;
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about .content .text {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.about .content .text h1 {
  flex: 1;
  color: #d63e8f;
  font-size: 40px;
  font-weight: 700;
  line-height: 103.5%;
  letter-spacing: -0.2px;
}
.about .content .text p {
  flex: 1;
  max-width: 510px;
  min-width: 350px;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.about .content #back-button {
  width: 207px;
  height: 41px;
  text-transform: capitalize;
  background-color: #ffffff;
  color: #d63e8f;
  font-size: 1.5em;
  border: 1.5px solid #d63e8f;
  cursor: pointer;
  margin-top: 99px;
  margin-bottom: 69px;
}

@media screen and (max-width: 540px) {
  .about .content {
    width: 100%;
  }
  .about .content .text {
    flex-direction: column;
    padding: 10px;
  }
  .about .content .text p {
    min-width: 0px;
  }
}
.partners,
.our-partners-container {
  width: 100%;
  max-width: 1140px;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.partners .our-partners-container,
.our-partners-container .our-partners-container {
  padding: 20px;
}
.partners .partners,
.partners .section-apresentation,
.our-partners-container .partners,
.our-partners-container .section-apresentation {
  gap: 20px;
  width: 100%;
}
.partners .section-apresentation,
.our-partners-container .section-apresentation {
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners .section-apresentation h1,
.our-partners-container .section-apresentation h1 {
  font-size: 40px;
  color: #d63e8f;
}
.partners .our-partners-container .partners-logo,
.our-partners-container .our-partners-container .partners-logo {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.partners .our-partners-container .partners-logo img,
.our-partners-container .our-partners-container .partners-logo img {
  width: 200px;
}

@media screen and (max-width: 543px) {
  .section-apresentation {
    width: 100%;
  }
}
#products {
  width: 100vw;
  padding: 86px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#products .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#products .title-container h2 {
  font-size: 40px;
  font-weight: bold;
  color: #d63e8f;
}
#products .title-container p {
  margin-top: 15px;
  text-align: center;
}
#products .card-container {
  width: 100vw;
  max-width: 1140px;
  padding: 20px;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
#products .card-container .card {
  position: relative;
  height: 400px;
  padding: 20px;
  border: 0.5px solid rgba(204, 204, 204, 0.6078431373);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 2px 2px 10px rgba(204, 204, 204, 0.6156862745);
}
#products .card-container .card .card_modal {
  position: absolute;
  top: calc(100% - 65px);
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 10px 20px 15px 20px;
  transition: all 0.5s ease-in-out;
}
#products .card-container .card .card_modal .title-card {
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#products .card-container .card .card_modal .title-card h3 {
  font-size: 18px;
  color: #d63e8f;
}
#products .card-container .card .card_modal .title-card button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#products .card-container .card .card_modal .title-card button i {
  font-size: 18px;
  font-weight: bolder;
  color: #d63e8f;
  transition: all 0.3s ease-in-out;
}
#products .card-container .card .card_modal .body-product {
  padding: 10px 5px 5px 0;
  height: calc(100% - 85px);
  overflow-y: scroll;
}
#products .card-container .card .card_modal .body-product::-webkit-scrollbar {
  width: 7px;
}
#products .card-container .card .card_modal .body-product::-webkit-scrollbar-thumb {
  background-color: rgba(204, 204, 204, 0.6078431373);
  border-radius: 20px;
}
#products .card-container .card .card_modal .body-product p {
  font-size: 14px;
}
#products .card-container .card .card_modal .link-product {
  margin-top: 10px;
  text-align: end;
}
#products .card-container .card .card_modal .link-product a {
  color: #d63e8f;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
  margin-bottom: 10px;
}
#products .card-container .card .card_modal .link-product a:hover {
  font-weight: bold;
}
#products .card-container .card .card_modal.active {
  top: 0;
}
#products .card-container .card .card_modal.active .title-card button i {
  transform: rotate(180deg);
}
#products .card-container .card.q1 {
  background-image: url("..//..//assets//logos//q1-logo-large.png");
}
#products .card-container .card.archimedes {
  background-image: url("..//..//assets//logos//archimedes-logo.png");
}
#products .card-container .card.academy {
  background-image: url("..//..//assets/logos//quantum-academy-logo.png");
}
#products .card-container .card.x70 {
  background-image: url("..//../assets//logos//x70-logo.png");
}
#products .card-container .card.social {
  background-image: url("..//../assets//logos//7social-logo.png");
}
#products .card-container .card.paranaue {
  background-image: url("..//../assets//logos//paranaue-logo.png");
}/*# sourceMappingURL=style.css.map */