/* Reset básico */
body,
h1,
h2,
h3,
p,
div,
footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f4f4;
}

  /* Seção Olhares de satisfação */

  .testimonials {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 80px 0px;
  }

  .testimonials__title {
    color: #2E266D;
    font-size: 48px;
    font-family: "Anton";
    text-align: center;
    text-transform: uppercase;
  }

  .testimonials__slide {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 66px;
  }

  .testimonials__list {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
  }

  .testimonial {
    width: 350px;
    height: 240px;
    background-color: #f5f5f5;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 48px 32px 32px 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.5s ease;
    opacity: 0.4;
  }

  .testimonial.central {
    opacity: 1;
  }

  .testimonial__identify {
    width: 299px;
    height: 40px;
    position: absolute;
    background-color: #2E266D;
    border-radius: 8px;
    top: -20px;
    left: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .identify__elipse {
    width: 24px;
    height: 24px;
    background-color: #5c8bc0;
    border-radius: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 500;
    margin-left: 16px;
  }

  .identify__name {
    font-size: 14px;
    color: white;
    font-family: "Poppins";
    font-size: 10px;
    font-weight: bold;
    justify-content: left;
    flex: 2;
  }

  .identify__stars {
    display: flex;
    flex-direction: row;
    margin-right: 16px;
    gap: 1px;
  }

  .star {
    width: 16px;
    height: 16px;
  }

  .testimonial__text {
    height: 160px;
    font-size: 12px;
    color: black;
    font-family: "Poppins";
    font-weight: 500;
    overflow-y: auto;
  }

  .testimonials__dots {
    text-align: center;
  }

  .testimonials__dots span {
    display: inline-block;
    border: none;
    width: 14px;
    height: 14px;
    background-color: #2E266D;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .testimonials__dots span.active {
    background: #233DFF;
  }

  /* Seção Marcas */
  .market {
    width: 100%;
    height: auto;
    background: url("assets/images/optica.jpeg") no-repeat center/cover;
    box-shadow: inset 0 0 0 100vw rgba(35, 61, 255, 0.7);
    padding: 48px 0;
  }

  .market__slide {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .market__title {
    color: white;
    font-size: 48px;
    font-family: "Anton";
    text-align: center;
    text-transform: uppercase;
  }

  .market__list {
    display: flex;
    gap: 96px;
    transition: transform 0.5s ease-in-out;
  }

  .market__image {
    width: 150px;
    height: 150px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.5s ease;
    opacity: 0.4;
  }

  .market__image.central {
    opacity: 1;
  }

  .market__dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .market__dots span {
    display: inline-block;
    border: none;
    width: 14px;
    height: 14px;
    background-color: #2E266D;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .market__dots span.active {
    background: #ffffff;
  }

  /* Seção Dúvidas */
  .faq {
    width: 100vw;
    height: 496px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .faq__container {
    width: 688px;
    height: 336px;
    background: linear-gradient(#F5F5F5 100%, #F1EEEE 100%);
    border: 0.5px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    gap: 36px;
    
  }

  .container__title {
    font-size: 48px;
    font-family: "Anton";
    text-transform: uppercase;
    color: #2E266D;
    text-align: center;
  }

  .container__text {
    width: 467px;
    font-size: 16px;
    font-family: "Poppins";
    text-align: center;
  }

  .container__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 361px;
    height: 48px;
    background-color: #26D367;
    color: white;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .container__button:hover {
    background-color: #128c7e;
  }


  /* Rodapé */
  .footer {
    text-align: center;
    padding: 30px 0;
    background-color: #392867;
    color: white;
  }

  .footer__text {
    font-size: 20px;
    font-family: "Anton";
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
  }

@media (max-width: 944px) {
  .apresentation {
    display: none;
  }

  .apresentation-mobile{
    display: flex;
    flex-direction: column;
    height: auto;
    background: url("assets/images/variedade_oculos.jpeg") no-repeat center/cover;
    box-shadow: inset 0 0 0 100vw rgba(57, 40, 103, 0.75);
    padding: 0 32px;
    align-items: center;
  }

  .logo {
    margin: 0;
  }

  .logo img {
    width: 319px;
    padding-top: 8px;
    padding-bottom: 32px;
  }

  .apresentation-mobile h1 {
    font-family: "Just Another Hand", cursive;
    color: white;
    font-size: 56px;
    font-weight: 400;
    text-align: left;
    line-height: 48px;
  }

  .mobile__apresentation {
    position: relative;
    height: 557px;
  }

  /* Elemento arredondado */
  .apresentation__circle {
    position: absolute;
    width: 300px;
    height: 500px;
    background-color: #ffffff;
    border-radius: 500px;
    top: 50px;
    left: -160px;
  }

  /* Imagem sobreposta */
  .apresentation__image {
    position: absolute;
    height: 437px;
    align-content: center;
    top: 120px;
    left: -215px;
  }

  .box {
    position: initial;
  }

  .box__text {
    position: initial;
    background: #f1eeee;
    padding: 32px 40px;
    border-radius: 20px;
    width: 100%;
    height: auto;
  }

  .box__text p {
    font-size: 19px;
    color: #001146;
    line-height: 32px;
    font-family: "Poppins", sans-serif;
  }

  .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    background-color: #87CB28;
    color: white;
    font-size: 20px;
    font-family: "Open Sans";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s ease;
    margin: 32px 0px 64px 0px;
  }

  .whatsapp-button:hover {
    background-color: #128c7e;
  }

  /* Seção Benefícios */

  .benefits {
    padding-top: 80px;
    background-color: #2E266D;
    display: flex;
    flex-direction: column;
  }

  .benefits__title {
    color: white;
    font-size: 40px;
    margin-bottom: 147px;
    font-family: "Anton";
    text-align: center;
    text-transform: uppercase;
    width: 80vw;
    align-self: center;
  }

  .benefits__list {
    padding: 0px 32px;
    display: flex;
    flex-direction: column;
    gap: 112px;
  }

  .benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .delivery {
    gap:40px;
  }

  .benefit__image {
    border-radius: 30px;
    width: 231px;
    height: 154px;
    border: 4px solid #ffffff;
  }

  .benefit__text{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .benefit__subtitle {
    font-size: 32px;
    color: white;
    font-family: "Anton", sans-serif;
    text-align: center;
  }

  .benefit__description {
    font-size: 18px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-align: center;
  }

  .benefit__delivery {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }

  .delivery__image {
    width: 219px;
    height: 232px;
    align-self: center;
  }

  .whatsapp__delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    max-width: 361px;
    height: 48px;
    background-color: #26D367;
    color: white;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 16px;
  }

  .whatsapp__delivery:hover {
    background-color: #128c7e;
  }

  /* Seção Vantagens */

  .advantage {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 80px 32px;
    align-items: center;
  }

  .advantage__title {
    color: #2E266D;
    font-size: 40px;
    margin-bottom: 80px;
    font-family: "Anton";
    text-align: center;
    text-transform: uppercase;
    width: 80vw;
  }

  .advantage__list {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .advantage__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .advantage__icon {
    width: 96px;
    height: 96px;
  }

  .advantage__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .advantage__subtitle {
    font-size: 32px;
    color: #233DFF;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
  }

  .advantage__description {
    font-size: 24px;
    color: #2E266D;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
  }

  /* Seção Sobre */

  .about {
    display: none;
  }

  .about-mobile {
    display: flex;
    flex-direction: column;
    padding: 80px 32px;
    background-color: #2E266D;
    color: white;
    gap: 80px;
    align-items: center;
  }

  .about__title {
    font-size: 40px;
    font-family: "Anton";
    text-transform: uppercase;
    text-align: center;
  }

  .about__text {
    font-size: 20px;
    font-family: "Poppins";
    line-height: 1.5;
  }

  .about__image {
    width: 300px;
    height: 420px;
    border-radius: 30px;
    border: 4px solid #ffffff;
  }

  .testimonials__title, .market__title {
    font-size: 40px;
    width: 80vw;
  }

  /* Seção Dúvidas */
  .faq {
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
  }

  .faq__container {
    width: calc(100% - 64px);
    height: auto;
    background: linear-gradient(#F5F5F5 100%, #F1EEEE 100%);
    border: 0.5px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    gap: 16px;
    padding: 48px 32px;
    
  }

  .container__title {
    font-size: 32px;
    font-family: "Anton";
    text-transform: uppercase;
    color: #2E266D;
    text-align: center;
  }

  .container__text {
    font-size: 14px;
    font-family: "Poppins";
    text-align: center;
    width: 92%;
  }

  .container__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: #26D367;
    color: white;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .container__button:hover {
    background-color: #128c7e;
  }

  /* Rodapé */
  .footer {
    text-align: center;
    background-color: #392867;
    color: white;
    margin: auto;
  }

  .footer__text {
    font-size: 14px;
    font-family: "Anton";
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }

}

@media (min-width: 945px) and (max-width: 1209px) {
  .apresentation-mobile {
    display: none;
  }

  /* Seção Apresentação */
  .apresentation {
    height: 580px;
    background: url("assets/images/variedade_oculos.jpeg") no-repeat center/cover;
    box-shadow: inset 0 0 0 100vw rgba(57, 40, 103, 0.75);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 32px;
  }

  .apresentation__left {
    display: flex;
    flex-direction: column;
    flex: 2;
  }

  .logo {
    margin-left: 80px;
  }

  .logo img {
    width: 319px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .apresentation__left h1 {
    font-family: "Just Another Hand", cursive;
    color: white;
    font-size: 56px;
    margin-left: 24px;
    margin-bottom: 45px;
    font-weight: 400;
    text-align: left;
    line-height: 48px;
  }

  .box {
    position: relative;
  }

  .box__text {
    background: #f1eeee;
    padding: 30px 60px 30px 30px;
    border-radius: 20px;
    width: 58vw;
    position: absolute;
  }

  .box__text p {
    font-size: 16px;
    color: #001146;
    line-height: 32px;
    font-family: "Poppins", sans-serif;
  }

  .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 56px;
    background-color: #87CB28;
    color: white;
    font-size: 24px;
    font-family: "Open Sans";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s ease;
    margin-top: 220px;
    margin-left: 32px;
  }

  .whatsapp-button:hover {
    background-color: #128c7e;
  }

  .apresentation__right {
    position: relative;
    flex: 1.8;
  }

  .right {
    position: relative;
    height: 580px;
    overflow: hidden;
  }

  /* Elemento arredondado */
  .right__circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 350px;
    background-color: #ffffff;
    border-radius: 500px;
    transform: rotate(-50deg);
  }

  /* Imagem sobreposta */
  .right__image {
    position: absolute;
    top: 50px;
    right: -20px;
    height: 580px;
  }

  /* Seção Benefícios */

  .benefits {
    padding-top: 80px;
    background-color: #2E266D;
    display: flex;
    flex-direction: column;
  }

  .benefits__title {
    color: white;
    font-size: 40px;
    margin-bottom: 97px;
    font-family: "Anton";
    text-align: center;
    text-transform: uppercase;
    width: 50vw;
    align-self: center;
  }

  .benefits__list {
    padding-left: 80px;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    gap: 112px;
  }

  .benefit {
    display: flex;
    flex-direction: row;
    gap: 48px;
  }

  .benefit__image {
    border-radius: 30px;
    width: 231px;
    height: 154px;
    border: 4px solid #ffffff;
  }

  .benefit__delivery {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

  .delivery__image {
    height: 265px;
  }

  .benefit__text{
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .benefit__subtitle {
    font-size: 30px;
    color: white;
    font-family: "Anton", sans-serif;
  }

  .benefit__description {
    font-size: 16px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
  }

  .whatsapp__delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 361px;
    height: 48px;
    background-color: #26D367;
    color: white;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 0px;
  }

  .whatsapp__delivery:hover {
    background-color: #128c7e;
  }

  /* Seção Vantagens */

  .advantage {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 80px;
  }

  .advantage__title {
    color: #2E266D;
    font-size: 40px;
    margin-bottom: 80px;
    font-family: "Anton";
    text-align: left;
    text-transform: uppercase;
    width: 50vw;
  }

  .advantage__list {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .advantage__item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .advantage__icon {
    width: 96px;
    height: 96px;
  }

  .advantage__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .advantage__subtitle {
    font-size: 30px;
    color: #233DFF;
    font-weight: 500;
    font-family: "Poppins";
  }

  .advantage__description {
    font-size: 20px;
    color: #2E266D;
    font-weight: 400;
    font-family: "Poppins";
  }

  /* Seção Sobre */

  .about {
    display: flex;
    flex-direction: row;
    padding: 80px;
    background-color: #2E266D;
    color: white;
    gap: 80px;
  }

  .about-mobile {
    display: none;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about__title {
    font-size: 40px;
    font-family: "Anton";
    text-transform: uppercase;
  }

  .about__text {
    font-size: 18px;
    font-family: "Poppins";
    line-height: 1.5;
  }

  .about__content2 {
    display: flex;
    flex-direction: column;
  }

  .about__image {
    height: 500px;
    border-radius: 30px;
    border: 4px solid #ffffff;
  }

  .testimonials__title, .market__title {
    font-size: 40px;
  }
}

@media (min-width: 1210px) {
  .apresentation-mobile {
    display: none;
  }

  /* Seção Benefícios */

  .benefits {
    padding-top: 80px;
    background-color: #2E266D;
    display: flex;
    flex-direction: column;
  }

  .benefits__title {
    color: white;
    font-size: 48px;
    margin-bottom: 97px;
    font-family: "Anton";
    text-align: center;
    text-transform: uppercase;
    width: 50vw;
    align-self: center;
  }

  .benefits__list {
    padding-left: 80px;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    gap: 112px;
  }

  .benefit {
    display: flex;
    flex-direction: row;
    gap: 48px;
  }

  .benefit__image {
    border-radius: 30px;
    width: 231px;
    height: 154px;
    border: 4px solid #ffffff;
  }

  .benefit__delivery {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

  .delivery__image {
    height: 265px;
  }

  .benefit__text{
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .benefit__subtitle {
    font-size: 32px;
    color: white;
    font-family: "Anton", sans-serif;
  }

  .benefit__description {
    font-size: 18px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
  }

  .whatsapp__delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 361px;
    height: 48px;
    background-color: #26D367;
    color: white;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 16px;
  }

  .whatsapp__delivery:hover {
    background-color: #128c7e;
  }

  /* Seção Vantagens */

  .advantage {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 80px;
  }

  .advantage__title {
    color: #2E266D;
    font-size: 48px;
    margin-bottom: 80px;
    font-family: "Anton";
    text-align: left;
    text-transform: uppercase;
    width: 50vw;
  }

  .advantage__list {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .advantage__item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .advantage__icon {
    width: 96px;
    height: 96px;
  }

  .advantage__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .advantage__subtitle {
    font-size: 32px;
    color: #233DFF;
    font-weight: 500;
    font-family: "Poppins";
  }

  .advantage__description {
    font-size: 24px;
    color: #2E266D;
    font-weight: 400;
    font-family: "Poppins";
  }

  /* Seção Sobre */

  .about {
    display: flex;
    flex-direction: row;
    padding: 80px;
    background-color: #2E266D;
    color: white;
    gap: 80px;
  }

  .about-mobile {
    display: none;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about__title {
    font-size: 48px;
    font-family: "Anton";
    text-transform: uppercase;
  }

  .about__text {
    font-size: 20px;
    font-family: "Poppins";
    line-height: 1.5;
  }

  .about__content2 {
    display: flex;
    flex-direction: column;
  }

  .about__image {
    height: 655px;
    border-radius: 30px;
    border: 4px solid #ffffff;
  }
}