:root {
  --cor-detalhes-h1: #8e0356;
  --cor-texto: #000;
  --cor-fundo: #eff0f2;
  --cor-detalhes: #a3045c;
  --cor-cta: #28a745;
  --font-principal: 'Inter', sans-serif;
}
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #eff0f2;
    color: #000;
  }
  .alert{
    padding: 1%;
    text-align: center;
    background-color: rgb(204, 157, 55);
    color: white;
  }
  .header, .section, .section-x {
    max-width: 960px;
    margin: auto;
  }
  .section-x{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .intro{
    background-image: url('./agenda-decolada.png');
    background-size: cover;
    background-position: center center;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .espaço{
    height: 80%;
  }
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .img{
    width: 50%;
  }
  
  h1 {
    color: #8e0356;
    font-size: 28px;
    margin: 20px 0 10px;
  }
  
  h2 {
    color: #a3045c;
    font-size: 20px;
  }
  
  h3 {
    font-weight: 600;
  }

  
  .cta-button {
    display: inline-block;
    background-color: #28a745;
    margin-bottom: 20px;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    width: 60%;
  }
  .button-container {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .section.dark {
    background-color: #d8d9dc;
    color: white;
    padding: 5%;
  }
  .section-caixa{
    background-color: #8e0356;
    border-radius: 35px;
  }
  
  .section.pink {
    background-color: #fbe4ef;
  }
  
  .section.light {
    background-color: #ffffff;
    text-align: center;
  }
  
  ul {
    list-style: none;
    padding-left: 0;
  }
  
  ul li {
    margin: 10px 0;
  }
  
  .pilares li {
    font-weight: bold;
  }
  
  .testimonials, .author {
    text-align: center;
  }
  
  .footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
  }
  
  .footer .links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: underline;
  }
  
  .whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
  }


  .box-point{
    background-color: white;
    padding: 5%;
    border-radius: 25px;
    font-size: 1.2rem;
    box-shadow: 2px 2px 8px black;
  }
  
.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 0;
}

.carousel::-webkit-scrollbar {
    height: 6px;
}

.carousel::-webkit-scrollbar-thumb {
    background: var(--cor-detalhes);
    border-radius: 10px;
}

.carousel::-webkit-scrollbar-track {
    background: var(--cor-fundo);
}

.carousel-item {
    flex: 0 0 60%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--cor-fundo);
  border: 1px solid var(--cor-detalhes);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-item:hover {
  background: #f5f5f5;
}

.faq-item h2 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
  color: var(--cor-detalhes-h1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h2::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--cor-detalhes);
  transition: transform 0.3s ease;
}

.faq-item.active h2::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-item p {
  font-size: 1rem;
  margin-top: 10px;
  display: none;
  color: var(--cor-texto);
}

.faq-item.active p {
  display: block;
}
@media (max-width: 675px){
  h1 {
    font-size: 20px;
  }
  
  h2 {
    font-size: 15px;
  }
}