/********** Template CSS **********/
:root {
    --primary: #b82d15;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.red-underline {
    text-decoration: underline;
    text-decoration-color: red;
}

#promotion {
   
    padding: 20px 0;
    text-align: center;
  }
  

  #promo-text {
    color: yellow;
    padding: 10px 20px;
  }

  #presente-text {
    color: rgb(255, 255, 255);
    padding: 10px 20px;
  }
  
  .bg-danger {
    background-color: red; /* Vermelho forte */
  }

  .red-bg-danger {
    background-color: red;
  }
  
  #btn-conhecer-receitas {
    color: black;
  }
  

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    background: whitesmoke;
    padding: 0;
  }
  
  #why-us h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #000000;
    text-align: center;
    padding-bottom: 40px;
   
  }
  
  .why-us .content {
    padding: 60px 100px 0 100px;
  }
  
  .why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #000000;
    text-align: center;
    
  }
  
  .why-us .content p {
    font-size: 15px;
    color: #000000;
  }
  
  
  .why-us .accordion-list {
    padding: 0 100px 60px 100px;
  }
  
  .why-us .accordion-list ul {
    padding: 0;
    list-style: none;
  }
  
  .why-us .accordion-list li+li {
    margin-top: 15px;
  }
  
  .why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
  }
  
  .why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
    color: #000000;
  }
  
  .why-us .accordion-list span {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
  }
  
  .why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #000000;
  }
  
  .why-us .accordion-list .icon-show {
    display: none;
  }
  
  .why-us .accordion-list a.collapsed {
    color: #000000;
  }
  
  .why-us .accordion-list a.collapsed:hover {
    color: #000000;
  }
  
  .why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .why-us .accordion-list a.collapsed .icon-close {
    display: none;
  }
  
  @media (max-width: 1024px) {
  
    .why-us .content,
    .why-us .accordion-list {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  @media (max-width: 992px) {
    .why-us .content {
      padding-top: 30px;
    }
  
    .why-us .accordion-list {
      padding-bottom: 30px;
    }
  }
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;

    
}

.carousel-caption h1{
 color: #18961e;

}
.carousel-caption h3{
    color: #ffffff;
   
   
   }
   
.bg-yellow {
    background-color: yellow;
    
}
.bg-greem {
    background-color: rgb(255, 81, 0);
    
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
    
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
    text-align: justify;
}

.about {
   text-align: justify;
}

/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    text-align: center;
    color: #999999;
}


.footer .copyright {
    padding: 25px 0;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    text-align: center;
    color: var(--light);
}

.footer .copyright a:hover {
    text-align: center;
    color: var(--primary);
}

#cookieConsent {
    background-color: #EF8328; /* Cor de fundo sólida */
    width: 300px; /* Largura fixa */
    height: 200px; /* Altura fixa */
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    color: white;
    line-height: 1.5; /* Altura da linha */
    padding: 20px; /* Espaçamento interno */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza o elemento */
    z-index: 9999;
    text-align: center; /* Centraliza o texto horizontalmente */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Sombra ao redor do quadrado */
    border-radius: 10px; /* Bordas arredondadas */
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
    font-weight: bold; /* Texto em negrito */
    margin-left: 10px; /* Espaçamento entre o texto e o link */
}
#closeCookieConsent {
    display: inline-block; /* Permite definir largura e altura */
    cursor: pointer;
    background-color: #41a72a; /* Cor de fundo do botão */
    color: white;
    border: none;
    padding: 10px 20px; /* Espaçamento interno */
    border-radius: 5px; /* Borda arredondada */
    font-size: 16px; /* Tamanho da fonte */
    margin-top: 20px; /* Espaçamento acima do botão */
}




/* Reset básico */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: Arial, sans-serif;
background-color: #fff;
color: #333;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}

.section-title {
text-align: center;
color: #000;
margin-bottom: 60px;
font-size: 28px;
line-height: 1.4;
}

.benefits-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
gap: 20px;
}

.benefits-column {
display: flex;
flex-direction: column;
gap: 20px;
flex: 1;
min-width: 250px;
}

.central-image {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
min-width: 200px;
}

.central-image img {
max-width: 100%;
height: auto;
}

.benefit-card {
display: flex;
align-items: flex-start;
gap: 15px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 10px;
background-color: #f9f9f9;
transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon {
flex-shrink: 0;
width: 40px;
height: 40px;
color: orange;
}

.icon-svg {
width: 100%;
height: 100%;
}

.benefit-card p {
margin: 0;
font-size: 16px;
line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
.benefits-wrapper {
flex-direction: column;
align-items: center;
}

.central-image {
margin: 40px 0;
}
}

@media (max-width: 600px) {
.benefit-card {
flex-direction: column;
align-items: flex-start;
}

.icon {
width: 50px;
height: 50px;
}

.section-title {
font-size: 24px;
}
}

/* Seção de Garantia */
.guarantee-section {
background-color: #f9f9f9; /* Cor de fundo clássica */
padding: 60px 20px;
text-align: center;
}

.guarantee-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

.button-wrapper {
margin-bottom: 30px;
}

.btn-experimentar {
display: inline-block;
padding: 15px 30px;
background-color: #6AB627; /* Cor de fundo do botão */
color: #fff; /* Cor do texto */
text-decoration: none;
border-radius: 5px;
font-size: 18px;
transition: background-color 0.3s ease;
animation: pulse 2s infinite;
}

.btn-experimentar:hover {
background-color: #6AB627; /* Cor do botão ao passar o mouse */
}

/* Animação de Pulsação */
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}

