* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000000;
  overflow-x: hidden !important;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  background-color: rgb(56, 3, 3);
  height: 200px;
  padding: 20px 200px;
  width: 100%;
  box-sizing: border-box;
}

.navtitle h1 {
  font-size: 57px;
  color: rgba(247, 41, 41, 0.999);
  width: 300px;
}

.logo {
  max-width: 140px;
  height: 140px;
  object-fit: contain;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 40px;
  margin-left: auto;
  padding-right: 130px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 24px;
}

/* Responsividade */
@media (max-width: 1100px) {
  .navtitle h1 {
    font-size: 46px;
    margin-left: 0;
  }

  .logo {
    max-width: 100px;
    height: 100px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
    align-items: flex-start;
    padding-right: 0;
  }

  .nav-links a {
    font-size: 25px;
  }
}

@media (max-width: 990px) {
  .navtitle h1 {
    font-size: 46px;
    margin-left: 0;
  }

  .logo {
    max-width: 100px;
    height: 100px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
    align-items: flex-start;
    padding-right: 0;
  }

  .nav-links a {
    font-size: 25px;
  }
}
@media (max-width: 825px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .nav-content {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .navtitle h1 {
    font-size: 56px;
  }

  .logo {
    max-width: 100px;
    height: 100px;
  }
  
  .nav-links a {
    font-size: 25px;
    margin-top: 5px;
  }
}
@media (max-width: 300px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
    width: 100%;
    text-align: center;
  }

  .nav-content {
    align-items: flex-start;
  }

  .navtitle h1 {
    width: 100%;
    font-size: 36px;
    text-align: left;
  }

  .logo {
    width: 30%;
    height: 100px;
  }

  .nav-links a {
    font-size: 18px;
  }
  .nav-links {
    width: 100%;
    padding-top: 10px;
  }
}

/* Section Styling */
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #f9f9f9;
  margin: auto;
  max-width: 100%;
}

.image-content img {
  max-width: 950px;
  height: auto;
}

.text-content {
  max-width: 600px;
}

.text-content h2 {
  font-size: 46px;
  margin-bottom: 20px;
  font-weight: bold;
  color: rgb(65, 64, 64);
  font-family: "Poppins", Sans-serif;
}

.text-content p {
  font-size: 22px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: gray;
}

/* Responsiveness */

/* Larger screens */
@media (max-width: 1280px) {
  .content-section {
    flex-direction: column;
    padding: 30px;
    margin-bottom: 50px;
  }
  .text-content h2 {
    font-size: 48px;
  }

  .text-content p {
    font-size: 20px;
  }
}

/* Medium-sized screens */
@media (max-width: 950px) {
  .content-section {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .text-content {
    max-width: 550px;
  }
  .image-content {
    max-width: 650px;
  }

  .image-content img {
    width: 100%;
  }

  .text-content h2 {
    font-size: 42px;
  }

  .text-content p {
    font-size: 18px;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    padding: 15px;
    text-align: center;
    align-items: center;
  }

  .image-content {
    width: 500px;
  }

  .image-content img {
    width: 100%;
    height: auto;
  }

  .text-content {
    max-width: 90%;
  }

  .text-content h2 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 16px;
  }
}
/*extra small screens*/
@media (max-width: 480px) {
  .content-section {
    flex-direction: column;
    padding: 15px;
    text-align: center;
    align-items: center;
  }

  .image-content {
    padding: 0;
    margin: 0;
    width: 380px;
  }

  .image-content img {
    width: 100%;
    height: auto;
  }

  .text-content {
    max-width: 90%;
  }

  .text-content h2 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 16px;
  }
}
/*Very Extra small screens */
@media (max-width: 360px) {
  .content-section {
    flex-direction: column;
    padding: 15px;
    text-align: center;
    align-items: center;
  }

  .image-content {
    width: 100%;
  }

  .image-content img {
    width: 100%;
    height: auto;
  }

  .text-content {
    max-width: 90%;
  }

  .text-content h2 {
    font-size: 28px;
  }

  .text-content p {
    font-size: 16px;
  }
}

