/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Unbounded:wght@200..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(30, 100%, 58%);
  --black-color: hsl(220, 12%, 8%);
  --white-color: hsl(49, 62%, 95%);
  --text-color: hsl(220, 8%, 28%);
  --body-color: hsl(40, 11%, 95%);
  --shadow-img: drop-shadow(0 16px 24px hsla(0, 0%, 0%, .2));

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --second-font: "Unbounded", sans-serif;
  --third-font: "Nunito";
  --biggest-font-size: 3rem;
  --bigger-font-size: 2.5rem;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 6rem;
    --bigger-font-size: 4.5rem;
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: white;
  color: var(--black-color);
}

input,
button {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-bold);
  font-family: var(--second-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title, 
.section__subtitle {
  text-align: center;
  font-family: var(--second-font);
}

.section__title {
  font-size: var(--big-font-size);
  margin-bottom: 1rem;
}

.section__subtitle {
  display: block;
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/


/* Navigation for mobile devices */


/* Show menu */


/* Add shadow header */


/* Active link */


/*=============== HOME ===============*/

.home{
  text-align: right;
}
/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
  background-color: #f5f3ed;
}

/* Container principal */
.container {
  min-height: 100vh;
  padding: 3rem 1rem;
}

.content {
  max-width: 56rem;
  margin: 0 auto;
}
.image_principal{
  width: 1000px;
  align-self: center;
  align-items: center;
  justify-self: center;
  filter: var(--shadow-img);
}
.img_home{
  margin-bottom: 2rem;
}
/* Seções */
.section {
  text-align: center;
  margin-bottom: 4rem;
}

/* Ícone chevron */
.chevron-icon {
  display: block;
  margin: 0 auto 1.5rem;
}

/* Cabeçalho da seção */
.section-header {
  margin-bottom: 1.5rem;
}

.title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.title-large {
  line-height: 2.5rem;
}

/* Texto destacado com marcador */
.highlighted {
  display: inline;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.highlighted-gold {
  color: #278ff0;
  background-color: #c7edfa;
}

.highlighted-black {
  color: #111827;
  background-color: #e5e7eb;
}

/* Container de problemas */
.problems-container {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.problem-box {
  border: 1.7px dashed #e8a4a4;
  background-color: #fef5f5;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.problem-text {
  color: #c83e3e;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.emoji {
  font-size: 1.5rem;
}

#img-ee{
    margin: 0 auto 3rem;
  }

/* Caixa "E o pior" */
.worst-box {
  background-color: #fef5f5;
  border-left: 4px solid #012649;
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.worst-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bracket {
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: #00a2ff;
  margin-top: 0.25rem;
}

.worst-text {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #111827;
}

/* Seção de solução */
.solution-header {
  margin-bottom: 2rem;
}

.subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-top: 1rem;
}

/* Grid de benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.benefit-card {
  background-color: #e3eef1;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  background-color: #1b93e2;
  border-radius: 50%;
  padding: 0.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111827;
  text-align: left;
}

/* Botão CTA */
.cta-button {
  background-color: #2ecc71;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-button:hover {
  background-color: #27ae60;
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cta-button:active {
  transform: scale(1);
}

/* Texto final */
.final-text {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.final-text p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #111827;
}
.emoji{
  color: rgb(255, 81, 0)
}

/* Responsividade */
@media (min-width: 768px) {
  .title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============== BUTTON ===============*/


/*=============== SOLUTION ===============*/
.solution{
  background-color: rgb(253, 244, 191);
}
.solution_content{
  margin-bottom: 15rem;
}
.image_solution{
  justify-items: center;
}
.img_solution{
  width: 200px;
  margin-bottom: 3rem;
  filter: var(--shadow-img);
}
.attention_container{
  max-width: 70rem;
  max-height: 80rem;
  margin: 0 auto 1.5rem;
}
.title_attetion{
  margin-top: 1.5rem;
  font-size: 35px;
}
.attention_box {
  height: 25rem;
  border: 2.5px dashed #ffc72c;
  background-color: #ffffff;
  border-radius: 5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.attetion_text {
  margin-top: 3.5rem;
  color: #2c2c2c;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-size: var(--h1-font-size);
  font-family: var(--third-font);
  font-weight: var(--font-regular);
  line-height: 2.3rem;
}

.attetion_text2 {
  margin-top: 6.5rem;
  color: #2c2c2c;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-size: var(--h1-font-size);
  font-family: var(--third-font);
  font-weight: var(--font-regular);
  line-height: 2.3rem;
}
.seta_down_solution{
  margin-top: 5rem;
  justify-self: center;
  width: 100px;
  color: white;
  margin-bottom: 11rem;
}
.attention_kit_title{
  font-size: 40px;
  margin-bottom: 5.5rem;
}
.glass-container {
  background: linear-gradient(45deg, 
      rgba(255,255,255,0.1) 0%, 
      rgba(255,255,255,0.05) 50%, 
      rgba(255,255,255,0.1) 100%);
  border-radius: 20px;
  padding: 1.5rem;
  height: auto;
  max-width: 1250px;
  width: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  cursor: grab;
  margin: 0 auto 1.5rem;
}
.image_principal_glass{
  margin-top: 3rem;
  justify-self: center;
  justify-content: center;

}
.img_attention{
  width: 1000px;
}
.title_attention_kit{
  margin-top: 4rem;
  font-weight: var(--font-semi-bold);
  font-size: 25px;
}
.amazon_benefits{
  color: var(--black-color);
  font-weight: var(--font-bold);
  font-family: var(--second-font);
  text-align: center;
  font-size: 22px;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  line-height: 2.0;
}

.amazon_benefits i{
  font-size: 32px;
  color: rgb(0, 255, 106);
}
/*=============== UNDERSTAND ===============*/
/* Container da seção */
 /* Container principal */
        ._understand_container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1rem;
        }

        /* Header */
        ._understand_section-title {
            text-align: center;
            margin-bottom: 1.5rem;
            animation: _understand_fadeInUp 0.6s ease-out;
        }

        /* Linhas coloridas */
        ._understand_decorative-lines {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            animation: _understand_scaleIn 0.5s ease-out 0.2s both;
        }

        ._understand_line {
            width: 4rem;
            height: 0.25rem;
            border-radius: 9999px;
        }

        ._understand_line-blue { background-color: #60a5fa; }
        ._understand_line-orange { background-color: #fb923c; }
        ._understand_line-green { background-color: #4ade80; }
        ._understand_line-yellow { background-color: #fbbf24; }

        /* Cards principais */
        ._understand_info-card {
            border-radius: 1.5rem;
            padding: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        ._understand_purple-card {
            background-color: #f3e8ff;
            animation: _understand_slideInLeft 0.6s ease-out 0.3s both;
        }

        ._understand_green-card {
            background-color: #dcfce7;
            animation: _understand_slideInRight 0.6s ease-out 0.4s both;
        }

        ._understand_card-image-wrapper {
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        ._understand_card-image-wrapper:hover {
            transform: scale(1.05);
        }

        ._understand_card-image {
            width: 14rem;
            height: 14rem;
            border-radius: 1rem;
            object-fit: cover;
        }

        ._understand_card-content {
            flex: 1;
        }

        ._understand_purple-card h3,
        ._understand_purple-card p {
            color: #581c87;
        }

        ._understand_green-card h3,
        ._understand_green-card p {
            color: #14532d;
        }

        /* Lista de benefícios */
        ._understand_benefits-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        ._understand_benefit-item {
            background-color: #ffffff;
            border-radius: 0.5rem;
            padding: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            transition: all 0.3s ease;
            opacity: 0;
            animation: _understand_fadeInUp 0.4s ease-out forwards;
        }

        ._understand_benefit-item:nth-child(1) { animation-delay: 0.5s; }
        ._understand_benefit-item:nth-child(2) { animation-delay: 0.6s; }
        ._understand_benefit-item:nth-child(3) { animation-delay: 0.7s; }
        ._understand_benefit-item:nth-child(4) { animation-delay: 0.8s; }
        ._understand_benefit-item:nth-child(5) { animation-delay: 0.9s; }

        ._understand_benefit-item:hover {
            transform: scale(1.02) translateX(5px);
        }

        ._understand_check-icon {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            background-color: #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.875rem;
        }

        ._understand_benefit-text {
            color: #14532d;
        }

        /* Texto final */
        ._understand_final-text {
            text-align: center;
            margin-top: 2rem;
            color: #4b5563;
            animation: _understand_fadeInUp 0.6s ease-out 0.6s both;
        }

        /* Seção CTA */
        ._understand_cta-section {
            margin-top: 5rem;
            animation: _understand_fadeInUp 0.6s ease-out 0.2s both;
        }

        ._understand_cta-banner {
            background-color: #fffae2;
            border-radius: 1.5rem;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        ._understand_cta-icon {
            width: 4rem;
            height: 4rem;
            background-color: #92400e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            animation: _understand_wiggle 2s ease-in-out infinite;
            animation-play-state: paused;
        }

        ._understand_cta-banner:hover ._understand_cta-icon {
            animation-play-state: running;
        }

        ._understand_cta-icon svg {
            width: 2rem;
            height: 2rem;
            color: white;
        }

        ._understand_cta-button {
            background-color: #22c55e;
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            border: none;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        ._understand_cta-button:hover {
            background-color: #16a34a;
            transform: scale(1.1);
        }

        ._understand_cta-button:active {
            transform: scale(0.95);
        }

        /* Título da segunda seção */
        ._understand_learning-title {
            text-align: center;
            margin-bottom: 5.5rem;
            margin-top: 5rem;
            animation: _understand_fadeInUp 0.5s ease-out both;
        }

        /* Grid de cards de aprendizado */
        ._understand_learning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        ._understand_learning-card {
            background-color: #fffbeb;
            border-radius: 1rem;
            padding: 1.5rem;
            border: 4px dashed #92400e;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            animation: _understand_fadeInUp 0.5s ease-out forwards;
        }

        ._understand_learning-card:nth-child(1) { animation-delay: 0s; }
        ._understand_learning-card:nth-child(2) { animation-delay: 0.1s; }
        ._understand_learning-card:nth-child(3) { animation-delay: 0.2s; }
        ._understand_learning-card:nth-child(4) { animation-delay: 0.3s; }

        ._understand_learning-card:hover {
            transform: scale(1.05) translateY(-5px);
        }

        ._understand_learning-emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
            animation: _understand_float 2s ease-in-out infinite;
            animation-play-state: paused;
        }

        ._understand_learning-card:hover ._understand_learning-emoji {
            animation-play-state: running;
        }

        ._understand_learning-card:nth-child(2) ._understand_learning-emoji { animation-delay: 0.2s; }
        ._understand_learning-card:nth-child(3) ._understand_learning-emoji { animation-delay: 0.4s; }
        ._understand_learning-card:nth-child(4) ._understand_learning-emoji { animation-delay: 0.6s; }

        ._understand_learning-card h4 {
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        ._understand_learning-card p {
            color: #1f2937;
            font-size: 0.875rem;
        }

         @keyframes _understand_fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes _understand_slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes _understand_slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes _understand_scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes _understand_wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            50% { transform: rotate(10deg); }
            75% { transform: rotate(-10deg); }
        }

        @keyframes _understand_float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Responsividade */
        @media (min-width: 768px) {
            ._understand_info-card {
                flex-direction: row;
            }

            ._understand_learning-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            h2 {
                font-size: 2.5rem;
            }

            ._understand_learning-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 767px) {
            ._understand_container {
                padding: 2rem 1rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            ._understand_card-image {
                width: 100%;
                height: auto;
                max-width: 14rem;
            }

            ._understand_decorative-lines {
                gap: 0.5rem;
            }

            ._understand_line {
                width: 3rem;
            }

            ._understand_cta-banner {
                padding: 1.5rem;
            }

            ._understand_cta-button {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            
        }

/*=============== RODAPE ===============*/

.rodape_section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-color: var(--body-color);
}

.rodape_container {
  max-width: 84rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/*=============== ÁREA DE VÍDEO ===============*/
.rodape_video_area {
  max-width: 56rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.rodape_title_main {
  margin-bottom: 0.5rem;
  font-family: var(--body-font);
  font-size: 1.875rem;
  line-height: 1.5;
}

.rodape_title_highlight {
  font-family: var(--second-font);
}

.rodape_title_secondary {
  margin-bottom: 1.5rem;
  font-family: var(--second-font);
  color: var(--black-color);
  font-size: 1.5rem;
}

.rodape_play_text {
  margin-bottom: 2rem;
  font-family: var(--body-font);
  color: var(--text-color);
  font-size: 1rem;
}

/* Video Player */
.rodape_video_player_wrapper {
  position: relative;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.rodape_video_player {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  filter: var(--shadow-img);
  background-color: #2a2a2a;
}

.rodape_video_aspect {
  position: relative;
  aspect-ratio: 16/9;
}

.rodape_video_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rodape_video_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent, transparent);
  pointer-events: none;
}

.rodape_nav_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  opacity: 0;
  z-index: 10;
}

.rodape_video_player_wrapper:hover .rodape_nav_arrow {
  opacity: 1;
}

.rodape_nav_arrow:hover {
  background-color: white;
}

.rodape_nav_arrow_left {
  left: 1rem;
}

.rodape_nav_arrow_right {
  right: 1rem;
}

.rodape_icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--black-color);
}

.rodape_dots_navigation {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.rodape_dot {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background-color: white;
  opacity: 0.6;
  transition: all 0.3s;
  cursor: pointer;
}

.rodape_dot.active {
  width: 50px;
  background-color: var(--first-color);
  opacity: 1;
}

/* Down Arrow */
.rodape_down_arrow {
  display: flex;
  justify-content: center;
  animation: rodape_bounce 2s infinite;
}

.rodape_icon_down {
  width: 3rem;
  height: 3rem;
  color: #22c55e;
}

@keyframes rodape_bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/*=============== CAROUSEL ÁREA ===============*/
.rodape_carousel_container {
  width: 100%;
  padding: 0 1rem;
}

.rodape_carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rodape_carousel_title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--second-font);
  color: white;
  font-size: 1.75rem;
  font-weight: var(--font-bold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rodape_carousel_wrapper {
  position: relative;
  height: 200px;
}

.rodape_carousel_track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  height: 100%;
}

.rodape_carousel_item {
  position: absolute;
  left: 0;
  transition: all 0.7s ease-out;
  border-radius: 1rem;
  overflow: hidden;
  width: 320px;
  height: 200px;
  cursor: pointer;
}

.rodape_carousel_item.center {
  z-index: 20;
  opacity: 1;
  transform: translateX(0) scale(1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(251, 191, 36, 0.5);
  border: 3px solid #fbbf24;
}

.rodape_carousel_item.next {
  z-index: 10;
  opacity: 0.6;
  transform: translateX(110%) scale(0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rodape_carousel_item.far {
  z-index: 5;
  opacity: 0.3;
  transform: translateX(220%) scale(0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rodape_carousel_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rodape_carousel_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 30;
}

.rodape_carousel_nav:hover {
  background-color: #f3f4f6;
}

.rodape_carousel_nav_left {
  left: 1rem;
}

.rodape_carousel_nav_right {
  right: 1rem;
}

.rodape_carousel_indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.rodape_indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  cursor: pointer;
}

.rodape_indicator:hover {
  transform: scale(1.1);
}

.rodape_indicator.active {
  width: 40px;
  background-color: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.rodape_decorative_circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.rodape_decorative_circle_1 {
  top: 1rem;
  left: 1rem;
  width: 5rem;
  height: 5rem;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
}

.rodape_decorative_circle_2 {
  bottom: 1rem;
  right: 1rem;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

/*=============== BENEFITS ÁREA ===============*/
.rodape_benefits_area {
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

.rodape_benefits_header {
  text-align: center;
  margin-bottom: 3rem;
}

.rodape_benefits_title {
  margin-bottom: 1rem;
  font-family: var(--body-font);
  color: var(--black-color);
  font-size: 1.875rem;
}

.rodape_benefits_subtitle {
  font-family: var(--second-font);
  font-size: 1.5rem;
}

.rodape_benefits_subtitle_highlight {
  font-family: var(--second-font);
  color: #d4a017;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
}

.rodape_benefits_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rodape_benefits_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rodape_benefit_card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  background-color: #ffffff;
  border: 2.5px dashed #d4a017;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.rodape_benefit_card:hover {
  transform: scale(1.05) translateY(-4px);
}

.rodape_benefit_number {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #d4a017 0%, #f4c542 100%);
  font-family: var(--second-font);
  font-size: 2rem;
  color: white;
  font-weight: var(--font-bold);
  transform: rotate(3deg);
  transition: transform 0.3s;
}

.rodape_benefit_card:hover .rodape_benefit_number {
  transform: rotate(0deg);
}

.rodape_benefit_content {
  margin-top: 1.5rem;
}

.rodape_benefit_title {
  margin-bottom: 0.75rem;
  font-family: var(--second-font);
  color: var(--black-color);
  font-size: 1.125rem;
}

.rodape_benefit_description {
  font-family: var(--third-font);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.95rem;
}

.rodape_benefit_corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #d4a017;
  opacity: 0.2;
}

.rodape_decorative_lines {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 4rem;
}

.rodape_line {
  width: 4rem;
  height: 0.25rem;
  border-radius: 9999px;
}

.rodape_line_blue {
  background-color: #60a5fa;
}

.rodape_line_orange {
  background-color: #fb923c;
}

.rodape_line_green {
  background-color: #4ade80;
}

.rodape_line_yellow {
  background-color: #d4a017;
}

/*=============== RESPONSIVE ===============*/
@media screen and (min-width: 1150px) {
  .rodape_title_main {
    font-size: 2.5rem;
  }

  .rodape_title_secondary {
    font-size: 2rem;
  }

  .rodape_benefits_title {
    font-size: 2.25rem;
  }

  .rodape_benefits_subtitle,
  .rodape_benefits_subtitle_highlight {
    font-size: 1.875rem;
  }
}

/*=============== ASSESSMENT ===============*/

.avaliation_section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  background-color: var(--white-color);
}

.avaliation_container {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
}

/*=============== HEADER ===============*/
.avaliation_header {
  text-align: center;
  margin-bottom: 4rem;
}

.avaliation_pretitle {
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease-out;
}

.avaliation_title {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

@media (min-width: 768px) {
  .avaliation_title {
    font-size: 2.5rem;
  }
}

.avaliation_title_highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.avaliation_subtitle {
  color: #1a1a1a;
  line-height: 1.4;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .avaliation_subtitle {
    font-size: 2.25rem;
  }
}

.avaliation_highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.avaliation_description {
  color: #6b7280;
  font-size: 1.125rem;
  margin-top: 1rem;
  font-weight: 400;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/*=============== GRID ===============*/
.avaliation_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .avaliation_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .avaliation_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============== CARD ===============*/
.avaliation_card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out both;
}

.avaliation_card:nth-child(1) { animation-delay: 0.1s; }
.avaliation_card:nth-child(2) { animation-delay: 0.2s; }
.avaliation_card:nth-child(3) { animation-delay: 0.3s; }
.avaliation_card:nth-child(4) { animation-delay: 0.4s; }
.avaliation_card:nth-child(5) { animation-delay: 0.5s; }
.avaliation_card:nth-child(6) { animation-delay: 0.6s; }

.avaliation_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #ff6b35;
}

/*=============== USER INFO ===============*/
.avaliation_user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avaliation_avatar_wrapper {
  position: relative;
  flex-shrink: 0;
}

.avaliation_avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avaliation_verified_badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 1.125rem;
  height: 1.125rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avaliation_verified_icon {
  width: 0.625rem;
  height: 0.625rem;
  color: white;
}

.avaliation_user_info {
  flex: 1;
  min-width: 0;
}

.avaliation_name_wrapper {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.avaliation_name {
  color: #1a1a1a;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 600;
}

.avaliation_verified_inline {
  width: 1rem;
  height: 1rem;
  color: #3b82f6;
  flex-shrink: 0;
}

.avaliation_username {
  color: #6b7280;
  font-size: 0.8125rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

/*=============== RATING ===============*/
.avaliation_rating {
  display: flex;
  gap: 0.25rem;
}

.avaliation_star {
  width: 1.125rem;
  height: 1.125rem;
  color: #d1d5db;
  transition: all 0.2s;
}

.avaliation_star_filled {
  color: #fbbf24;
}

/*=============== COMMENT ===============*/
.avaliation_comment {
  color: #374151;
  line-height: 1.6;
  font-size: 0.9375rem;
  margin: 0;
  flex: 1;
}

/*=============== FOOTER ===============*/
.avaliation_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.avaliation_actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avaliation_action_btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  padding: 0;
}

.avaliation_action_btn:hover {
  color: #ff6b35;
}

.avaliation_action_btn:hover .avaliation_action_icon {
  transform: scale(1.1);
}

.avaliation_action_icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.avaliation_likes {
  font-size: 0.875rem;
  font-weight: 500;
}

.avaliation_time {
  color: #9ca3af;
  font-size: 0.8125rem;
}

/*=============== CTA ===============*/
.avaliation_cta_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.avaliation_cta_button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.avaliation_cta_button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.avaliation_cta_button:hover::before {
  width: 300px;
  height: 300px;
}

.avaliation_cta_button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.avaliation_cta_button:active {
  transform: translateY(0);
}

.avaliation_cta_subtitle {
  color: #6b7280;
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 400;
}

/*=============== ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 640px) {
  .avaliation_title {
    font-size: 1.5rem;
  }

  .avaliation_subtitle {
    font-size: 1.375rem;
  }

  .avaliation_description {
    font-size: 1rem;
  }
}
/*=============== HOW TO USE ===============*/
._how-to-use.section {
    background-color: #f5f0d4;
    padding: 3rem 0 0 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}

._how-to-use.container {
    max-width: 72rem;
    margin: 0 auto !important;
    padding: 0 1rem 5.5rem 1rem !important; /* Apenas 0.5rem (8px) embaixo */
    min-height: 0 !important;
}

._how-to-use.title {
    text-align: center;
    margin: 0 0 2rem 0; /* Margens controladas */
    font-size: 1.5rem;
    font-weight: 500;
}

._how-to-use.cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

._how-to-use.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

._how-to-use.icon-circle {
    background-color: white;
    border-radius: 9999px;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

._how-to-use.icon {
    font-size: 2.25rem;
}

._how-to-use.card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
}

._how-to-use.card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 !important; /* !important para sobrescrever estilos globais */
}

/* Barra amarela */
._how-to-use.bar {
    background-color: #b8a25c;
    padding: 0.75rem 0;
    text-align: center;
    margin: 0 !important;
}

._how-to-use.bar-text {
    color: white;
    margin: 0 !important;
    padding: 0 !important;
}
/*=============== BONUS ===============*/

._bonus.section {
    background-color: #e8e8e8;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

._bonus.container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

._bonus.product-image{
  width: 450px;
}

._bonus.product-card{
  height: 600px;
}

._bonus.product-card img{
  height: 325px;
  min-width: 200px;
}

._bonus.title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

._bonus.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #7c9c3d;
    font-size: 1.125rem;
    font-weight: 500;
}

._bonus.grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    ._bonus.grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

._bonus.product-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

._bonus.product-image {
    width: 100%;
    max-width: 200px;
    margin-bottom: 1rem;
    height: auto;
}

._bonus.product-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

._bonus.product-description {
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

._bonus.price-old {
    text-decoration: line-through;
    color: #ef4444;
    margin-bottom: 0.25rem;
}

._bonus.price-new {
    color: #7c9c3d;
    font-weight: 500;
}

/*=============== BUY ===============*/
.container_buy {
            width: 100%;
            max-width: 46rem;
            justify-content: center;
            align-self: center;
            align-items: center;
            text-align: center;
            margin: 0 auto 3rem;
        }

        .section_buy {
          justify-self: center;
          justify-content: center;
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            animation: fade-in 0.6s ease-out;
            align-self: center;
        }

        .title-wrapper_buy {
            text-align: center;
            margin-bottom: 2rem;
            
        }
        .list-item_buy,
        .text_buy{
          position: relative;
          justify-content: center;
          margin-bottom: .25rem;
        }

        .check-icon_buy{
          position: relative;
        }
        .title_buy {
            color: #1f2937;
            font-size: 1.9rem;
            line-height: 1.6;
            font-weight: 500;
            margin-bottom: 3rem;
        }

        .highlight_buy {
            color: #f59e0b;
        }

        .image-wrapper_buy {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            animation: slide-up 0.8s ease-out;
        }

        .image_buy {
            width: 50rem;
            height: auto;
            object-fit: contain;
        }


        .list_buy {
          text-align: center;
          justify-content: center;
            margin-bottom: 2rem;
            animation: fade-in-up 0.8s ease-out;
        }

        .text_buy{
          text-align: center;
        }

        .list-item_buy {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            transition: transform 0.3s ease;
        }

        .list-item_buy:hover {
            transform: translateX(4px);
        }

        .check-icon_buy {
            width: 1.25rem;
            height: 1.25rem;
            color: #22c55e;
            flex-shrink: 0;
            margin-top: 0.125rem;
            text-align: center;
        }

        .text_buy {
            color: #374151;
            font-size: 1.1rem;
            line-height: 1.5;
            text-align: center;
        }

        .bonus-number_buy {
            font-weight: 500;
        }

        .value_buy {
            text-decoration: line-through;
            text-decoration-thickness: 2px;
            color: #dc2626;
        }

        .special-text_buy {
            color: #f59e0b;
            font-size: 1rem;
        }

        .price-info_buy {
            text-align: center;
            margin-bottom: 0.75rem;
            font-family: var(--second-font);
        }

        .original-price-text_buy {
            color: #374151;
            font-size: 1rem;
        }

        .strikethrough-price_buy {
            text-decoration: line-through;
            text-decoration-thickness: 2px;
            color: #dc2626;
        }

        .subtitle-text_buy {
            color: #374151;
            font-size: 1rem;
            margin-top: 0.25rem;
            margin-bottom: 1rem;
        }

        .main-price_buy {
            text-align: center;
            margin-bottom: 0.5rem;
            animation: scale-in 0.8s ease-out;
        }

        .price-display_buy {
            color: #00b118;
            font-weight: 800;
        }

        .currency-symbol_buy {
          font-family: var(--second-font);
            font-size: 3rem;
        }

        .price-amount_buy {
          font-family: var(--second-font);
            font-size: 3.3rem;
        }

        .installments_buy {
            color: #2e2d2d;
            font-size: 1.5rem;
            margin-top: 0.15rem;
            margin-bottom: 1.2rem;
            font-weight: 800;
            font-family: var(--third-font);
        }


        .lifetime-access_buy {
            text-align: center;
            margin-bottom: 1.5rem;
            animation: pulse-soft 2s ease-in-out infinite;
        }

        .access-label_buy {
            color: #000000;
            font-size: 0.9rem;
            font-family: var(--second-font);
            letter-spacing: 0.02rem
        }

        .button-wrapper_buy {
            margin-bottom: 1.5rem;
        }

        .cta-button_buy {
            width: 350px;
            background-color: #22c55e;
            color: white;
            padding: 0.875rem 1rem;
            border: none;
            border-radius: 4rem;
            font-size: 1rem;
            font-family: var(--second-font);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            text-align: center;
            margin-bottom: .5rem;
        }

        .cta-button_buy:hover {
            background-color: #16a34a;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transform: scale(1.05);
        }

        .security-badges_buy {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .badge-item_buy {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            transition: transform 0.3s ease;
        }

        .badge-item_buy:hover {
            transform: scale(1.1);
        }

        .e-font-icon-svg.e-fas-arrow-down {
          width: 100px;
          justify-self: center;
          margin: 0 auto 3rem;
          background-color: red;
        }

        .badge-icon_buy {
            width: 1.75rem;
            height: 1.75rem;
        }

        .badge-label_buy {
            color: #6b7280;
            font-size: 0.875rem;
        }
        .image_buy_container img{
          align-self: center;
          justify-content: center;
          justify-self: center;
        }
        .img_buy {
          justify-self: center;
          width: 270px;
        }
        .arrow-down_buy{
          position: relative;
          justify-self: center;
          justify-content: center;
          font-size: 5rem;
          margin-bottom: 3rem;
          color: #00ce00;

        }
        /* Animações */
        @keyframes fade-in {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slide-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scale-in {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse-soft {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }

        /* Responsividade para telas pequenas */
        @media (max-width: 640px) {
            .section_buy {
                padding: 1.5rem;
            }

            .title_buy {
                font-size: 1.2rem;
            }

            .image_buy {
                width: 26rem;
            }

            .text_buy {
                font-size: 1rem;
            }

            .check-icon_buy {
                width: 1rem;
                height: 1rem;
            }

            .currency-symbol_buy {
                font-size: 1.9rem;
            }

            .price-amount_buy {
                font-size: 3rem;
            }

            .access-label_buy {
                font-size: 0.75rem;
            }

            .badge-icon_buy {
                width: 1.5rem;
                height: 1.5rem;
            }

            .badge-label_buy {
                font-size: 0.75rem;
            }

            .security-badges_buy {
                gap: 1.5rem;
            }
            
        }

        /*=============== GUARANTEE ===============*/
        .guarantee{
          background-color: rgb(250, 244, 209);
        }
        .image_guarantee{
          margin-top: 3rem;
          position: relative;
          justify-self: center;
          width: 300px;
          margin-bottom: 3rem;
        }
        .text_guarantee{
          font-family: var(--second-font);
          font-weight: 500;
          font-size: 1.1rem;
          margin-bottom: 5.5rem;
        }
        .title_guarantee{
          margin-bottom: 4.2rem;
          color: #2b2a2a;
          font-size: 1.95rem;
          font-weight: 700;
        }
        .image-blindado_guarantee{
          justify-self: center;
          width: 270px;
          margin-bottom: 8.5rem;
        }


        /*=============== FAQS ===============*/
.section_faqs {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: 5rem 0;
    min-height: auto;
}

.container_faqs {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header_faqs {
    text-align: center;
    margin-bottom: 3.5rem;
}

.decorative-lines_faqs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.line_faqs {
    width: 3.5rem;
    height: 4px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.line-blue_faqs { 
    background: #3b82f6;
}
.line-orange_faqs { 
    background: #f97316;
}
.line-green_faqs { 
    background: #22c55e;
}
.line-yellow_faqs { 
    background: #f59e0b;
}

.title_faqs {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.highlight_faqs {
    background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle_faqs {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
}

/* Accordion */
.accordion_faqs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.item_faqs {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.item_faqs:hover {
    border-color: #ffd4c4;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.12);
    transform: translateY(-2px);
}

.item_faqs.active_faqs {
    border-color: #ff6b35;
    background: #fffaf7;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.question-button_faqs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background-color 0.2s ease;
}

.question-button_faqs:hover {
    background-color: rgba(255, 107, 53, 0.03);
}

.question-text_faqs {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    line-height: 1.5;
}

.icon_faqs {
    width: 1.5rem;
    height: 1.5rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.icon_faqs.rotated_faqs {
    transform: rotate(180deg);
}

.answer-wrapper_faqs {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.answer-wrapper_faqs.open_faqs {
    max-height: 500px;
}

.answer_faqs {
    padding: 0 1.75rem 1.5rem 1.75rem;
    border-top: 1px solid #f5f5f5;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
}

.answer-text_faqs {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* CTA Section */
.cta-section_faqs {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 2rem;
    border: 2px solid #fed7aa;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.1);
}

.cta-text_faqs {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: #78350f;
    margin-bottom: 1.75rem;
    font-weight: 600;
}

.cta-button_faqs {
    background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%);
    color: white;
    padding: 1.125rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.cta-button_faqs:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
}

.cta-button_faqs:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.contact_social {
  margin-top: 2rem;
  font-size: large;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  padding: 15px 0;
  height: 100px;
}

.social-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}

.contact_social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--first-color);
  background: rgba(255, 171, 64, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 171, 64, 0.2);
  font-size: 20px;
  z-index: 1;
}

/* TOOLTIP - Nome que aparece em cima */
.contact_social-link::before {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-color);
  color: var(--white-color);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: var(--font-semi-bold);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: var(--body-font);
  z-index: 1000;
  pointer-events: none;
}

/* SETA do tooltip */
.contact_social-link::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--black-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

/* HOVER EFFECT - Ícone sobe e tooltip aparece */
.contact_social-link:hover {
  transform: translateY(-10px) scale(1.1);
  background: var(--first-color);
  color: var(--black-color);
  box-shadow: 0 8px 20px rgba(255, 171, 64, 0.4);
  border-color: var(--first-color);
}

/* MOSTRAR tooltip no hover */
.contact_social-link:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-3px);
}

.contact_social-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-1px);
}

/* PONTO que aparece embaixo */
.social-icon-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--first-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* MOSTRAR ponto no hover do wrapper */
.social-icon-wrapper:hover::after {
  opacity: 1;
}

/* Animação de entrada dos ícones */
.social-icon-wrapper {
  animation: iconFadeIn 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.social-icon-wrapper:nth-child(1) {
  animation-delay: 0.1s;
}

.social-icon-wrapper:nth-child(2) {
  animation-delay: 0.2s;
}

.social-icon-wrapper:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes iconFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeito de "bounce" suave */
.contact_social-link:active {
  transform: translateY(-8px) scale(1.05);
}

/* Cores específicas para cada rede social */
.social-icon-wrapper:nth-child(1) .contact_social-link:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-icon-wrapper:nth-child(2) .contact_social-link:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
  box-shadow: 0 8px 20px rgba(230, 104, 60, 0.4);
}

.social-icon-wrapper:nth-child(3) .contact_social-link:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.title-add_faqs {
  margin-top: 6.5rem;
  text-align: center;
  font-size: 2.2rem;
}
/* Responsive */
@media (max-width: 768px) {
    .title_faqs {
        font-size: 1.875rem;
    }

    .subtitle_faqs {
        font-size: 1rem;
    }

    .question-text_faqs {
        font-size: 1rem;
    }

    .answer-text_faqs {
        font-size: 0.9375rem;
    }

    .line_faqs {
        width: 3rem;
    }

    .cta-button_faqs {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section_faqs {
        padding: 3rem 0;
    }

    .title_faqs {
        font-size: 1.5rem;
    }

    .question-button_faqs {
        padding: 1rem 1.25rem;
    }

    .answer_faqs {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .cta-section_faqs {
        padding: 2rem 1.5rem;
    }
}
/*=============== FOOTER ===============*/

.footer_section {
    background: rgb(47, 141, 248);
    padding: 2rem 0 1.5rem;
    margin-top: 5rem;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_logo_area {
    flex: 0 0 auto;
}

.footer_logo{
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  column-gap: .25rem;
}

.footer_logo img{
  width: 4rem;
}

.footer_logo span{
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

.footer_logo_text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer_links_area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.footer_link {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.footer_link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer_separator {
    color: white;
    opacity: 0.6;
    font-size: 0.875rem;
}

.footer_social {
    display: flex;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.footer_social_link {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer_social_link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer_social_icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(30, 100%, 58%);
}

.footer_bottom {
    text-align: center;
}

.footer_copyright {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: white;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .footer_top {
        flex-direction: column;
        text-align: center;
    }

    .footer_links_area {
        order: 3;
        width: 100%;
    }

    .footer_social {
        order: 2;
    }

    .footer_logo_area {
        order: 1;
    }
}

@media (max-width: 480px) {
    .footer_section {
        padding: 1.5rem 0 1rem;
    }

    .footer_logo_text {
        font-size: 1.25rem;
    }

    .footer_link {
        font-size: 0.8125rem;
    }

    .footer_copyright {
        font-size: 0.8125rem;
    }

    .footer_social_link {
        width: 2.25rem;
        height: 2.25rem;
    }

    .footer_social_icon {
        width: 1.125rem;
        height: 1.125rem;
    }
}


/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */


/* For large devices */


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */


@media screen and (max-width: 768px) {
  .image_principal {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .solution-header .title-large {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
  }

  .solution-header .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .benefit-card {
    padding: 1.25rem;
    transition: transform 0.2s ease;
  }

  .benefit-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
  }

  .final-text p {
    font-size: 1rem;
    padding: 0 1.5rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 640px) {
  .image_principal {
    margin-bottom: 1rem;
  }

  .solution-header .title-large {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .solution-header .subtitle {
    font-size: 1rem;
  }

  .benefits-grid {
    padding: 0 1rem;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-text {
    font-size: 0.875rem;
  }

  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .final-text p {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .solution-header .title-large {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .solution-header .subtitle {
    font-size: 0.9375rem;
  }

  .benefit-text {
    font-size: 0.8125rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .final-text p {
    font-size: 0.875rem;
  }
}

/* ============================================
   SECTION: PROBLEMS
   ============================================ */

@media screen and (max-width: 768px) {
  .section-header .title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
  }

  .problems-container {
    padding: 0 1rem;
    gap: 1rem;
  }

  .problem-box {
    padding: 1.5rem;
  }

  .problem-text {
    font-size: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .worst-box {
    padding: 1.5rem;
    margin: 1rem;
  }

  .worst-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .bracket {
    font-size: 2rem;
  }

  .worst-text {
    font-size: 1.0625rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 640px) {
  .section-header .title {
    font-size: 1.5rem;
  }

  .problem-box {
    padding: 1.25rem;
  }

  .problem-text {
    font-size: 0.9375rem;
  }

  .worst-box {
    padding: 1.25rem;
    margin: 0.5rem;
  }

  .bracket {
    font-size: 1.75rem;
  }

  .worst-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .section-header .title {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .problem-box {
    padding: 1rem;
  }

  .problem-text {
    font-size: 0.875rem;
  }

  .worst-text {
    font-size: 0.9375rem;
  }

  .bracket {
    font-size: 1.5rem;
  }
}

/* ============================================
   SECTION: SOLUTION CONTENT & ATTENTION
   ============================================ */

@media screen and (max-width: 768px) {
  .solution_content {
    margin-bottom: 4rem;
  }

  .img_solution {
    width: clamp(120px, 30vw, 180px);
    height: auto;
    margin-bottom: 2rem;
  }

  .attention_container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .title_attetion {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
  }

  .attention_box {
    height: auto;
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .attetion_text {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
  }

  .attetion_text2 {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 2rem;
  }

  .seta_down_solution {
    width: clamp(60px, 15vw, 80px);
    height: auto;
    margin-bottom: 4rem;
  }

  .attention_kit_title {
    font-size: clamp(1.75rem, 4.5vw, 2.25rem);
    margin-bottom: 3rem;
    line-height: 1.3;
  }

  .glass-container {
    width: 100%;
    height: auto;
    padding: 1.5rem;
  }

  .img_attention {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .title_attention_kit {
    font-size: 1.25rem;
    margin-top: 2rem;
    line-height: 1.4;
  }

  .amazon_benefits {
    font-size: 1rem;
    line-height: 1.8;
  }

  .amazon_benefits i {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 640px) {
  .solution_content {
    margin-bottom: 3rem;
  }

  .img_solution {
    width: 140px;
    margin-bottom: 1.5rem;
  }

  .title_attetion {
    font-size: 1.5rem;
  }

  .attention_box {
    padding: 1.25rem;
  }

  .attetion_text,
  .attetion_text2 {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .seta_down_solution {
    width: 70px;
    margin-bottom: 3rem;
  }

  .attention_kit_title {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
  }

  .glass-container {
    padding: 1.25rem;
  }

  .title_attention_kit {
    font-size: 1.125rem;
  }

  .amazon_benefits {
    font-size: 0.9375rem;
  }

  .amazon_benefits i {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 480px) {
  .img_solution {
    width: 120px;
  }

  .title_attetion {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .attention_box {
    padding: 1rem;
  }

  .attetion_text,
  .attetion_text2 {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .seta_down_solution {
    width: 60px;
  }

  .attention_kit_title {
    font-size: 1.625rem;
  }

  .glass-container {
    padding: 1rem;
  }

  .title_attention_kit {
    font-size: 1rem;
  }

  .amazon_benefits {
    font-size: 0.875rem;
  }

  .amazon_benefits i {
    font-size: 1.25rem;
  }
}

/* ============================================
   SECTION: UNDERSTAND
   ============================================ */

@media (max-width: 768px) {
  ._understand_info-card {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  ._understand_card-image {
    width: 100%;
    height: auto;
    max-width: 14rem;
    margin: 0 auto;
  }

  ._understand_benefits-list {
    margin-top: 1rem;
    gap: 0.75rem;
  }

  ._understand_benefit-item {
    padding: 0.75rem;
  }

  ._understand_check-icon {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  ._understand_benefit-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  ._understand_cta-banner h2 {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    line-height: 1.4;
  }

  ._understand_cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
  }

  ._understand_learning-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  ._understand_learning-card {
    padding: 1.5rem;
  }

  ._understand_learning-emoji {
    font-size: 2.75rem;
  }

  ._understand_learning-card h4 {
    font-size: 1rem;
  }

  ._understand_learning-card p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  ._understand_info-card {
    padding: 1.5rem;
  }

  ._understand_card-image {
    max-width: 12rem;
  }

  ._understand_benefit-item {
    padding: 0.625rem;
  }

  ._understand_benefit-text {
    font-size: 0.875rem;
  }

  ._understand_cta-banner h2 {
    font-size: 1.25rem;
  }

  ._understand_cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  ._understand_learning-card {
    padding: 1.25rem;
  }

  ._understand_learning-emoji {
    font-size: 2.5rem;
  }

  ._understand_learning-card h4 {
    font-size: 0.9375rem;
  }

  ._understand_learning-card p {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  ._understand_section-title {
    font-size: 1.5rem;
  }

  ._understand_info-card {
    padding: 1.25rem;
  }

  ._understand_info-card h3 {
    font-size: 1.125rem;
  }

  ._understand_info-card p {
    font-size: 0.9375rem;
  }

  ._understand_benefit-text {
    font-size: 0.8125rem;
  }

  ._understand_final-text {
    font-size: 0.875rem;
  }

  ._understand_cta-banner h2 {
    font-size: 1.125rem;
  }

  ._understand_cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  ._understand_learning-title {
    font-size: 1.375rem;
  }

  ._understand_learning-card {
    padding: 1rem;
  }
}

/* ============================================
   SECTION: FOOTER/RODAPE
   ============================================ */

@media screen and (max-width: 768px) {
  .rodape_section {
    padding: 3rem 1rem;
  }

  .rodape_container {
    gap: 3rem;
  }

  .rodape_title_main {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
  }

  .rodape_title_secondary {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.4;
  }

  .rodape_play_text {
    font-size: 0.9375rem;
  }

  .rodape_video_player_wrapper {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 640px;
  }

  .rodape_nav_arrow {
    padding: 0.625rem;
  }

  .rodape_icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .rodape_dot {
    width: 24px;
    height: 6px;
    border-radius: 3px;
  }

  .rodape_dot.active {
    width: 36px;
  }

  .rodape_icon_down {
    width: 3rem;
    height: 3rem;
  }

  .rodape_carousel_title {
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    line-height: 1.3;
  }

  .rodape_carousel_wrapper {
    height: 180px;
  }

  .rodape_carousel_item {
    width: 280px;
    height: 180px;
  }

  .rodape_carousel_item.next {
    transform: translateX(105%) scale(0.85);
  }

  .rodape_carousel_item.far {
    transform: translateX(210%) scale(0.65);
  }

  .rodape_carousel_nav {
    padding: 0.75rem;
  }

  .rodape_indicator {
    width: 12px;
    height: 12px;
  }

  .rodape_indicator.active {
    width: 32px;
  }

  .rodape_benefits_header {
    margin-bottom: 2.5rem;
  }

  .rodape_benefits_title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
  }

  .rodape_benefits_subtitle,
  .rodape_benefits_subtitle_highlight {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.4;
  }

  .rodape_benefits_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .rodape_benefit_card {
    padding: 2rem 1.5rem;
  }

  .rodape_benefit_number {
    top: -1.25rem;
    left: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.625rem;
  }

  .rodape_benefit_content {
    margin-top: 1.25rem;
  }

  .rodape_benefit_title {
    font-size: 1.0625rem;
    line-height: 1.4;
  }

  .rodape_benefit_description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .rodape_decorative_lines {
    margin-top: 2.5rem;
  }

  .rodape_line {
    width: 3.5rem;
    height: 4px;
  }
}

@media screen and (max-width: 640px) {
  .rodape_section {
    padding: 2.5rem 1rem;
  }

  .rodape_title_main {
    font-size: 1.5rem;
  }

  .rodape_title_secondary {
    font-size: 1.25rem;
  }

  .rodape_play_text {
    font-size: 0.875rem;
  }

  .rodape_carousel_title {
    font-size: 1.375rem;
  }

  .rodape_carousel_wrapper {
    height: 150px;
  }

  .rodape_carousel_item {
    width: 240px;
    height: 150px;
  }

  .rodape_carousel_item.next {
    transform: translateX(102%) scale(0.8);
  }

  .rodape_carousel_item.far {
    transform: translateX(204%) scale(0.6);
  }

  .rodape_benefits_title {
    font-size: 1.5rem;
  }

  .rodape_benefits_subtitle,
  .rodape_benefits_subtitle_highlight {
    font-size: 1.25rem;
  }

  .rodape_benefit_card {
    padding: 1.75rem 1.25rem;
  }

  .rodape_benefit_number {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  .rodape_benefit_title {
    font-size: 1rem;
  }

  .rodape_benefit_description {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 480px) {
  .rodape_section {
    padding: 2rem 0.75rem;
  }

  .rodape_title_main {
    font-size: 1.375rem;
  }

  .rodape_title_secondary {
    font-size: 1.125rem;
  }

  .rodape_play_text {
    font-size: 0.8125rem;
  }

  .rodape_carousel_title {
    font-size: 1.25rem;
  }

  .rodape_carousel_wrapper {
    height: 130px;
  }

  .rodape_carousel_item {
    width: 200px;
    height: 130px;
  }

  .rodape_carousel_item.next {
    transform: translateX(100%) scale(0.75);
  }

  .rodape_carousel_item.far {
    transform: translateX(200%) scale(0.55);
  }

  .rodape_benefits_title {
    font-size: 1.375rem;
  }

  .rodape_benefits_subtitle,
  .rodape_benefits_subtitle_highlight {
    font-size: 1.125rem;
  }

  .rodape_benefit_card {
    padding: 1.5rem 1rem;
  }

  .rodape_benefit_number {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.375rem;
    top: -1rem;
  }

  .rodape_benefit_title {
    font-size: 0.9375rem;
  }

  .rodape_benefit_description {
    font-size: 0.8125rem;
  }

  .rodape_line {
    width: 3rem;
    height: 3px;
  }
}

/* ============================================
   SECTION: TESTIMONIALS/AVALIATION
   ============================================ */

@media screen and (max-width: 768px) {
  .avaliation_section {
    padding: 4rem 1rem;
  }

  .avaliation_header {
    margin-bottom: 2.5rem;
  }

  .avaliation_pretitle {
    font-size: 0.8125rem;
  }

  .avaliation_title {
    font-size: clamp(1.875rem, 4.5vw, 2.25rem);
    line-height: 1.3;
  }

  .avaliation_subtitle {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    line-height: 1.3;
  }

  .avaliation_description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .avaliation_grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .avaliation_card {
    padding: 1.25rem;
  }

  .avaliation_avatar {
    width: 2.75rem;
    height: 2.75rem;
  }

  .avaliation_verified_badge {
    width: 1.125rem;
    height: 1.125rem;
  }

  .avaliation_name {
    font-size: 0.9375rem;
  }

  .avaliation_username {
    font-size: 0.8125rem;
  }

  .avaliation_star {
    width: 1.125rem;
    height: 1.125rem;
  }

  .avaliation_comment {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .avaliation_action_btn {
    font-size: 0.875rem;
  }

  .avaliation_action_icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .avaliation_likes {
    font-size: 0.8125rem;
  }

  .avaliation_time {
    font-size: 0.8125rem;
  }

  .avaliation_cta_button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
  }

  .avaliation_cta_subtitle {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 640px) {
  .avaliation_section {
    padding: 3rem 1rem;
  }

  .avaliation_header {
    margin-bottom: 2rem;
  }

  .avaliation_pretitle {
    font-size: 0.75rem;
  }

  .avaliation_title {
    font-size: 1.875rem;
  }

  .avaliation_subtitle {
    font-size: 1.5rem;
  }

  .avaliation_description {
    font-size: 0.875rem;
  }

  .avaliation_card {
    padding: 1rem;
  }

  .avaliation_avatar {
    width: 2.5rem;
    height: 2.5rem;
  }

  .avaliation_verified_badge {
    width: 1rem;
    height: 1rem;
  }

  .avaliation_name {
    font-size: 0.875rem;
  }

  .avaliation_username {
    font-size: 0.75rem;
  }

  .avaliation_star {
    width: 1rem;
    height: 1rem;
  }

  .avaliation_comment {
    font-size: 0.875rem;
  }

  .avaliation_action_btn {
    font-size: 0.8125rem;
  }

  .avaliation_action_icon {
    width: 1rem;
    height: 1rem;
  }

  .avaliation_likes,
  .avaliation_time {
    font-size: 0.75rem;
  }

  .avaliation_cta_button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }

  .avaliation_cta_subtitle {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 480px) {
  .avaliation_title {
    font-size: 1.625rem;
  }

  .avaliation_subtitle {
    font-size: 1.375rem;
  }

  .avaliation_description {
    font-size: 0.8125rem;
  }

  .avaliation_comment {
    font-size: 0.8125rem;
  }

  .avaliation_cta_button {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
  }

  .avaliation_cta_subtitle {
    font-size: 0.75rem;
  }
}

/* ============================================
   SECTION: HOW TO USE
   ============================================ */

@media screen and (max-width: 768px) {
  ._how-to-use.container {
    padding: 2rem 1rem 3rem 1rem !important;
  }

  ._how-to-use.title {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    margin-bottom: 2rem;
    line-height: 1.3;
  }

  ._how-to-use.cards-wrapper {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  ._how-to-use.card {
    max-width: 160px;
    flex: 1 1 160px;
  }

  ._how-to-use.icon-circle {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 0.75rem;
  }

  ._how-to-use.icon {
    font-size: 2rem;
  }

  ._how-to-use.card-title {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    line-height: 1.4;
  }

  ._how-to-use.card-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  ._how-to-use.bar {
    padding: 0.75rem 1rem;
  }

  ._how-to-use.bar-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 640px) {
  ._how-to-use.container {
    padding: 1.5rem 1rem 2.5rem 1rem !important;
  }

  ._how-to-use.title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  ._how-to-use.cards-wrapper {
    gap: 1rem;
  }

  ._how-to-use.card {
    max-width: 140px;
    flex: 1 1 140px;
  }

  ._how-to-use.icon-circle {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.5rem;
  }

  ._how-to-use.icon {
    font-size: 1.75rem;
  }

  ._how-to-use.card-title {
    font-size: 0.875rem;
  }

  ._how-to-use.card-text {
    font-size: 0.75rem;
  }

  ._how-to-use.bar {
    padding: 0.625rem 0.75rem;
  }

  ._how-to-use.bar-text {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 480px) {
  ._how-to-use.title {
    font-size: 1.125rem;
  }

  ._how-to-use.card {
    max-width: 120px;
    flex: 1 1 120px;
  }

  ._how-to-use.icon-circle {
    width: 3.5rem;
    height: 3.5rem;
  }

  ._how-to-use.icon {
    font-size: 1.5rem;
  }

  ._how-to-use.card-title {
    font-size: 0.8125rem;
  }

  ._how-to-use.card-text {
    font-size: 0.6875rem;
  }

  ._how-to-use.bar-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   SECTION: BONUS
   ============================================ */

@media screen and (max-width: 768px) {
  ._bonus.container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._bonus.title {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    line-height: 1.3;
  }

  ._bonus.subtitle {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  ._bonus.grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  ._bonus.product-card {
    padding: 1.5rem;
  }

  ._bonus.product-image {
    max-width: 180px;
    height: auto;
  }

  ._bonus.product-title {
    font-size: 1rem;
    line-height: 1.4;
  }

  ._bonus.product-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  ._bonus.price-old,
  ._bonus.price-new {
    font-size: 1rem;
  }
}

@media screen and (max-width: 640px) {
  ._bonus.container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  ._bonus.title {
    font-size: 1.25rem;
  }

  ._bonus.subtitle {
    font-size: 0.875rem;
  }

  ._bonus.product-card {
    padding: 1.25rem;
  }

  ._bonus.product-image {
    max-width: 150px;
  }

  ._bonus.product-title {
    font-size: 0.9375rem;
  }

  ._bonus.product-description {
    font-size: 0.8125rem;
  }

  ._bonus.price-old,
  ._bonus.price-new {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 480px) {
  ._bonus.title {
    font-size: 1.125rem;
  }

  ._bonus.subtitle {
    font-size: 0.8125rem;
  }

  ._bonus.product-card {
    padding: 1rem;
  }

  ._bonus.product-image {
    max-width: 130px;
  }

  ._bonus.product-title {
    font-size: 0.875rem;
  }

  ._bonus.product-description {
    font-size: 0.75rem;
  }

  ._bonus.price-old,
  ._bonus.price-new {
    font-size: 0.875rem;
  }
}

/* ============================================
   SECTION: BUY/PURCHASE
   ============================================ */

@media screen and (max-width: 768px) {
  .container_buy {
    max-width: 100%;
    padding: 0 1rem;
  }

  .section_buy {
    padding: 2rem 1.5rem;
  }

  .title_buy {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
    margin-bottom: 2rem;
  }

  .image_buy {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .list_buy {
    margin-bottom: 2rem;
    gap: 0.75rem;
  }

  .text_buy {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .check-icon_buy {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
  }

  .original-price-text_buy {
    font-size: 0.9375rem;
  }

  .currency-symbol_buy {
    font-size: 2.75rem;
  }

  .price-amount_buy {
    font-size: 3rem;
  }

  .installments_buy {
    font-size: 1.25rem;
  }

  .access-label_buy {
    font-size: 0.875rem;
  }

  .cta-button_buy {
    width: 100%;
    max-width: 360px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .security-badges_buy {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .badge-icon_buy {
    width: 1.75rem;
    height: 1.75rem;
  }

  .badge-label_buy {
    font-size: 0.8125rem;
  }

  .img_buy {
    width: 220px;
    height: auto;
  }

  .arrow-down_buy {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 640px) {
  .section_buy {
    padding: 1.75rem 1.25rem;
  }

  .title_buy {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .list_buy {
    margin-bottom: 1.5rem;
  }

  .text_buy {
    font-size: 0.875rem;
  }

  .check-icon_buy {
    width: 1rem;
    height: 1rem;
  }

  .original-price-text_buy {
    font-size: 0.875rem;
  }

  .currency-symbol_buy {
    font-size: 2.5rem;
  }

  .price-amount_buy {
    font-size: 2.75rem;
  }

  .installments_buy {
    font-size: 1.125rem;
  }

  .access-label_buy {
    font-size: 0.8125rem;
  }

  .cta-button_buy {
    max-width: 320px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .security-badges_buy {
    gap: 1rem;
  }

  .badge-icon_buy {
    width: 1.5rem;
    height: 1.5rem;
  }

  .badge-label_buy {
    font-size: 0.75rem;
  }

  .img_buy {
    width: 200px;
  }

  .arrow-down_buy {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .section_buy {
    padding: 1.5rem 1rem;
  }

  .title_buy {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .text_buy {
    font-size: 0.8125rem;
  }

  .check-icon_buy {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .currency-symbol_buy {
    font-size: 2.25rem;
  }

  .price-amount_buy {
    font-size: 2.5rem;
  }

  .installments_buy {
    font-size: 1rem;
  }

  .cta-button_buy {
    max-width: 280px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .img_buy {
    width: 160px;
  }

  .arrow-down_buy {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   SECTION: GUARANTEE
   ============================================ */

@media screen and (max-width: 768px) {
  .image_guarantee {
    width: clamp(180px, 40vw, 240px);
    height: auto;
    margin-bottom: 2.5rem;
  }

  .text_guarantee {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .title_guarantee {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2.5rem;
    line-height: 1.3;
  }

  .image-blindado_guarantee {
    width: clamp(180px, 40vw, 240px);
    height: auto;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 640px) {
  .image_guarantee {
    width: 200px;
    margin-bottom: 2rem;
  }

  .text_guarantee {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }

  .title_guarantee {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .image-blindado_guarantee {
    width: 200px;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .image_guarantee {
    width: 160px;
    margin-bottom: 1.5rem;
  }

  .text_guarantee {
    font-size: 0.8125rem;
  }

  .title_guarantee {
    font-size: 1.375rem;
  }

  .image-blindado_guarantee {
    width: 160px;
  }
}

/* ============================================
   SECTION: FAQs
   ============================================ */

@media screen and (max-width: 768px) {
  .section_faqs {
    padding: 4rem 1rem;
  }

  .header_faqs {
    margin-bottom: 2.5rem;
  }

  .title_faqs {
    font-size: clamp(1.875rem, 4.5vw, 2.5rem);
    line-height: 1.3;
  }

  .subtitle_faqs {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .accordion_faqs {
    gap: 1.25rem;
  }

  .question-button_faqs {
    padding: 1.25rem 1.5rem;
    text-align: left;
  }

  .question-text_faqs {
    font-size: 1rem;
    line-height: 1.5;
  }

  .answer_faqs {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .cta-section_faqs {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }

  .cta-text_faqs {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .cta-button_faqs {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .title-add_faqs {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-top: 4rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 640px) {
  .section_faqs {
    padding: 3rem 1rem;
  }

  .header_faqs {
    margin-bottom: 2rem;
  }

  .title_faqs {
    font-size: 1.875rem;
  }

  .subtitle_faqs {
    font-size: 1rem;
  }

  .accordion_faqs {
    gap: 1rem;
  }

  .question-button_faqs {
    padding: 1rem 1.25rem;
  }

  .question-text_faqs {
    font-size: 0.9375rem;
  }

  .answer_faqs {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.875rem;
  }

  .cta-section_faqs {
    padding: 2rem 1.25rem;
    margin-top: 2.5rem;
  }

  .cta-text_faqs {
    font-size: 1rem;
  }

  .cta-button_faqs {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }

  .title-add_faqs {
    font-size: 1.75rem;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .title_faqs {
    font-size: 1.625rem;
  }

  .subtitle_faqs {
    font-size: 0.9375rem;
  }

  .question-button_faqs {
    padding: 0.875rem 1rem;
  }

  .question-text_faqs {
    font-size: 0.875rem;
  }

  .answer_faqs {
    padding: 0 1rem 0.875rem 1rem;
    font-size: 0.8125rem;
  }

  .cta-text_faqs {
    font-size: 0.9375rem;
  }

  .cta-button_faqs {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
  }

  .title-add_faqs {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

/* ============================================
   SECTION: FOOTER
   ============================================ */

@media screen and (max-width: 768px) {
  .footer_top {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer_links_area {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer_link {
    font-size: 0.9375rem;
    padding: 0.375rem 0;
  }

  .footer_separator {
    display: none;
  }

  .footer_social {
    order: 2;
    margin-top: 0.5rem;
    gap: 1rem;
  }

  .footer_logo_area {
    order: 1;
    margin-bottom: 0.5rem;
  }

  .footer_logo img {
    width: 3.5rem;
    height: auto;
  }

  .footer_logo_text {
    font-size: 1.25rem;
  }

  .footer_copyright {
    font-size: 0.875rem;
    padding: 1.5rem 1rem;
  }
}

@media screen and (max-width: 640px) {
  .footer_top {
    gap: 1.25rem;
  }

  .footer_link {
    font-size: 0.875rem;
  }

  .footer_social {
    gap: 0.875rem;
  }

  .footer_logo img {
    width: 3rem;
  }

  .footer_logo_text {
    font-size: 1.125rem;
  }

  .footer_copyright {
    font-size: 0.8125rem;
    padding: 1.25rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .footer_logo img {
    width: 2.75rem;
  }

  .footer_logo_text {
    font-size: 1rem;
  }

  .footer_link {
    font-size: 0.8125rem;
  }

  .footer_social_link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .footer_social_icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .footer_copyright {
    font-size: 0.75rem;
    padding: 1rem 0.75rem;
  }
}

/* ============================================
   GENERAL IMPROVEMENTS
   ============================================ */

/* Smooth transitions for responsive elements */
@media (prefers-reduced-motion: no-preference) {
  .image_principal,
  .img_solution,
  .seta_down_solution,
  .img_attention,
  .image_buy,
  .img_buy,
  .image_guarantee,
  .image-blindado_guarantee,
  ._bonus.product-image,
  ._understand_card-image {
    transition: width 0.3s ease, max-width 0.3s ease;
  }

  .benefit-card,
  .problem-box,
  .worst-box,
  .avaliation_card,
  ._bonus.product-card,
  .rodape_benefit_card,
  ._understand_learning-card,
  ._how-to-use.card {
    transition: padding 0.2s ease, transform 0.2s ease;
  }
}

/* Ensure touch targets are at least 44x44px on mobile */
@media screen and (max-width: 768px) {
  .cta-button,
  .cta-button_buy,
  .cta-button_faqs,
  ._understand_cta-button,
  .avaliation_cta_button,
  .question-button_faqs {
    min-height: 44px;
    min-width: 44px;
  }

  .rodape_nav_arrow,
  .rodape_carousel_nav,
  .footer_social_link {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Improve text readability on small screens */
@media screen and (max-width: 640px) {
  .benefit-text,
  .problem-text,
  .worst-text,
  .attetion_text,
  .attetion_text2,
  .text_buy,
  .text_guarantee,
  .avaliation_comment,
  ._bonus.product-description,
  ._understand_benefit-text,
  ._how-to-use.card-text,
  .answer_faqs {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Optimize images for mobile */
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ============================================
   SECTION: GLASS CONTAINER & PRINCIPAL GLASS
   ============================================ */

@media screen and (max-width: 1200px) {
  .glass-container {
    width: 90%;
    height: auto;
    max-width: 900px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .image_principal_glass .img_attention {
    width: 85%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
  }

  .glass-container {
    width: 95%;
    padding: 1.5rem;
  }

  .attention_kit_title {
    font-size: clamp(1.75rem, 4.5vw, 2.25rem);
    line-height: 1.3;
  }

  .title_attention_kit {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .amazon_benefits {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .amazon_benefits i {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 640px) {
  .image_principal_glass .img_attention {
    width: 87%;
  }

  .glass-container {
    width: 98%;
    padding: 1.25rem;
  }

  .attention_kit_title {
    font-size: 1.875rem;
  }

  .title_attention_kit {
    font-size: 1.125rem;
  }

  .amazon_benefits {
    font-size: 0.875rem;
  }

  .amazon_benefits i {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .image_principal_glass .img_attention {
    width: 90%;
  }

  .glass-container {
    width: 100%;
    padding: 1rem;
  }

  .attention_kit_title {
    font-size: 1.625rem;
  }

  .title_attention_kit {
    font-size: 1rem;
  }

  .amazon_benefits {
    font-size: 0.8125rem;
  }

  .amazon_benefits i {
    font-size: 1.125rem;
  }
}

/* ============================================
   CUSTOM RESPONSIVE FIXES FOR MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Bonus Container Fixes */
  ._bonus.container {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-items: center;
    position: relative;
  }

  ._bonus.product-card {
    height: auto;
    min-height: 550px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  /* Attention Section Improvements */
  .title_attetion {
    font-size: 1.625rem !important;
    line-height: 1.4 !important;
    padding: 0 0.5rem;
  }

  .attetion_text,
  .attetion_text2 {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    text-align: center;
    display: block;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .attention_box {
    height: auto !important;
    padding: 1.5rem !important;
    border-radius: 2rem !important;
  }

  .attetion_text {
    margin-top: 1.5rem !important;
  }

  .attetion_text2 {
    margin-top: 2.5rem !important;
  }

  .seta_down_solution {
    margin-bottom: 4rem !important;
  }

  /* Understand Section Improvements */
  ._understand_info-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  ._understand_card-image-wrapper {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  ._understand_card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }

  ._understand_card-content h3 {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem;
  }

  ._understand_card-content p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
  }

  ._understand_section-title {
    font-size: 1.875rem !important;
    line-height: 1.3 !important;
  }

  ._understand_decorative-lines {
    margin-bottom: 2rem;
  }

  /* Guarantee Section Improvements */
  .guarantee-section {
    padding: 3rem 1rem !important;
  }

  .guarantee-image,
  .image_guarantee {
    width: clamp(150px, 35vw, 200px) !important;
    height: auto !important;
    margin: 0 auto 2.5rem !important;
  }

  .guarantee-title,
  .title_guarantee {
    font-size: 1.875rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem;
  }

  .guarantee-text,
  .text_guarantee {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem;
  }

  .guarantee-text br,
  .text_guarantee br {
    display: none;
  }

  .guarantee-text span,
  .text_guarantee span {
    display: inline;
  }

  .guarantee-text:last-of-type,
  .text_guarantee:last-of-type {
    margin-bottom: 2rem;
  }

  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .security-badge img {
    width: 100px;
    height: auto;
  }

  /* Home Section Improvements */
  .image_principal {
    width: 100% !important;
    max-width: 450px !important;
    margin: 0 auto 2.5rem !important;
  }

  .img_home {
    margin-bottom: 1.5rem;
  }

  .solution-header .title-large {
    font-size: 1.875rem !important;
    line-height: 1.3 !important;
  }

  .solution-header .subtitle {
    font-size: 1.0625rem !important;
    line-height: 1.5 !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-text {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    width: 100%;
    max-width: 400px;
  }

  .final-text p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /* Problems Section */
  .problems-container {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 2.5rem;
  }

  .problem-box {
    padding: 1.25rem;
  }

  .problem-text {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .worst-box {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1.25rem;
  }

  .worst-text {
    font-size: 1.0625rem !important;
    line-height: 1.6 !important;
  }

  .bracket {
    font-size: 2rem !important;
    line-height: 1 !important;
  }

  /* Amazon Benefits */
  .amazon_benefits_benefits {
    display: block;
    margin-bottom: 0.75rem;
  }

  .amazon_benefits_benefits i {
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .amazon_benefits_benefits span {
    display: inline;
    vertical-align: middle;
  }

  /* Glass Container Specific */
  .image_principal_glass {
    margin-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  ._bonus.product-card {
    max-width: 320px;
    min-height: 520px;
  }

  .title_attetion {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
  }

  .attetion_text,
  .attetion_text2 {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  .attention_box {
    padding: 1.25rem !important;
  }

  ._understand_info-card {
    padding: 1.25rem;
  }

  ._understand_card-content h3 {
    font-size: 1.125rem !important;
  }

  ._understand_card-content p {
    font-size: 0.875rem !important;
  }

  ._understand_section-title {
    font-size: 1.75rem !important;
  }

  .solution-header .title-large {
    font-size: 1.75rem !important;
  }

  .solution-header .subtitle {
    font-size: 1rem !important;
  }

  .benefit-text {
    font-size: 0.8125rem !important;
  }

  .final-text p {
    font-size: 0.875rem !important;
  }
}

@media (max-width: 480px) {
  ._bonus.product-card {
    max-width: 290px;
    min-height: 500px;
    padding: 1rem;
  }

  .title_attetion {
    font-size: 1.375rem !important;
  }

  .attetion_text,
  .attetion_text2 {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .attention_box {
    padding: 1rem !important;
    border-radius: 1.5rem !important;
  }

  ._understand_info-card {
    padding: 1rem;
  }

  ._understand_card-content h3 {
    font-size: 1rem !important;
  }

  ._understand_card-content p {
    font-size: 0.8125rem !important;
  }

  ._understand_section-title {
    font-size: 1.625rem !important;
  }

  .solution-header .title-large {
    font-size: 1.625rem !important;
  }

  .solution-header .subtitle {
    font-size: 0.9375rem !important;
  }

  .benefit-card {
    padding: 0.875rem;
  }

  .benefit-text {
    font-size: 0.75rem !important;
  }

  .final-text p {
    font-size: 0.8125rem !important;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .problem-box {
    padding: 1rem;
  }

  .worst-box {
    padding: 1rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .bracket {
    font-size: 1.75rem !important;
  }
}

