/* GERAL  */

html * {
  font-family: "Poppins", sans-serif !important;
}

body {
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Poppins", sans-serif;
  font-display: swap;
  src: local(Poppins),
    url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap);
}

div#main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div#gradient-container {
  width: 100%;
  /* max-height: 780px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    80deg,
    #010411 54.19%,
    #050a30 66.15%,
    #0a125e 80.99%,
    #0a1672 97.03%
  );
}

/* BOTÃO WHATSAPP */

div#whatsapp-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 100;
}

div#whatsapp-button img {
  z-index: 2;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.2));
}

div#whatsapp-button div {
  border-radius: 0px 12px 12px 0px;
  background: var(--Support-s-whatsapp, #0f612d);
  width: 250px;
  height: 48px;
  flex-shrink: 0;
  /* position: absolute; */
  margin-left: -15px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
}

div#whatsapp-button div:hover {
  border-radius: 0px 12px 12px 0px;
  border: 2px solid var(--Support-s-whatsapp, #0f612d);
  background: var(--Neutrals-n-50, #f4f7f9);
  width: 246px;
  height: 44px;
}

div#whatsapp-button div:hover p {
  color: var(--Support-s-whatsapp, #0f612d);
}

div#whatsapp-button div p {
  color: var(--Neutrals-n-50, #f4f7f9);
  font-family: Poppins;
  font-size: 18px;
  line-height: 16px; /* 88.889% */
}

@media only screen and (max-width: 1599px) {
  div#whatsapp-button {
    bottom: 30px;
    right: 30px;
  }

  div#whatsapp-button img {
    width: 44px;
    height: 44px;
    min-height: 44px;
    min-width: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  div#whatsapp-button div {
    width: 208px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 0px 8px 8px 0px;
  }

  div#whatsapp-button div:hover {
    border-radius: 0px 8px 8px 0px;
    width: 204px;
    height: 34px;
  }

  div#whatsapp-button div p {
    font-size: 15px;
    line-height: 16px; /* 106.667% */
  }
}

/* CORES */

:root {
  --Destaque: #3347ff;
  --Destaque-Hover: #052159;
  --Branco: #f4f7f9;
  --Preto: #03050f;
  --Neutrals_n-900: #03050f;
  --Branco---Acronn: #ededed;
  --Neutrals_n-200: #e7e7e7;
  --neutrals-n-50: #f4f7f9;
  --support-s-orange: #dd920b;
  --Neutrals-n-600: #57585f;
  --Support-s-red: #ff1f1f;
}

/* BOTÕES */

/* Button/button-large */
.button1 {
  padding: 0 32px;
  min-height: 52px;
  height: 64px;
  width: auto;
  border-radius: 16px;
  background: var(--Destaque);
  cursor: pointer;
  border: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Branco);
  transition: 0.3s;
}

/* Button/button-medium */
.button2 {
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 88.889% */
  min-height: 48px;
  height: 100%;
  border-radius: 12px;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  background-color: var(--Destaque);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.button1:hover,
.button2:hover {
  background-color: var(--Destaque-Hover);
}

/* HEADINGS E PARAGRÁFOS */

/* Heading/heading-01 */
.heading1 {
  font-family: Poppins;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 100% */
}

/* Heading/heading-02 */
.heading2 {
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
}

/* Paragraph/paragraph-01 */
.paragraph1 {
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 139.13% */
}

/* Paragraph/text-quote */

.text-quote {
  font-family: Poppins;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

/* HEADER */

div#main header {
  width: calc(100% - 160px);
  margin: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 64px;
  font-size: 16px;
  line-height: 24px;
}

header nav ul li a {
  color: var(--Branco);
  text-decoration: none;
}

header nav ul li a:hover {
  text-decoration: underline;
}

#menu-mobile {
  display: none;
}

#menu-mobile-content {
  display: none;
}

/* SEÇÃO PRINCIPAL */

section#main {
  max-width: 1376px;
  /* width: 100% - 48px; */
  color: var(--Branco);
  justify-content: center;
  margin: 52px 24px 0 24px;
  display: flex;
}

/* SEÇÃO PRINCIPAL > CONTAINER ESQUERDA */
section#main > #left {
  width: 656px;
}

section#main > #left > #presentation {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.whatsapp-button-wrapper {
  position: relative;
  width: 368px; /* 328 + 40 */
  height: 56px;
}

.whatsapp-button-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  z-index: 2;
}