.guarantee-heading {
margin: 40px 0 30px;
font-size: 28px;
color: #000;
line-height: 1.4;
}

.guarantee-image-wrapper {
display: flex;
justify-content: center;
align-items: center;
}

.guarantee-image {
max-width: 500px;
width: 100%;
height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
.guarantee-heading {
font-size: 24px;
}

.btn-experimentar {
font-size: 16px;
padding: 12px 25px;
}

.guarantee-image {
max-width: 80%;
}
}

@media (max-width: 480px) {
.guarantee-heading {
font-size: 20px;
}

.btn-experimentar {
font-size: 14px;


}
}

/* Seção de Depoimentos */
.testimonials-section {
background-color: #f9f9f9; 
padding: 60px 20px;
text-align: center;
}

.testimonials-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

/* Título da Seção */
.testimonials-heading {
font-size: 28px;
color: #000;
margin-bottom: 40px;
line-height: 1.4;
}

/* Wrapper dos Depoimentos */
.testimonials-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
justify-items: center;
}

/* Cards de Depoimentos */
.testimonial-card {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: left;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
max-width: 350px;
}

.testimonial-content {
font-size: 16px;
color: #333;
margin-bottom: 20px;
}

.testimonial-meta {
display: flex;
align-items: center;
}

.testimonial-image {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
margin-right: 15px;
}

.testimonial-name {
font-size: 18px;
font-weight: bold;
color: #000;
}

/* Responsividade */
@media (max-width: 768px) {
.testimonials-heading {
font-size: 24px;
}

.testimonial-content {
font-size: 14px;
}

.testimonial-name {
font-size: 16px;
}

.testimonial-image {
width: 50px;
height: 50px;
}
}

@media (max-width: 480px) {
.testimonials-heading {
font-size: 20px;
}

.testimonial-content {
font-size: 13px;
}

.testimonial-name {
font-size: 14px;
}

.testimonial-image {
width: 40px;
height: 40px;
}
}
/* Estilo da Seção Neurocure */
.neurocure-section {
padding: 50px 0;
background-color: #f8f9fa; /* Cor de fundo leve */
}

.neurocure-title {
font-size: 2.5rem; /* Tamanho da fonte do título */
font-weight: bold; /* Negrito */
margin-bottom: 40px; /* Margem inferior */
}

/* Estilo da Seção dos Ingredientes */
.neurocure-ingredients {
padding: 20px 0;
}

.row {
display: flex; /* Usar flexbox para alinhar os cards lado a lado */
flex-wrap: wrap; /* Permite que os itens quebrem linha em telas menores */
justify-content: center; /* Centraliza os itens horizontalmente */
}

.col-33 {
flex: 1; /* Faz as colunas crescerem igualmente */
max-width: 33%; /* Define largura máxima para cada card */
padding: 15px; /* Espaçamento interno */
box-sizing: border-box; /* Inclui padding no cálculo da largura */
}

/* Estilos responsivos para dispositivos móveis */
@media (max-width: 768px) {
.col-33 {
max-width: 50%; /* Cada card ocupa metade da largura em telas médias */
}
}

@media (max-width: 576px) {
.col-33 {
max-width: 100%; /* Cada card ocupa 100% da largura em telas pequenas */
}
}

.ingredient-box {
background-color: #fff; /* Cor de fundo branca para os cards */
border-radius: 8px; /* Bordas arredondadas */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
text-align: center; /* Centraliza o texto dentro do card */
padding: 20px; /* Espaçamento interno dos cards */
}

.ingredient-image img {
max-width: 100%; /* Faz a imagem ocupar toda a largura do card */
height: auto; /* Mantém a proporção da imagem */
}

.ingredient-title {
font-size: 1.5rem; /* Tamanho da fonte do título do ingrediente */
margin: 15px 0; /* Margem superior e inferior */
color: #333; /* Cor do texto */
}

.ingredient-description {
font-size: 1rem; /* Tamanho da fonte da descrição */
color: #666; /* Cor do texto */
line-height: 1.5; /* Espaçamento entre linhas */
}


.bg-gradient {
background: linear-gradient(to right, #4caf50, #81c784); /* Ajuste as cores conforme necessário */
padding: 50px 0; /* Padding opcional para a seção */
color: white; /* Muda a cor do texto para branco, ajuste conforme necessário */
}
.card-custom {
    margin: 15px;
    text-align: center;
    border: 5px solid rgb(116, 116, 116)
}
.btn-custom {
    background-color: #28a745; /* Cor do botão */
    color: white;
}