* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "SF-Bold";
  src: url(" ../public/fonts/SF-Pro-Display-Bold.otf");
}
@font-face {
  font-family: "SF-Medium";
  src: url("../public/fonts/SF-Pro-Display-Medium.otf");
}
@font-face {
  font-family: "SF-Regular";
  src: url("../public/fonts/SF-Pro-Display-Regular.otf");
}
:root {
  --cl-gray: #f7f5f3;
  --bg-clare: #ffffff;
  --bg-opaque: #202020;

  --cl-primary: #635bff;

  --cl-black-1: #292929;
  --cl-black-2: #4b4b4b;
  --cl-black-3: #585858;
  --cl-black-4: #737373;
  --cl-black-5: #adadad;

  --bx-shadow: #58585819 0px 0px 0px 1px;

  --color-bg-sature: saturate(180%) blur(30px);
  --color-bg-menu: hsla(0, 0%, 77%, 0.5);
}
body {
  background: #e5e5e5;
  display: flex;
  width: 100%;
  justify-content: center;
  font-family: "SF-Regular";
  flex-wrap: wrap;
}
a {
  text-decoration: none;
}
strong,
h1,
h3,
h2,
h4 {
  font-family: "SF-Bold";
  font-size: 1.25em;
}
h2 strong {
  color: var(--cl-primary);
  font-size: 1em;
}
.__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 5px; */
  border: none;
  outline: none;
}
.__btn label {
  width: 100%;
  height: 100%;
}

/* +++MENU+++ */

header {
  display: flex;
  width: 100%;
  height: 49px;
  justify-content: center;
  background: var(--bg-clare);
  padding: 10px;
  border-bottom: 1px solid #dbdbdb;
  position: sticky;
  top: 0;
  z-index: 11;
}
.__header_content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1em;
}
.__logo_cdav {
  display: flex;
  align-items: center;
  font-size: 1em;
  color: var(--cl-black-1);
}
.__logo_cdav > strong {
  margin-left: 0.3125em;
  font-size: 1em;
}
.__logo_cdav > strong {
  font-size: 1em;
}
nav {
  display: block;
  width: 50px;
  height: 100%;
  /* background: pink; */
  z-index: 11;
}
nav button {
  padding: 10px;
  background: transparent;
}
nav ul {
  display: flex;
  position: fixed;
  flex-flow: column wrap;
  width: 60%;
  height: 100vh;
  top: 49px;
  right: -60%;
  background: var(--color-bg-menu);
  backdrop-filter: var(--color-bg-sature);
  -webkit-backdrop-filter: var(--color-bg-sature);
  list-style: none;
  gap: 20px;
  transition: all 0.3s ease;
}
nav ul li > a {
  text-decoration: none;
  font-size: 1.125em;
  color: var(--cl-black-2);
  transition: all 0.5s;
  position: relative;
}
nav ul li:last-child > a {
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  background: var(--cl-primary);
  color: #fff;
}
nav ul li:last-child > a svg {
  margin-left: 5px;
}
nav ul li {
  padding: 10px;
}

#menu {
  display: none;
}
#menu ~ label > #_s_closed {
  display: none;
}
#menu:checked ~ label > #_s_menu {
  display: none;
}
#menu:checked ~ label > #_s_closed {
  display: block;
}

/* +++END MENU+++ */

/*---- Alert stores ----*/
.__alert_stores {
  background: var(--cl-primary);
  box-shadow: 0px 12px 25px 2px rgba(0, 0, 0, 0.2);
  height: 48px;
  left: 0;
  position: fixed;
  top: 49px;
  width: 100%;
  z-index: 12;
}
.__alert_stores_wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
  padding: 0 15px;
  gap: 10px;
  position: relative;
}
.__alert_stores_wrapper > p {
  font-family: "SF-Bold";
  font-size: 14px;
  color: #fff;
}
.__icon_store_small {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: var(--bg-opaque);
  border-radius: 8px;
}
.__icon_store_small img {
  transform: scale(0.8);
}
#close-alert-store {
  color: #fff;
  padding: 5px;
  background: transparent;
  position: absolute;
  border: none;
  top: 0;
  right: 0;
  font-size: 16px;
}
/*---- End Alert stores ----*/