.whatsapp-button-text {
  position: absolute;
  left: 40px;
  top: 4px;
  width: 328px;
  height: 48px;
  padding: 16px 20px 16px 28px;
  box-sizing: border-box;
  background: #0f612d;
  border: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  color: var(--Branco);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1;
}

section#main > #left > #presentation button:hover {
  border: 2px solid #0f612d;
  background-color: white;
  color: var(--Support-s-whatsapp, #0f612d);
  font-family: Poppins;
  font-size: 18px;
  line-height: 16px;
  padding: 14px 18px 14px 26px;
}

section#main > #left > #citations {
  margin-top: 80px;
}

section#main > #left > #citations .citation {
  display: grid;
  grid-template-columns: calc(120px + 24px) auto;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "image name"
    "image text"
    "image bullets";
}

#citations .citation h3 {
  grid-area: name;
}

#citations .citation p {
  grid-area: text;
  margin: 8px 0;
}

section#main > #left > #citations .citation img {
  max-width: 120px;
  max-height: 120px;
  min-width: 120px;
  min-height: 120px;
  width: 100%;
  height: 100%;
  margin-right: 24px;

  grid-area: image;

  border-radius: 16px;

  object-fit: cover;
}

#citations .citation #bullets {
  display: flex;
  gap: 8px;
  grid-area: bullets;
}

#citations .citation .bullet {
  width: 16px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--Branco);
  cursor: pointer;
}

#citations .citation .bullet.active {
  background-color: var(--Destaque);
  width: 48px;
}

#satisfied-clients {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  /* margin-top: calc(58px - 32px); */
  color: var(--neutrals-n-50);
  font-size: 23px;
  text-align: center;
  margin-bottom: 82px;
}

#stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#stars img {
  width: 33.88px;
  height: 32px;
  min-width: 33.88px;
  min-height: 32px;
  max-width: 33.88px;
  max-height: 32px;
}

/* SEÇÃO PRINCIPAL > CONTAINER DIREITA */

section#main > #right {
  margin-top: -101px;
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
}

section#main > #right img {
  min-width: 200px;
  width: 100%;
  object-fit: contain;
  height: 100%;
  margin-bottom: -20px;
}

/* SEÇÃO PRINCIPAL > RESPONSIVO */

@media only screen and (max-width: 1599px) {
  header nav ul {
    font-size: 13px;
    line-height: 16px;
    gap: 40px;
  }
  .heading1 {
    font-size: 36px;
    line-height: 40px;
  }
  section#main > #left #presentation p {
    font-size: 15px;
    line-height: 20px;
  }
  .whatsapp-button-wrapper {
    width: 317px;
  }
  section#main {
    width: 1024px;
    margin: 0;
    padding: 52px 24px 0 24px;
  }
  section#main > #left #presentation button {
    width: 290px;
    height: 38px;
    left: 20px;
    font-size: 15px;
    line-height: 16px;
  }
  .whatsapp-button-wrapper img {
    width: 44px;
    height: 44px;
  }
  section#main > #left > #presentation button:hover {
    font-size: 15px;
    line-height: 16px;
    padding: 14px 18px 14px 26px;
  }
  #satisfied-clients {
    font-size: 15px;
    margin-top: calc(39px - 32px);
    margin-bottom: 32px;
  }
  #stars img {
    width: 25.41px;
    height: 24px;
    min-width: 25.41px;
    min-height: 24px;
    max-width: 25.41px;
    max-height: 24px;
  }
}