/* Section Styling for content-section-two */
.content-section-two {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  width: 100%;
  background-color: rgb(88, 3, 3);
  z-index: 0;
  height: 750px;
}
.image-content-two {
  max-width: 950px;
  position: relative;
  top: -200px;
  z-index: 1;
}
.image-content-two img {
  max-width: 850px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.text-content-two {
  padding: 30px;
  margin-top: 20px;
  width: 600px;
  height: 600px;
}

.text-content-two h2 {
  font-size: 46px;
  margin-bottom: 20px;
  font-weight: bold;
  color: white;
  font-family: "Poppins", Sans-serif;
}

.text-content-two p {
  font-size: 22px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: white;
}

/* Responsiveness for content-section-two */

/* Larger screens */
@media (max-width: 1280px) {
  .content-section-two {
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .image-content-two {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    align-items: center;
    position: static;
  }
  .text-content-two h2 {
    font-size: 56px;
  }

  .text-content-two p {
    font-size: 25px;
  }
  
}

/* Medium-sized screens */
@media (max-width: 950px) {
  .content-section-two {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .text-content-two {
    max-width: 550px;
  }

  .image-content-two {
    max-width: 650px;
  }

  .image-content-two img {
    width: 100%;
  }

  .text-content-two h2 {
    font-size: 42px;
  }

  .text-content-two p {
    font-size: 25px;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .content-section-two {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .image-content-two {
    max-width: 650px;
  }

  .image-content-two img {
    width: 100%;
  }

  .text-content-two {
    align-items: center;
    height: auto;
    max-width: 90%;
  }

  .text-content-two h2 {
    font-size: 36px;
  }

  .text-content-two p {
    font-size: 19px;
  }
}

/* Extra small screens */
@media (max-width: 535px) {
  .content-section-two {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .image-content-two {
    width: 100%;
  }

  .text-content-two {
    text-align: center;
    align-items: center;
    max-width: 90%;
  }
  .text-content-two h2 {
    font-size: 36px;
  }

  .text-content-two p {
    font-size: 16px;
  }
}
/*Very Extra small screens */
@media (max-width: 400px) {
  .content-section-two {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .text-content-two {
    max-width: 90%;
  }

  .text-content-two h2 {
    font-size: 36px;
  }

  .text-content-two p {
    font-size: 16px;
  }
}
@media (max-width: 300px) {
  .image-content-two {
    width: 100%;
  }
}
/* Section Styling */
.cards-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.cards-title {
  font-size: 66px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #000;
}

/* Container for the Cards */
.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.card {
  background-color: #ffffff;
  border: 3px solid red;
  padding: 15px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 28px;
  margin-bottom: 65px;
  font-weight: bold;
  color: rgb(218, 31, 31);
}

.card-text {
  font-size: 22px;
}
.cards-section h2{
  font-size: 52px;
  font-family: "Roboto", sans-serif;
  color: rgb(36, 34, 34);
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .cards-section h2{
    font-size: 48px;
    font-family: "Roboto", sans-serif;
    color: rgb(36, 34, 34);
  }
  .card text {
    word-break: break-word;
  }
  .card-title {
    word-break: break-word;
  }
}
/* Ingredients-section styles */
.ingredients-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.ingredients-section h2 {
  font-size: 46px;
  margin-bottom: 50px;
}

.ingredient-cards-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.ingredient-card {
  padding: 20px;
  background-color: transparent;
  text-align: center;
  transition: transform 0.3s ease;
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.ingredient-card:hover {
  transform: scale(1.05);
}

.ingredient-image {
  width: 100%;
  max-width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid red;
}

.ingredient-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  background-color: red;
  width: 300px;
  border-radius: 10px;
  padding: 20px;
  color: white;
  width: 100%;
  max-width: 300px;
}
.ingredients-section h2{
  font-size: 52px;
  font-family: "Roboto", sans-serif;
  color: rgb(54, 53, 53);
}
.ingredient-card p {
  font-size: 18px;
  line-height: 1.5;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

/* Responsividade para telas menores */
@media (max-width: 1024px) {
  .ingredient-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .ingredient-card {
    margin-bottom: 20px;
    width: 90%;
    max-width: 100%;
  }

  .ingredient-image {
    max-width: 200px;
    height: 200px;
    width: 100%;
  }

  .ingredient-card h3,
  .ingredient-card p {
    max-width: 100%;
  }
}

/* Para telas ainda menores */
@media (max-width: 768px) {
  .ingredient-card {
    width: 100%;
    max-width: 100%;
  }

  .ingredient-image {
    max-width: 200px;
  }
  .ingredients-section h2{
    font-size: 38px;
    font-family: "Roboto", sans-serif;
    word-break: break-word;
    color: rgb(54, 53, 53);
  }
  .ingredient-card p {
    max-width: 100%;
    word-break: break-word;
  }
}
@media (max-width: 300px) {
  .ingredient-card {
    width: 100%;
    max-width: 100%;
  }

  .ingredient-image {
    width: 90px;
    height: 90px;
  }
  .ingredients-section h2{
    font-size: 38px;
    font-family: "Roboto", sans-serif;
    color: rgb(54, 53, 53);
  }
  .ingredient-card p {
    max-width: 100%;
    word-break: break-word;
  }
}

/* Security Section Styling */
.security-section {
  padding: 60px 20px;
  text-align: center;
  background-attachment: fixed;
  background-image: url("background2.webp");
  background-size: cover;
  color: white;
}

.security-title {
  font-size: 56px;
  margin-bottom: 60px;
  color: white;
  font-weight: bold;
}

/* Security Cards Container */
.security-cards-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.security-card {
  background-color: rgba(0, 0, 0, 0.448);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 350px;
  text-align: center;
  position: relative;
}

.security-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.security-card p {
  font-size: 26px;
  line-height: 1.5;
}
.security-card i {
  margin-bottom: 30px;
}

.security-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("background2.webp");
  background-size: cover;
  opacity: 0.3;
  border-radius: 15px;
  z-index: -1;
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
  .security-cards-container {
    flex-direction: column;
    gap: 20px;
  }

  .security-card {
    max-width: 100%;
    margin-bottom: 20px;  
  }
  .security-card p {
    word-break: break-word;
  }
}

/* Testimonials Section Styling */

.testimonials-title {
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: bold;
}
.testimonials-section {
  position: relative;
  overflow: hidden; 
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: rgb(36, 34, 34);
}

.testimonials-container {
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 97vw;
  overflow: hidden;
}

.testimonial-card {
  min-width: 70vw;
  scroll-snap-align: start;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.11);
}

.arrow {
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  font-size: 2rem;
  color: black;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.testimonial-header {
  display: flex;
  align-items: center;
}
.testimonial-profile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.fbicon {
    display: flex;
    margin-left: auto;
    margin-right: 2px;
}

.testimonial-name span {
  font-size: 20px;
  color: #333;
  margin-left: 3px;
}

.testimonial-icon {
  font-size: 44px;
  color: #3b5998;
  display: flex;
}

/* Testimonial Text */
.testimonial-text {
  margin-top: 15px;
  font-size: 26px;
  line-height: 1.5;
  color: #666;
}
/* Media Query para telas menores */
@media (max-width: 400px) {
  .testimonial-card {
    min-width: 92vw; /* Deixa o card mais largo para telas pequenas */
  }

  .testimonials-container {
    gap: 5px; /* Ajusta o gap para manter proporção */
  }
}
.beforebuttons {
  color: white;
  padding: 50px;
  background: linear-gradient(45deg, red, darkred);
  text-align: center;
  font-size: 46px;
  font-weight: bold;
}
/*buttons of buy*/

.offers-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.offers-title {
  font-size: 66px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #000;
}

.offers-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 50px 0;
  list-style: none;
  box-sizing: border-box;
}

.offer {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  border: 3px solid rgb(184, 6, 6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.offer:hover {
  transform: scale(1.05);
}

.offer-header {
  background-color: var(--primary-color, #b40101);
  padding: 1rem;
  border-radius: 8px 8px 0 0;
  color: white;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 80px;
}

.offer-discount {
  color: var(--primary-color, #b40101);
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.offer-image {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.offer-price {
  font-size: 1.6rem;
  margin: 10px 0;
}

.price-highlight {
  font-size: 1.8rem;
  font-weight: bold;
}

.order-button {
  background-color: var(--primary-color, #b40101);
  padding: 20px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin: 30px auto;
}

.shipping-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #28a745;
  margin-top: 10px;
}

.shipping-info i {
  font-size: 1.5rem;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.payment-icon {
  width: 35px;
}

.final-price {
  font-size: 1.4rem;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: gray;
}

/* Responsividade */
@media (max-width: 768px) {
  .offers-container {
    flex-direction: column;
    align-items: center;
  }

  .offer {
    width: 100%;
    max-width: 100%;
  }
}

/*selo style */

.selo-garantia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  padding: 20px;
  background-color: white;
}

.selo-garantia img {
  margin-top: 0;
  max-width: 150px;
  width: 100%;
}

.selo-garantia .selotext {
  max-width: 600px;
}

.selo-garantia p {
  font-size: 22px;
  margin: 10px 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .selo-garantia {
    flex-direction: column;
    text-align: center;
  }

  .selo-garantia img {
    margin-bottom: 20px;
  }

  .selo-garantia .selotext {
    max-width: 100%;
  }
}

/*FAQ STYLE*/
.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  background-color: white;
}
.faq-container h1 {
  font-size: 66px;
  margin: 100px;
}
.faq-item {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.faq-question {
  cursor: pointer;
  display: block;
  padding: 15px;
  background-color: #f0f0f0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e0e0;
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  border-left: 3px solid #b40101;
  margin-top: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  margin-right: 10px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-item {
    max-width: 100%;
  }

  .faq-question,
  .faq-answer {
    font-size: 18px;
    padding: 10px;
  }
}
/*footer*/
/* Privacy Section Styling */
.privacy-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.privacy-title {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #000;
}

/* Footer Links */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border-top: 2px solid #b40101;
  flex-wrap: wrap;
  text-align: center;
}

.footer p {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  display: flex;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  color: black;
}

.footer-email {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  padding-right: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-email {
    margin-top: 15px;
  }
}
