@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap");

:root {
   --color-1: #136c5d;
   --color-2: #157463;
   --color-3: #f4f4f4;
   --color-4: #10554b;
   --color-5: #1fad96;
   --color-6: #fff;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: 0;
   border: none;
   text-decoration: none;
   transition: all 0.2s linear;
}

html {
   font-family: Roboto, sans-serif;
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 8rem;
}

body {
   user-select: none;
   -moz-user-select: none;
   -webkit-user-select: none;
   background-color: var(--color-3);
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 2rem;
}

.title {
   font-size: 4rem;
   font-weight: bold;
   text-align: center;
   margin: 0 0 2.5rem;
}

.divider {
   width: 100px;
   height: 4px;
   background-color: var(--color-2);
   margin: 0 auto 4rem;
}

p {
   font-size: 2.2rem;
   line-height: 1.5;
   margin-bottom: 1.5rem;
}

/* Header */
header {
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   background-color: var(--color-6);
}

header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1.5rem;
}

.logo h2 {
   font-size: 3.5rem;
   color: var(--color-4);
}

nav a {
   color: var(--color-4);
   text-decoration: none;
   margin-left: 20px;
   font-size: 2rem;
}

/* section {
   box-shadow:
      rgba(0, 0, 0, 0.19) 0px 10px 20px,
      rgba(0, 0, 0, 0.23) 0px 6px 6px;
} */

/* Hero Section */

.hero {
   background-color: var(--color-3);
}

.hero .container {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 4rem;
}

.hero-content {
   flex: 1;
}

.hero-content .price-hero {
   font-size: 2rem;
   font-weight: bold;
   color: var(--color-1);
   margin-bottom: 0;
}

.hero-content .stars {
   font-size: 2rem;
   color: #f5c518;
   margin-bottom: 1rem;
}

.hero-content .stars span {
   color: #000;
}

.hero-content h1 {
   font-size: 4rem;
   line-height: 1.2;
   margin: 2rem 0;
   color: var(--color-2);
}

.hero-content h2 {
   font-size: 2.5rem;
   color: #333;
   margin-bottom: 1rem;
}

.hero-content p {
   font-size: 2rem;
   font-weight: 500;
   color: #000;
   margin-bottom: 20px;
}

.hero-content .btn {
   display: inline-block;
   background: linear-gradient(to bottom, var(--color-5), var(--color-4));
   border: none;
   padding: 14px 40px;
   border-radius: 10px;
   color: white;
   font-weight: bold;
   font-size: 2rem;
   text-transform: uppercase;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
   cursor: pointer;
   transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
   margin: 2rem 0;
   max-width: 200px;
   text-align: center;
}

.hero-content .btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-image {
   flex: 1;
   text-align: center;
}

.hero-image img {
   width: 80%;
   height: auto;
}

/* Banner Section */

.banner {
   background: linear-gradient(to bottom, var(--color-5), var(--color-4));
}

.banner .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
}

.banner .container p {
   color: white;
   font-size: 2.2rem;
   font-weight: 600;
   text-transform: capitalize;
   margin: 0;
}

/* Intro Seciton */

.intro {
   background-color: var(--color-3);
}

.intro .container .intro-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   margin: 4rem auto;
   justify-items: center;
}

.intro .container .intro-cards .card {
   background-color: #fff;
   border: 2px solid var(--color-2);
   border-radius: 20px;
   padding: 20px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.intro .container .intro-cards .card img {
   width: 50%;
   object-fit: cover;
   border-radius: 12px;
   margin-bottom: 20px;
}

.intro .container .intro-cards .card .name {
   font-size: 2.5rem;
   margin: 0;
   font-weight: 500;
   color: var(--color-2);
}

/* what-is-it Section */

.what-is-it {
   background-color: var(--color-6);
}

/* Compare */

.compare {
   background: var(--color-3);
   text-align: center;
}

.compare .container {
   max-width: 1100px;
}

.compare-box {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   background: var(--color-6);
   border: 2px dashed var(--color-1);
   border-radius: 24px;
   padding: 3rem;
   gap: 1rem;
   margin-top: 3rem;
}

.product {
   flex: 1;
   text-align: center;
}

.product img {
   width: 300px;
   height: 300px;
   margin-bottom: 15px;
}

.product h3 {
   font-size: 3rem;
   font-weight: bold;
   margin-bottom: 2rem;
   text-align: left;
}

.product ul {
   list-style: none;
   line-height: 2;
   padding: 0;
   text-align: left;
   margin: 0 auto;
}

.product ul li {
   font-size: 2.2rem;
}

.product-left li i {
   font-size: 3rem;
   color: #3cbc59;
   margin-right: 1rem;
}

.product-right li i {
   font-size: 3rem;
   color: #f15b5b;
   margin-right: 1rem;
}

/* how-it-work */

.how-it-work {
   background-color: var(--color-6);
}

/* Ingredients Section */

.ingredients {
   background-color: var(--color-3);
   color: #000;
   text-align: center;
}

.ingredients .container {
   max-width: 1000px;
}

.ingredients p {
   margin-bottom: 2rem;
}

.ingredients-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 2rem;
   text-align: center;
}