@media only screen and (max-width: 1023px) {
  section#main {
    width: 100%;
    margin: 0;
    padding: 32px 24px 0 24px;
  }
  section#main > #left > #citations {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  section#main > #right {
    align-self: flex-end;
  }

  section#main > #left > #citations .citation img {
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin: 0 8px 0 0;
    border-radius: 8px;
  }

  #citations .citation {
    grid-template-columns: calc(40px + 8px) auto !important;
    grid-template-rows: auto auto auto !important;
    grid-template-areas:
      "image name"
      "text text"
      "bullets bullets" !important;
  }

  #citations .citation h3 {
    font-size: 22px;
  }

  #citations .citation p {
    font-size: 12px;
    margin: 16px 0;
  }

  #citations .citation #bullets {
    justify-self: center;
  }

  div#main header {
    justify-content: center;
    margin: 40px 24px;
    position: relative;
    width: calc(100% - 48px);
    gap: 30px;
  }

  div#main header nav {
    display: none;
  }

  #menu-mobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
  }

  #menu-mobile img {
    cursor: pointer;
    width: 24px;
    height: 24px;
  }

  #menu-mobile #menu-mobile-content {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 35px;
    background-color: white;
    opacity: 0;
    border-radius: 10px;
    padding: 10px;
  }

  #menu-mobile #menu-mobile-content ul li {
    cursor: pointer;
    padding: 10px;
  }

  #menu-mobile #menu-mobile-content ul li a {
    text-decoration: none;
    color: var(--Destaque);
  }

  #menu-mobile #menu-mobile-content ul li:hover {
    text-decoration: underline;
  }

  .active-menu {
    opacity: 1 !important;
  }
  section#main > #right {
    display: none;
  }
  section#main > #left {
    width: 100%;
  }
}
@media only screen and (max-width: 360px) {
  section#main > #left {
    width: 312px;
  }
}

/* SEÇÃO VIDEO */

section#video {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px 0;
}

section#video #video-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

/* Make media queries to adjust video size */

@media only screen and (max-width: 1400px) {
  section#video #video-container {
    width: 70%;
  }
}

@media only screen and (max-width: 1300px) {
  section#video #video-container {
    width: 60%;
  }
}

@media only screen and (max-width: 1160px) {
  section#video #video-container {
    width: 60%;
  }
}

@media only screen and (max-width: 870px) {
  section#video #video-container {
    width: 80%;
  }
}

@media only screen and (max-width: 759px) {
  section#video #video-container {
    width: 90%;
  }
}

/* SEÇÃO MIDIAS */

section#midias {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--Preto);
  padding: 40px 0;
  gap: 24px;
}

section#midias > h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px; /* 123.077% */
  color: var(--Branco);
}

section#midias > #midias-container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: center;
  margin: 0 80px;
}

/*  media queries */

@media only screen and (max-width: 1599px) {
  section#midias h2 {
    font-size: 16px;
    line-height: 24px;
  }

  section#midias > #midias-container {
    gap: 24px;
  }

  #r7 {
    width: 35.104px;
    height: 30px;
  }

  #estadao {
    width: 93.357px;
    height: 20px;
  }

  #g1 {
    width: 26.371px;
    height: 30px;
  }

  #quatro-rodas {
    width: 81.165px;
    height: 22px;
  }

  #uol {
    width: 65.874px;
    height: 25px;
  }

  #terra {
    width: 90.719px;
    height: 25px;
  }

  #record-tv {
    width: 41.677px;
    height: 40px;
  }
}

@media only screen and (max-width: 759px) {
  section#midias > #midias-container {
    width: calc(100% - 24px - 24px);
    margin: 0;
    padding: 0 24px;
    justify-content: start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
}

/* SECTION EMPRESA */

section#company {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1376px;
}

section#company h3 {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  line-height: 40px; /* 125% */
  margin: 80px 24px;
}

#texts-container {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  row-gap: 64px;
  margin-bottom: 120px;
}

#texts-container .box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

#texts-container .box > img {
  height: auto;
}

#texts-container .box h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px; /* 123.077% */
}

#texts-container .box p {
  font-size: 23px;
  font-weight: 400;
  line-height: 32px; /* 139.13% */
}

#texts-container .box .icon {
  display: none;
}

section#company > #images {
  margin-bottom: 120px;
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(24, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

section#company > #images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

section#company > #images img:first-child {
  grid-column: 1 / 13;
}

section#company > #images img:nth-child(2) {
  grid-column: 13 / 25;
}

section#company > #images img:nth-child(3) {
  grid-column: 1 / 12;
}

section#company > #images img:last-child {
  grid-column: 12 / 25;
}

@media only screen and (max-width: 700px) {
  section#company > #images {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 10px;
  }

  section#company > #images img {
    min-width: 70%;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
  }

  section#company > #images img:first-child {
    margin-left: 15px;
  }

  section#company > #images img:last-child {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 1599px) {
  section#company {
    width: 1024px;
  }
  section#company h3 {
    font-size: 22px;
    line-height: 32px; /* 145.455% */
    margin: 40px 24px;
  }

  section#company > #images {
    gap: 10px;
  }

  #texts-container {
    margin: 0 24px 80px 24px;
  }

  #texts-container .box img.icon-topic {
    width: 32px;
  }

  #texts-container .box h4 {
    font-size: 16px;
    line-height: 24px; /* 150% */
  }

  #texts-container .box p {
    font-size: 15px;
    line-height: 20px; /* 133.333% */
  }
}