main {
  display: flex;
  width: 100%;
  /* min-height: 100vh; */
  justify-content: center;
  flex-wrap: wrap;
  /* z-index: -6; */
}
section {
  display: block;
  position: relative;
  padding: 15px;
  width: 100%;
  border-radius: 0 0px 20px 20px;
  overflow: hidden;
}
section h3 {
  font-size: 1em;
  text-transform: uppercase;
  color: var(--cl-black-3);
}
section h4 {
  font-size: 1em;
}
section p {
  color: var(--cl-black-4);
  font-size: 0.875em;
}
section p strong {
  font-size: 1.05em !important;
}
/* PRESENTATION SCREEN*/
#__presentation {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-clare);
  min-height: 100vh;
  font-size: 16px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.__wrapper_content_text_screen {
  display: block;
  width: 100%;
  font-size: 1em;
}
.__wrapper_content_text_screen strong:first-child {
  color: var(--cl-primary);
  font-size: 1em;
}
.__wrapper_content_text_screen > strong:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 23px 0;
}
.__wrapper_content_text_screen h1,
h3 {
  margin: 23px 0;
  color: var(--cl-black-1);
}
.__wrapper_content_text_screen h3 {
  color: var(--cl-black-2);
  font-size: 1em;
}
.__wrapper_content_text_screen p {
  color: var(--cl-black-4);
  font-size: 0.875em;
}
.__wrapper_content_text_screen p strong {
  font-size: 1.2em !important;
}
.__wrapper_content_text_screen a {
  background: var(--cl-black-1);
  padding: 10px;
  width: 50%;
  border-radius: 10px;
  color: #fff;
}
/* END PRESENTATION SCREEN*/

/* PRESENTATION ABOUT US*/
#__about_us {
  display: flex;
  flex-flow: column wrap;
  background: var(--cl-gray);
  min-height: 300px;
  margin-top: -25px;
  padding: 0 !important;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
#__about_video {
  padding: 0 0 10px;
  height: auto;
}
#__about_video iframe {
  width: 100%;
  height: 500px;
}
#__about_us > div {
  padding: 15px;
}
/* #__about_us h3 {
    text-transform: uppercase;
    color: var(--cl-black-3)
} */
#__about_us img {
  display: none;
}
.__wrapper_content_text_about {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.__item_about_text {
  width: 100%;
  font-size: 1em;
  margin-block: 0.9375em;
}
.__item_about_text p {
  font-size: 0.875em;
}
.__item_about_text p strong {
  color: var(--cl-black-1);
}
/* END PRESENTATION ABOUT US*/

/* PRESENTATION SERVICES */
#__services {
  display: block;
  width: 100%;
  min-height: 100px;
  background: var(--bg-clare);
  margin-top: -15px;
  z-index: 8;
}
#__services > .__wrapper_info_services {
  display: flex;
  width: 100%;
  /* justify-content: space-evenly; */
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 15px;
  /* justify-content:center; */
  align-items: center;
}
#__services > .__wrapper_info_services:first-child {
  flex-direction: column;
}
#__services > .__wrapper_info_services:first-child h2 {
  margin-bottom: 20px;
}
.__wrapper_info_services svg {
  width: 60%;
}
.__item_info_service {
  display: block;
  width: 100%;
  max-height: 400px;
}
.__item_info_service h4 {
  color: var(--cl-black-1);
  margin-bottom: 20px;
}
.__item_info_service strong {
  color: var(--cl-black-1);
}
/* END SERVICES */