.ingredient-card {
   background: #fff;
   padding: 2rem;
   border-radius: 14px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   max-width: 100%;
   width: 400px;
}

.ingredient-card img {
   width: 100%;
   height: auto;
   object-fit: cover;
   border-radius: 12px;
   margin-bottom: 15px;
}

.ingredient-card h3 {
   background-color: var(--color-2);
   border-radius: 15px;
   color: #fff;
   font-size: 2rem;
   font-weight: 600;
   padding: 0.5rem;
   text-align: center;
   margin: 1rem 0;
}

.ingredient-card p {
   font-size: 2.1rem;
   color: #555;
   line-height: 1.3;
   margin: 2rem 0 0;
   text-align: start;
}

/* Testimonials */

.testimonials {
   background-color: var(--color-6);
}

.testimonials-list {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.testimony {
   display: flex;
   gap: 20px;
   padding: 1.5rem;
}

.image img {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   object-fit: cover;
}

.content {
   flex-grow: 1;
}

.stars {
   display: flex;
   gap: 3px;
   color: #ffd700;
}

.stars i {
   font-size: 2rem;
}

.stars span {
   margin-left: 10px;
   font-size: 1.9rem;
   color: #777;
}

h3 {
   font-size: 2.5rem;
   font-weight: bold;
   margin-bottom: 0.5rem;
}

h4 {
   font-size: 2.2rem;
   font-weight: 400;
   font-style: italic;
   margin: 1rem 0;
}

h5 {
   font-size: 1.9rem;
   font-weight: bold;
}

/* Side Effects Section */

.side-effects {
   background-color: var(--color-3);
}

.side-effects .certification {
   margin-top: 4rem;
   text-align: center;
}

.side-effects .certification img {
   width: 80%;
}

/*Shipping Section */

.shipping {
   background-color: #313030;
   color: #fff;
   padding: 30px 20px;
   text-align: center;
}

.shipping .shipping-container {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
}

.shipping img {
   max-width: 220px;
   height: auto;
}

.shipping .shipping-text h2 {
   font-size: 3rem;
   margin: 0;
}

.shipping .highlight {
   color: yellow;
   text-decoration: underline;
}

.shipping .shipping-text p {
   margin-top: 10px;
   font-size: 2rem;
   color: #ccc;
}

/* Results Section */

.results {
   background-color: var(--color-3);
   padding: 60px 20px;
   text-align: center;
   color: #000;
}

.results .text-container h2 {
   font-size: 3.5rem;
   font-weight: bold;
   margin-bottom: 20px;
}

.results .text-container p {
   max-width: 900px;
   margin: 0 auto 40px;
   font-size: 2rem;
   line-height: 1.6;
}

.results .seals-container {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
   flex-wrap: wrap;
}

.results .seals-container img {
   max-width: 180px;
   height: auto;
}

/* Warning */

.warning .container .text-alert {
   background-color: orangered;
   border-radius: 15px;
   color: yellow;
   padding: 2rem;
   text-align: center;
}

.warning .container .text-alert h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
}

.warning .container .text-alert h2 i {
   font-size: 3rem;
}

.warning .container .text-alert p {
   font-size: 2rem;
   font-weight: bold;
}

.warning .container .fake-stores {
   background-color: var(--color-3);
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
   border-radius: 15px;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   margin: 2rem 0 0;
   gap: 3rem;
   padding: 2rem;
}

.warning .container .fake-stores img {
   max-width: 100%;
   width: 200px;
   height: 100px;
}

/* Pricing Section */

.pricing {
   background-color: var(--color-2);
   text-align: center;
}

.pricing h2 {
   background-color: var(--color-5);
   border-radius: 20px;
   font-size: 4rem;
   color: #fff;
   padding: 1.5rem 2.5rem;
   width: fit-content;
   margin: auto;
   margin-bottom: 4rem;
}

.pricing-cards {
   max-width: 1200px;
   margin: auto;
   display: flex;
   justify-content: center;
   gap: 30px;
}

.pricing-cards img {
   border-radius: 20px;
   width: 100%;
}