@media only screen and (max-width: 1023px) {
  section#company {
    width: 100%;
    margin: 0px 0px;
  }
  section#company h3 {
    width: 100%;
  }
  #texts-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    width: calc(100vw - 48px);
  }

  #texts-container .box {
    grid-template-columns: 32px 1fr 24px;
    grid-template-rows: auto auto;
    grid-template-areas:
      "icon title button"
      "description description description";
    gap: 12px;
    align-items: center;
    cursor: pointer;
  }

  #texts-container .box .icon {
    grid-area: button;
    display: block;
    cursor: pointer;
  }

  #texts-container .box h4 {
    grid-area: title;
  }

  #texts-container .box p {
    grid-area: description;
    display: none;
  }

  #texts-container .placeholder {
    grid-area: icon;
  }

  #texts-container .box p.active {
    display: block;
  }

  #texts-container .icon.rotate {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 480px) {
  section#company h3 {
    width: 312px;
  }
}

/* SECTION TAXAS DE SUCESSO  */

section#success-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: var(--Branco);

  background: linear-gradient(
    80deg,
    #010411 54.19%,
    #050a30 66.15%,
    #0a125e 80.99%,
    #0a1672 97.03%
  );
}

section#success-rate #video-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

section#success-rate #wrapper {
  max-width: 1376px;
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  margin: 0 24px;
}

section#success-rate h3 {
  margin: 80px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px; /* 125% */
  text-align: center;
}

section#success-rate #content {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 120px;
  justify-content: space-between;
  gap: 100px;
}

section#success-rate #content img {
  width: 100%;
  max-width: 656px;
  min-width: 312px;
  border-radius: 24px;
  height: auto;
}

section#success-rate #content #list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section#success-rate #content .list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

section#success-rate #content .list-item div {
  min-width: 6px;
  min-height: 6px;
  max-width: 6px;
  max-height: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--Branco);
  border-radius: 1000px;
}

section#success-rate #content .list-item p {
  font-size: 23px;
  font-weight: 400;
  line-height: 32px; /* 139.13% */
}

@media only screen and (max-width: 1599px) {
  section#success-rate h3 {
    font-size: 22px;
    line-height: 32px; /* 145.455% */
  }

  section#success-rate #content .list-item p {
    font-size: 15px;
    line-height: 20px; /* 133.333% */
  }

  section#success-rate #content .list-item div {
    width: 4px;
    height: 4px;
  }
  section#success-rate #wrapper {
    width: 1024px;
  }
  section#success-rate #content {
    gap: 30px;
    justify-content: center;
  }
  section#success-rate #video-container {
    width: 544px;
  }
}
@media only screen and (max-width: 1023px) {
  section#success-rate #wrapper {
    width: 100%;
    margin: 0;
    padding: 0 24px;
  }
  section#success-rate #content #list {
    align-items: center;
    margin-left: 3%;
  }
  section#success-rate #video-container {
    width: 312px;
  }
  section#success-rate h3 {
    text-align: center;
  }

  section#success-rate #content {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
  }

  section#success-rate h3 {
    margin: 40px 0;
  }
}

/* SEÇÃO DEPOIMENTOS */

#testimonials {
  width: 100%;
  height: 836px;
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #f4f7f9;
}

#testimonials .background-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 955px;
  height: 836px;
  background-image: url("assets/images/background-2025.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

#testimonials .container {
  width: 1376px;
  height: 836px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
}

#testimonials .left-column {
  width: 544px;
  height: 264px;
  position: relative;
  top: 202px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#testimonials .left-column h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  color: #03050f;
}

#testimonials .left-column p {
  font-weight: 400;
  font-size: 23px;
  line-height: 32px;
  color: #03050f;
}

#testimonials .container button {
  width: 374px;
  height: 64px;
  padding: 0 32px;
  box-sizing: border-box;
  background-color: #3347ff;
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  top: 527px;
  left: 24px;
  cursor: pointer;
  position: absolute;
}
#testimonials .container button:hover {
  background-color: var(--Destaque-Hover);
}
#testimonials .container .btn-left {
  display: none;
}

.card {
  width: 320px;
  height: 365px;
  background-color: #f4f7f9;
  border-radius: 32px;
  padding: 72px 40px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 106px;
  left: 696px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  text-align: center;
  z-index: 1;
}