/* PRESENTATION BENEFITS*/
#__benefits,
#__colaboradores {
  background: var(--cl-gray);
  margin-top: -15px;
  z-index: 7;
}
.__wrapper_items_benefits {
  display: flex;
  width: 100%;
  min-height: 100px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.__wrapper_items_colaboradores {
  display: flex;
  width: 100%;
  min-height: 100px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.__wrapper_items_benefits > .__item_benefit,
.__wrapper_items_colaboradores > .__item_colaborador {
  margin: 10px;
}
.__item_benefit,
.__item_colaborador {
  display: block;
  width: 269px;
  height: 269px;
  background: var(--bg-clare);
  border-radius: 16px;
  box-shadow: var(--bx-shadow);
}
.__item_benefit > div,
.__item_colaborador > div {
  padding: 10px;
}
.__item_benefit_head,
.__header_contact_team {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
}
.__item_benefit_head strong {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--cl-black-1);
  margin-left: 4px;
}
/* END BENEFITS*/
/*PRESENTATION TEAM*/
#__team {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  background: var(--bg-clare);
  z-index: 6;
  margin-top: -15px;
}
.__wrapper_contact_team {
  display: block;
  width: 70%;
  height: auto;
  background: var(--cl-primary);
  padding: 10px;
  border-radius: 10px;
  /* box-shadow: rgba(80, 80, 80, 0.439) 0px 4px 12px; */
}
.__wrapper_contact_team h3,
.__wrapper_contact_team p {
  color: #fff;
}
.__contact_team_footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 20px;
}
.__contact_team_footer a {
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  color: var(--cl-primary);
  font-family: "SF-Bold";
  font-size: 16px;
}
/* END TEAM*/
/* TERMINOS Y CONDICIONES*/
#__terminos,
#__privacidad {
  background: #fff;
}
#__terminos h3,
#__terminos p,
#__terminos strong,
#__privacidad h3,
#__privacidad p,
#__privacidad strong {
  color: #000;
}
#__terminos p,
#__privacidad p {
  margin-bottom: 10px;
  text-align: justify;
}
.__privacidad_list_abc {
  list-style-type: upper-latin;
}
.__privacidad_list_abc,
.__privacidad_list_normal {
  padding: 0 35px;
  margin-bottom: 10px;
}
.__privacidad_list_abc > li,
.__privacidad_list_normal > li {
  margin: 5px 0;
}
#__preguntas {
  padding-bottom: 30px;
  min-height: calc(100vh - 429px);
  background: #fff;
}
.__wrapper_question_details {
  display: block;
  background: rgba(99, 91, 255, 0.1);
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-block: 10px;
  margin-bottom: 5px;
}
.__wrapper_question_details strong {
  font-family: "SF-Bold";
  color: var(--cl-black-1);
}
.__wrapper_question_details[open] {
  background: hsla(219, 100%, 73%, 0.05);
}
.__wrapper_question_details[open] summary {
  border-bottom: 1px solid #dbdbdb;
}
.__wrapper_question_details[open] .arrowDown {
  transform: rotate(180deg);
}
.__wrapper_question_details summary {
  padding-left: 15px;
  color: var(--cl-black-1);
  padding: 10px 10px 10px 20px;
  display: flex;
  align-items: center;
  font-family: "SF-Medium";
  position: relative;
  transition: all 0.3s ease;
}
.__wrapper_question_details summary {
  cursor: pointer;
}
.__wrapper_question_details > div {
  padding: 10px;
}
.__wrapper_question_details p {
  text-align: justify;
  margin-bottom: 5px;
  color: var(--cl-black-1);
}
.__wrapper_question_details summary::marker {
  color: transparent;
}
.__wrapper_question_details summary svg {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  transition: all 0.3s ease;
}
/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 25px 15px 15px 15px;
  background: var(--cl-gray);
  z-index: 5;
  margin-top: -15px;
  font-size: 14px;
}
footer > p {
  font-size: 0.75em;
  color: var(--cl-black-3);
}
.__wrapper_footer {
  display: flex;
  flex-flow: column;
  width: 100%;
  min-height: 180px;
  padding: 5px;
  font-size: 1em;
}
.__wrapper_footer_social {
  display: block;
  width: 40%;
  font-size: 0.875em;
}
.__wrapper_footer_social p {
  color: var(--cl-black-2);
  margin-block: 10px;
}
.__wrapper_footer_social ul {
  display: flex;
  list-style: none;
  flex-flow: row;
}
.__wrapper_footer_social ul li {
  margin: 0 5px;
}
.__wrapper_footer_social ul li:first-child {
  margin-left: 0;
}
.__wrapper_footer_store li a {
  display: flex;
  width: auto;
  height: 44px;
  justify-content: center;
  align-items: center;
  background: var(--bg-opaque);
  padding: 8px 10px;
  border-radius: 8px;
}
.__wrapper_footer_social_item {
  display: flex;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  background: var(--bg-opaque);
  padding: 8px 10px;
  border-radius: 8px;
}
.__wrapper_footer_contact {
  flex: 1;
  display: flex;
  justify-content: row;
  margin: 20px 0;
}
.__footer_contact_item {
  font-size: 12px;
  margin-right: 10px;
}
.__footer_contact_item ul {
  margin-top: 5px;
  list-style: none;
  font-size: 1em;
}
.__footer_contact_item ul li {
  padding: 5px 5px 5px 0;
  color: var(--cl-black-2);
  font-size: 1em;
}
.__footer_contact_item ul li > a {
  color: var(--cl-black-2);
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.__wrapper_footer li:hover > a {
  font-family: "SF-Bold";
  color: var(--cl-primary);
}
.__wrapper_footer li:hover rect {
  fill: var(--cl-primary);
  cursor: pointer;
}
/* END FOOTER */
@media screen and (min-width: 409px) {
  #__preguntas {
    min-height: calc(100vh - 415px);
  }
}
@media screen and (min-width: 480px) {
  #__preguntas {
    min-height: calc(100vh - 347px);
  }
  nav {
    width: 70%;
    /* font-size: 18px; */
  }
  nav > .__btn {
    display: none !important;
  }
  nav ul {
    align-items: center;
    position: static;
    width: 100%;
    height: 100%;
    flex-flow: row;
    justify-content: flex-end;
    background: #fff;
    gap: 0;
  }
  nav ul li {
    margin-left: 10px;
    font-size: 12px;
  }
  nav ul li {
    padding: 0;
  }
  nav ul li:hover > a::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    background: var(--cl-primary);
    left: 0;
    bottom: -12px;
    border-radius: 5px;
    /* margin: 0 auto !important; */
  }
  nav ul li:hover > a {
    font-weight: 900;
    color: var(--cl-black-1);
  }
  #__about_us {
    height: 300px;
    flex-flow: row;
  }
  #__about_us img {
    display: block;
    width: 30%;
    object-fit: cover;
    /* max-height:300px; */
  }
  #__about_us > div {
    width: 70%;
  }
  .__item_about_text {
    width: 50%;
    padding-left: 10px;
  }
  .__wrapper_content_text_about > div:first-child {
    border-right: 1px solid var(--cl-black-4);
  }
  #__services > .__wrapper_info_services {
    justify-content: space-evenly;
    align-items: none;
    flex-direction: row-reverse;
  }
  #__services > .__wrapper_info_services:first-child {
    flex-direction: row;
  }
  .__item_info_service {
    width: 50%;
  }
  .__wrapper_info_services svg {
    width: 300px;
  }
  .__wrapper_footer {
    flex-flow: row;
  }
  .__wrapper_footer_contact {
    justify-content: space-evenly;
  }
}
@media screen and (min-width: 655px) {
  #__preguntas {
    min-height: calc(100vh - 324px);
  }
}
@media screen and (min-width: 850px) {
}
@media screen and (min-width: 585px) {
  .__header_content {
    width: 80%;
  }
  #__presentation {
    font-size: 18px;
  }
  .__wrapper_content_text_screen {
    width: 50%;
  }
  #__presentation svg {
    width: 50%;
  }
}
@media screen and (min-height: 810px) {
  #__presentation {
    min-height: 60vh;
  }
}
@media screen and (min-width: 1400px) {
  .__header_content,
  main {
    width: 750px;
  }
}
