.header {
  border-radius: 24px;
  background-image: linear-gradient(to right, #7e22ce, #db2777);
  padding: 48px 16px;
  text-align: center;
}

body{
  padding: 8px;
}

body *{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", 
  "Segoe UI Symbol", "Noto Color Emoji";
}

.header__title{
  color: white;
  font-size: 36px;
  font-weight: 700;
}

.header__description{
  color: white;
  font-size: 18px;
  margin: 16px 0px;
}

.header__button{
  color: white;
  font-size: 18px;
  font-weight: 500;
  background-color: #0f172a;
  padding: 8px 16px;
  border-radius: 8px;
  text-align: center;
}

/* quebra de sessão */

.about-us {
  background-color: #f7e2f4; /* lilás claro (equivalente a bg-purple-50) */
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  margin: 16px 0px;
}

.about-us__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-us__img {
  height: 160px;
  width: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.about-us__description {
  font-size: 18px;
  color: #4b5563; /* cinza escuro suave */
  line-height: 1.6;
}

/* quebra de sessão */

.packages {
  padding: 40px 20px;
  background-color: #dccdeb; /* lilás claro */
  border-radius: 16px;
  text-align: center;
}



.packages__title {
  font-size: 24px; /* Aumentei o tamanho da fonte */
  font-weight: bold;
  margin-bottom: 20px; /* Ajuste no espaçamento */
  color: #0d0914; /* Cor mais vibrante para destacar */
  text-transform: uppercase; /* Deixa o texto em maiúsculas para maior impacto */
  letter-spacing: 2px; /* Aumenta o espaçamento entre as letras */
}


.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.package {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  color: #059669; /* verde esmeralda */
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.package button {
  margin-top: 12px;
  padding: 10px;
  width: 100%;
  background-color: #7c3aed; /* roxo */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
}

/* ... Outras partes do CSS permanecem as mesmas ... */

.package__content {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Espaçamento entre os elementos */
  align-items: center; /* Alinha tudo ao centro */
}

.package__image {
  width: 100%;  /* Garante que a imagem ocupe toda a largura do container */
  height: auto;  /* Ajusta a altura automaticamente */
  max-height: 150px;  /* Limita a altura máxima, mas sem cortar */
  object-fit: contain;  /* Ajusta a imagem sem cortar */
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;  /* Impede que a imagem ultrapasse os limites */
}


/* Ajuste para vídeos */
.package__video {
  max-width: 100%;
  max-height: 150px; /* Limita a altura do vídeo */
  border-radius: 12px;
  object-fit: contain; /* Garante que o conteúdo do vídeo se ajuste sem distorção */
  margin-bottom: 12px;
}

/* quando passar o mouse */
.package button:hover {
  background-color: #6d28d9;
  transform: scale(1.05); /* aumenta um pouquinho */
}

/* animação contínua para chamar atenção */
.package button {
  animation: pulse 2s infinite;
}

/* criando a animação pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
.package__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Estilo do botão "Ver mais vídeos" */
.see-more-btn {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #9333ea;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s, transform 0.3s;
}

.see-more-btn:hover {
  background-color: #7e22ce;
  transform: scale(1.05);
}

/* Container de vídeos extras */
.extra-videos {
  margin-top: 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

/* Estilo dos vídeos extras */
.extra-videos video {
  max-width: 100%;
  max-height: 150px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.global-toggle-btn {
  margin-bottom: 20px;
  padding: 10px 16px;
  background-color: #6b21a8;
  font-size: 15px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.global-toggle-btn:hover {
  background-color: #581c87;
}



/* quebra de sessão */

.additional-services {
  background-color: #f3e9f7;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
}

.additional-services h2 {
  font-size: 28px;
  color: #4b0082;
  margin-bottom: 10px;
}

.additional-services p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 20px;
}

.additional-services__button {
  padding: 12px 24px;
  background-color: #7c3aed;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.additional-services__button:hover {
  background-color: #6d28d9;
}


.additional-services__list ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 600px;
}

.additional-services__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  background-color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.additional-services__list li span {
  flex: 1;
  text-align: left;
}

.service-button {
  padding: 6px 14px;
  background-color: #7c3aed;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-button:hover {
  background-color: #6d28d9;
}



/* quebra de sessão */

.lead-form {
  background-color: #fce7f3; /* cor de fundo pink claro */
  padding: 24px;
  border-radius: 1rem;
  text-align: center;
  margin-top: 40px;
}

.lead-form h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.lead-form p {
  margin-bottom: 16px;
}

.lead-form .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.lead-form .form input {
  padding: 12px;
  border: 1px solid #e5e7eb; /* cor de borda cinza claro */
  border-radius: 8px;
  font-size: 1rem;
}

.lead-form .form button {
  background-color: #ec4899; /* pink-600 */
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.lead-form .form button:hover {
  background-color: #4940a1; /* pink-500 para hover */
}


/* quebra de sessão */

.testimonials {
  background-color: #b09ce0; /* cinza muito claro */
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
}

.testimonials__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.testimonial p {
  font-size: 16px;
  color: #555;
}

.testimonial__author {
  margin-top: 10px;
  font-weight: bold;
  color: #7c3aed; /* roxinho para destaque */
}

.testimonial-form {
  background-color: #f3f4f6; /* Cinza bem claro */
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
}

.testimonial-form__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.testimonial-form__description {
  font-size: 16px;
  margin-bottom: 24px;
  color: #555;
}

.testimonial-form__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-form__form textarea {
  padding: 12px;
  border: 1px solid #ddd; /* Borda leve */
  border-radius: 8px;
  font-size: 16px;
  resize: none; /* Impede redimensionamento */
  width: 100%;
  box-sizing: border-box;
}

.testimonial-form__button {
  background-color: #7c3aed; /* Cor roxa */
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.testimonial-form__button:hover {
  background-color: #6d28d9; /* Tom de roxo mais escuro */
}

/* quebra de sessão */


.partners {
  padding: 40px 20px;
  background-color: #f8f8f8;
  font-family: 'Segoe UI', sans-serif;
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.partners h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: #222;
}

.partners p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #666;
}

.partners-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  align-items: center;
  font-size: 15px;
  transition: transform 0.2s ease;
}

.row:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header {
  background-color: #e0e0e0;
  font-weight: bold;
}

.row a {
  color: #e1306c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.row a:hover {
  text-decoration: underline;
}

.icon {
  width: 18px;
  height: 18px;
  filter: invert(36%) sepia(100%) saturate(495%) hue-rotate(306deg) brightness(98%) contrast(94%);
}

@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .row a {
    justify-content: center;
  }
}


/* quebra de sessão */

.carousel {
  background-color: #f7e2f4; /* Lilás claro */
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
}

.carousel__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;
}

.carousel__container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel__images {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.carousel__button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel__button--prev {
  left: 10px;
  transform: translateY(-50%);
}

.carousel__button--next {
  right: 10px;
  transform: translateY(-50%);
}

.carousel__button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* quebra de sessão */




/* quebra de sessão , footer */

.footer {
  background-color: #d9e2f7; /* cinza claro */
  color: #333; /* texto em cinza escuro */
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer__social-link {
  color: #7c3aed; /* tom de roxo suave */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: #6b21a8; /* tom de roxo mais forte para o hover */
}