.card .client-name {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: #03050f;
}
.card .client-profession {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.card .client-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}
.card .client-text .highlight {
  font-style: normal;
}
.card .client-text .highlight {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #3347ff;
}
.card .client-photo {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* EVAIR CARD */

.card.card-evair {
  height: 365px;
  left: 1035px;
  padding: 32px 40px 0 40px;
  gap: 35px;
}

.card-evair .stars {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-evair .client-info {
  width: 320px;
  height: 128px;
  background-color: #e7e7e7;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.card-evair .client-info .client-photo {
  position: static;
  border-radius: 50%;
  object-fit: cover;
  transform: none;
}

/* BRUNO CARD */
.card-bruno {
  width: 656px;
  height: 199px;
  top: 525px;
  left: 696px;
  padding: 32px 40px 32px 100px;
  border-radius: 32px;
  background-color: #f4f7f9;
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-bruno .bruno-photo {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  top: 50%;
  left: -56px;
  transform: translateY(-50%);
  z-index: 1;
}

.highlight-text {
  text-align: left;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #3347ff;
}

.description-text {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}
.card-bruno .quote-icon {
  position: absolute;
  top: -40px;
  right: 40px;
  z-index: 2;
}

.card-bruno .client-info {
  margin-top: 16px;
}

.card-bruno .client-name,
.card-bruno .client-profession {
  text-align: left;
}

.card-bruno .stars {
  position: absolute;
  bottom: 32px;
  right: 46px;
  width: auto;
}

.card-mobile {
  display: none;
}

#testimonial-dots {
  display: none;
}

@media only screen and (max-width: 1599px) {
  .card,
  .card-bruno,
  .card-evair {
    display: none;
  }
  #testimonials {
    height: 446px;
    overflow: hidden;
  }
  #testimonials .container {
    width: 1024px;
    height: auto;
    align-items: flex-start;
    display: grid;
    grid-template-columns: 40% 1fr;
    justify-content: center;
    padding-left: 40px;
  }
  #testimonials .left-column {
    width: 100%;
    height: auto;
    padding-top: 80px;
    max-width: 384px;
    position: static;
    gap: 32px;
  }
  #testimonials .left-column h2 {
    font-size: 28px;
    line-height: 36px;
  }
  #testimonials .left-column p {
    font-size: 15px;
    line-height: 20px;
  }
  #testimonials .container button {
    display: none;
  }
  #testimonials .container .btn-left {
    display: block;
    width: 312px;
    height: 52px;
    font-size: 21px;
    line-height: 24px;
    padding: 0;
    position: static;
  }
  #testimonials .container .btn-left:hover {
    background-color: var(--Destaque-Hover);
  }
  #testimonials .right-column {
    margin-top: 140px;
  }
  .card-mobile {
    width: 320px;
    height: 190px;
    position: relative;
    background: #f4f7f9;
    border-radius: 32px;
    text-align: center;
    display: grid;
    margin: 0 auto;
    box-shadow: 1px 1px 16px 0px #0000004d;
  }

  .client-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -56px;
    left: 40px;
  }

  .stars-mobile img {
    position: absolute;
    top: -13px;
    left: 164px;
  }

  .highlight {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #3347ff;
  }

  .client-text {
    width: 272px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    font-style: italic;
  }
  .client-text .highlight {
    font-style: normal;
  }

  .client-name {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .client-profession {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
  }

  #testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  #testimonial-dots .dot {
    display: inline-block;
    width: 16px;
    height: 8px;
    border-radius: 8px;
    background: #57585f;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
  }
  #testimonial-dots .dot.is-active {
    width: 48px;
    height: 8px;
    border-radius: 8px;
    background: #3347ff;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1599.98px) {
  #testimonials .background-right {
    width: 508px;
    background-image: url(assets/images/bg-3.png);
    height: 446px;
  }
}
@media only screen and (max-width: 1023px) {
  section#testimonials {
    height: auto;
    overflow: hidden;
  }
  section#testimonials .container {
    padding: 40px 24px 40px;
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    align-items: center;
  }
  #testimonials .background-right {
    opacity: 50%;
    background-image: url(assets/images/bg-2.png);
    width: 100%;
    top: 183px;
  }
  #testimonials .left-column {
    width: 100%;
    max-width: 100%;
    height: auto;
    top: auto;
    left: auto;
    text-align: center;
    gap: 14px;
    padding: 0;
  }

  #testimonials .right-column {
    margin-top: 50px;
  }
  .card-slider::-webkit-scrollbar {
    display: none;
  }

  .card,
  .card-bruno,
  .card-evair {
    display: none;
  }

  .card-mobile {
    width: 320px;
    height: 190px;
    position: relative;
    background: #f4f7f9;
    border-radius: 32px;
    text-align: center;
    display: grid;
    margin: 0 auto;
    box-shadow: 1px 1px 16px 0px #0000004d;
  }

  .client-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -56px;
    left: 40px;
  }

  .stars-mobile img {
    position: absolute;
    top: -13px;
    left: 164px;
  }

  .highlight {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #3347ff;
  }

  .client-text {
    width: 272px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }

  .client-name {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .client-profession {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
  }
  #testimonials .container .btn-left {
    display: none;
  }
  #testimonials .container button {
    width: 312px;
    height: 52px;
    font-size: 21px;
    line-height: 24px;
    padding: 0;
    position: static;
    display: block;
    margin: 16px auto 0;
  }
  #testimonials .container button:hover {
    background-color: var(--Destaque-Hover);
  }

  #testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  #testimonial-dots .dot {
    display: inline-block;
    width: 16px;
    height: 8px;
    border-radius: 8px;
    background: #57585f;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
  }
  #testimonial-dots .dot.is-active {
    width: 48px;
    height: 8px;
    border-radius: 8px;
    background: #3347ff;
  }
}
@media only screen and (max-width: 360px) {
  #testimonials .background-right {
    width: 360px;
    height: 315px;
  }
}