.pricing-cards img:hover {
   transform: scale(1.05);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Guarantee */

.guarantee {
   background-color: var(--color-5);
   text-align: center;
   padding: 4rem 2rem;
}

.guarantee .container {
   background-color: #fff;
   display: flex;
   align-items: center;
   justify-content: space-around;
   gap: 2rem;
   border-radius: 10px;
   padding: 4rem;
}

.guarantee-img {
   width: 200px;
}

.guarantee-text h2 {
   font-size: 3.5rem;
   color: #333;
   margin-bottom: 10px;
}

.guarantee-text p {
   font-size: 2.2rem;
   color: #555;
   margin-bottom: 25px;
}

/* FAQ */

.faq {
   background-color: var(--color-3);
   /* padding: 2rem; */
   border-radius: 8px;
   margin: 0 auto;
}

.faq .container {
   max-width: 900px;
}

.faq-item {
   margin-bottom: 1rem;
}

.faq-question {
   width: 100%;
   padding: 2rem;
   text-align: left;
   background-color: #ffffff;
   border: 1px solid var(--color-2);
   border-radius: 10px;
   font-size: 2.2rem;
   font-weight: bold;
   cursor: pointer;
   transition: background-color 0.3s ease;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.faq-icon {
   font-size: 2rem;
   transition: transform 0.3s ease;
   margin-left: 10px;
}

.faq-answer {
   display: none;
   padding: 1rem;
   border: 1px solid #ddd;
   border-top: none;
   border-radius: 5px;
   font-size: 1rem;
}

.faq-answer img {
   width: 100%;
}

.faq-answer p {
   font-size: 1.9rem;
   /* margin: 0; */
}

.faq-question.active .faq-icon {
   transform: rotate(180deg);
}

.faq-question.active + .faq-answer {
   display: block;
}

.shipping-table {
   font-size: 2rem;
   width: 100%;
   border-collapse: collapse;
   margin: 20px 0;
}

.shipping-table th,
.shipping-table td {
   padding: 12px;
   text-align: left;
   border: 1px solid #ddd;
}

.shipping-table th {
   background-color: #f2f2f2;
   font-weight: bold;
}

.shipping-table tr:nth-child(even) {
   background-color: #f9f9f9;
}

.shipping-table tr:hover {
   background-color: #f1f1f1;
}

/* Footer */

.footer {
   background-color: #fff;
   text-align: center;
}

.footer .container {
   max-width: 100%;
   padding: 0;
}

.footer-links {
   background-color: var(--color-4);
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   font-weight: bold;
   margin-bottom: 2rem;
   padding: 2rem;
}

.footer-links a {
   color: #fff;
   font-size: 1.9rem;
   text-decoration: none;
}

.footer p {
   font-size: 1.6rem;
}

.footer-suporte {
   margin-bottom: 2.5rem;
}

.footer-disclaimer {
   max-width: 1000px;
   margin: 0 auto 20px;
   text-align: justify;
   color: #666;
   line-height: 1.5;
   padding: 2rem;
}

.footer-copy {
   background-color: #d5d5d5;
   font-size: 1.6rem;
   font-weight: bold;
   padding: 1.5rem;
}

@media (max-width: 768px) {
   .container {
      padding: 2rem;
   }

   header .container {
      flex-direction: column;
      gap: 10px;
   }

   nav a {
      margin-left: 10px;
   }

   .hero .container {
      flex-direction: column;
      /* text-align: center; */
   }

   .hero-content h1 {
      font-size: 32px;
   }

   .hero-content h2 {
      font-size: 20px;
   }

   .hero-content ul li {
      font-size: 18px;
   }

   .banner .container {
      flex-direction: column;
      align-items: start;
   }

   .bonus-cards {
      flex-direction: column;
      justify-content: center;
   }

   .side-effects .certification img {
      width: 100%;
   }

   .guarantee .container {
      flex-direction: column;
      gap: 1rem;
   }
}

@media (max-width: 450px) {
   nav a {
      display: none;
   }

   nav a.btn {
      display: none;
   }

   .compare-box {
      padding: 1.5rem;
   }

   .product ul {
      line-height: 1.5;
   }

   .product ul li {
      display: flex;
      align-items: flex-start;
      font-size: 2rem;
   }

   .product-left li i,
   .product-right li i {
      margin: 0 1rem 1rem 0;
   }

   .testimony {
      flex-direction: column;
      align-items: center;
   }

   .pricing h2 {
      font-size: 2.9rem;
   }

   .pricing-cards {
      flex-direction: column;
      align-items: center;
   }
}