/* SEÇÃO NOSSOS SERVIÇOS */

section#services {
  /* padding: 80px 0; */
  background-color: var(--neutrals-n-900, #03050f);
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--neutrals-n-50, #f4f7f9);
  flex-direction: column;
}

section#services a {
  text-decoration: none;
  color: var(--Branco);
}

section#services a:visited {
  color: inherit;
}

section#services > #content {
  max-width: 1376px;
  display: flex;
  justify-content: space-between;
  margin: 0 24px;
  align-items: center;
  gap: 50px;
}

section#services > #content img.main-image {
  width: 656px;
  height: 846px;
}

section#services > #content #texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 656px;
}

section#services > #content #texts h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 48px; /* 109.091% */
}

section#services > #content #texts > p {
  font-size: 23px;
  line-height: 32px; /* 139.13% */
}

section#services > #content #texts #services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  margin-top: 32px;
}

section#services > #content #texts .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* section#services > #content #texts .service .bullet {
  width: 8px;
  height: 24px;
  background: var(--primary-main-default, #3347ff);
} */

section#services > #content #texts .service > p {
  font-size: 23px;
  font-weight: 700;
  line-height: 32px; /* 123.077% */
}

@media only screen and (max-width: 1599px) {
  section#services > #content {
    width: 1024px;
    align-items: flex-start;
    padding: 40px 40px 0;
    margin: 0;
  }
  section#services > #content #texts {
    gap: 20px;
  }

  section#services > #content #texts h2 {
    font-size: 28px;
    line-height: 36px; /* 128.571% */
  }

  section#services > #content #texts > p {
    font-size: 15px;
    line-height: 20px; /* 133.333% */
  }

  section#services > #content #texts #services-list {
    gap: 20px;
  }
   #services-list > .service > img {
    width: 36px;
  }
  section#services > #content #texts .service > p {
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
  section#services > #content img.main-image {
    width: 50%;
    height: auto;
    max-width: 656px;
  }
}

@media only screen and (max-width: 1023px) {
  section#services > #content {
    width: auto;
    margin: 40px 24px 80px 24px;
    padding: 0;
  }
  section#services > #content #texts {
    width: 100%;
  }
  section#services > #content img.main-image {
    display: none;
  }
  section#services > #content #texts #services-list {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas lado a lado */
    grid-template-rows: repeat(3, auto);
  }
}
@media only screen and (max-width: 360px) {
  section#services > #content {
    width: 312px;
    align-items: start;
  }
  section#services > #content #texts #services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  section#services > #content img.main-image {
    display: none;
  }
  #services-list > .service > img {
    width: 36px;
  }
  section#services > #content #texts .service > p {
    font-size: 15px;
    line-height: 20px;
    width: 124px;
  }
}

/* SEÇÃO ENDING */

section#ending {
  width: 100%;
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #f4f7f9;
}

section#ending #content {
  display: flex;
  flex-direction: column;
  margin: 0 24px;
  text-align: center;
  align-items: center;
  width: 1376px;
}

section#ending #content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 48px; /* 128.571% */
  margin-bottom: 24px;
}

section#ending #content p {
  margin-bottom: 60px;
  font-size: 23px;
  width: 90%;
  line-height: 32px; /* 133.333% */
}

section#ending #content p strong {
  font-weight: 700;
}

section#ending button {
  display: inline-flex;
  width: 411px;
  height: 64px;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 12px;

  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  background: var(--Primary-main-default, #3347ff);
  color: var(--Neutrals-n-50, #f4f7f9);
  text-align: center;
  border: 0;
  cursor: pointer;
}

section#ending button:hover {
  background-color: var(--Destaque-Hover);
}

@media only screen and (max-width: 1599px) {
  .responsive-br {
    display: none;
  }
  section#ending {
    width: 100%;
    padding: 40px 0 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #f4f7f9;
  }
  section#ending #content {
    width: 1024px;
  }
  section#ending #content h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 24px;
    width: 944px;
  }
  section#ending #content p {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    width: 100%;
    padding: 0 24px;
  }
  section#ending button {
    display: block;
    padding: 0px 16px;
    align-items: center;
    width: 336px;
    height: 52px;
    font-size: 21px;
    line-height: 24px;
    font-weight: 400;
  }
}

@media only screen and (max-width: 1023px) {
  section#ending #content,
  section#ending #content h2 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  section#ending #content {
    width: 312px;
  }
  section#ending #content h2 {
    padding: 0;
  }
  section#ending #content p {
    padding: 0;
  }
}

/* seção artigos */

#articles {
  width: 100%;
  padding: 160px 0 64px 0;
  background-color: #f4f7f9;
  display: flex;
  justify-content: center;
}

.articles-wrapper {
  width: 1376px;
  left: 272px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

.latest-articles {
  width: 880px;
  order: 1;
}

.most-read-articles {
  width: 432px;
  order: 2;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}

.section-title .title-bar {
  width: 8px;
  height: 24px;
  background-color: #3347ff;
}

.section-title .title-line {
  flex-grow: 1;
  height: 4px;
  background-color: #e7e7e7;
}

.latest-articles ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-articles li {
  display: grid;
  gap: 8px;
}

.latest-articles h4 a {
  color: #03050f;
  text-decoration: none;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
}

.latest-articles li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #57585f;
}

.article-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #57585f;
  font-style: italic;
}

.most-read-articles ol {
  display: grid;
  gap: 40px;
}

.most-read-articles li {
  display: flex;
  gap: 16px;
}
.most-read-articles .rank {
  font-weight: 700;
  font-size: 64px;
  color: #3347ff;
  line-height: 64px;
}

.most-read-articles h4 a {
  color: #03050f;
  text-decoration: none;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
}
@media only screen and (max-width: 1599px) {
  #articles {
    width: 100%;
    padding: 80px 0 64px 0;
    background-color: #f4f7f9;
    display: flex;
    justify-content: center;
  }
  .articles-wrapper {
    width: 1024px;
    padding: 24px 40px;
  }
  .section-title {
    font-size: 16px;
    line-height: 24px;
  }
  .latest-articles h4 a,
  .most-read-articles h4 a {
    font-size: 15px;
    line-height: 20px;
  }
  .most-read-articles .rank {
    font-size: 40px;
    line-height: 40px;
  }
  .most-read-articles li {
    align-items: center;
  }
  .most-read-articles ol {
    gap: 24px;
  }
}

@media only screen and (max-width: 1023px) {
  .articles-wrapper {
    flex-direction: column;
    width: 90%;
    padding: 0;
  }

  .latest-articles {
    order: 2;
    width: 100%;
  }
  .latest-articles ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .latest-articles li p {
    font-size: 13px;
    line-height: 16px;
  }
  .article-date {
    font-size: 12px;
    line-height: 16px;
  }
  .most-read-articles {
    order: 1;
    width: 100%;
  }
}

@media only screen and (max-width: 360px) {
  .articles-wrapper {
    width: 312px;
  }
  .latest-articles {
    width: 312px;
  }
  .most-read-articles {
    width: 312px;
  }
}

/* FOOTER */

#rodape-custom {
  background: #03050f;
  width: 100%;
  padding-bottom: 50px;
}

#rodape-custom .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  font-size: 10pt;
  padding: 0px;
  margin: 15px;
}

#rodape-custom .grid-container div li {
  margin: 10px;
}

#rodape-custom .grid-container div p {
  margin: 10px;
}

#rodape-custom .logo-drm {
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
}

#rodape-custom .rodape {
  bottom: 5px;
  font-size: 8pt;
  text-align: center;
}

#rodape-custom h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

#rodape-custom a,
#rodape-custom p {
  color: #b3c1c7;
  margin: 0;
}

#rodape-custom .rodape li {
  margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  #rodape-custom .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*MODAL E BOTÃO WHATSAPP*/

/* BOTÃO ANTIGO */
/* #whatsapp-button { 
  max-height: 40px;
  display: flex;
  align-items: center;
  background-color: #0f612d;
  font-size: 1rem;
  border-radius: 1000px;
  border: 0;
  padding: 15px 50px 15px 25px;
  color: white;
  justify-content: flex-start;
  padding-right: 50px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  position: fixed;
  bottom: 30px;
  right: 15px;
}

#whatsapp-button img {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}

#whatsapp-button:hover {
  background-color: #179646;
} */

/* MODAL */

#modal-background {
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  display: flex;
  transition: opacity 0.2s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
  z-index: 999;
  position: fixed;
  top: 0;
}

#modal {
  font-family: "Roboto", sans-serif;
  max-width: 500px;
  width: 100%;
  margin: 0 24px;
  border-radius: 16px;
  overflow: hidden;

  background: var(--Neutrals-n-50, #f4f7f9);
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.2);
}

#modal header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(
    --Gradient-g-01,
    linear-gradient(215deg, #3347ff 11.51%, #040a24 100.92%)
  );
  padding: 24px;

  color: var(--neutrals-n-50);
  font-size: 26px;
  font-weight: 700;
  line-height: 32px; /* 123.077% */
}

#modal header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

#modal #body {
  margin: 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#modal #body p#fields {
  line-height: 32px; /* 139.13% */
  color: var(--Neutrals_n-900);
  font-size: 23px;
  margin: 24px 0;
}

#modal #body p#erro {
  align-self: stretch;
  color: var(--Support-s-red);
  font-size: 16px;
  line-height: 24px; /* 150% */
  margin-bottom: 24px;
}

#modal #body input {
  border-radius: 8px;
  border: 1px solid var(--Neutrals-n-200, #e7e7e7);
  background: var(--Neutrals-white, #fff);
  width: 100%;
  height: 48px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding-left: 16px;

  color: var(--Neutrals-n-900);
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px; /* 150% */
}

#modal #body input#whatsapp {
  margin-bottom: 16px;
}

#modal #body input:focus {
  outline: 1px solid var(--Destaque);
}

#modal #body button {
  width: 100%;
  background: var(--Destaque);
  border: none;
  font-size: 18px;
  color: var(--neutrals-n-50);
  line-height: 16px; /* 88.889% */
  min-height: 44px;
  border-radius: 5px;
  margin: 24px 0 36px 0;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
  max-height: 48px;
  height: 48px;
  padding: 0 20px;
}

/* #modal #body button:hover {
  background-color: #155d96;
} */

@media only screen and (max-width: 1599px) {
  #modal {
    max-width: 320px;
  }

  #modal header {
    font-size: 16px;
    line-height: 24px; /* 150% */
  }

  #modal header img {
    width: 16px;
    height: 16px;
  }

  #modal #body {
    margin: 0 24px;
  }

  #modal #body p#fields {
    font-size: 15px;
    line-height: 20px; /* 133.333% */
    margin: 16px 0;
  }

  #modal #body p#erro {
    font-size: 13px;
    line-height: 16px; /* 123.077% */
    margin-bottom: 16px;
  }

  #modal #body input {
    height: 44px;
    font-size: 13px;
    line-height: 16px; /* 123.077% */
    margin-bottom: 8px;
  }

  #modal #body input#whatsapp {
    margin-bottom: 8px;
  }

  #modal #body button {
    margin: 16px 0 24px 0;
    font-size: 15px;
    line-height: 16px; /* 106.667% */
    min-height: 38px;
    max-height: 38px;
    height: 38px;
    padding: 0 16px;
  }
}
