* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.hero {
  background: linear-gradient(140deg, #e11d48 0%, #1d3ae1 100%);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  max-height: auto;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 900;
}

.hero p {
  font-size: 1.15rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: #ffffff; /* cor principal */
  color: #e11d47; /* cor do texto */
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  z-index: 1;
}

/* Brilho que segue o cursor */
.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: translate(-100%, -100%);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

/* Efeito ao passar o mouse */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgb(255, 255, 255);
  background-color: #ffffff; /* leve mudança de cor para feedback visual */
  color: #1d3ae1;
}

/* Efeito quando o botão é clicado */
.btn:active {
  transform: translateY(-2px); /* abaixa um pouco ao clicar */
  box-shadow: 0 4px 15px rgb(255, 255, 255); /* sombra reduzida */
}

/* Logo Section */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 0rem;
  flex-wrap: wrap;
}

.logocna {
  max-height: 10rem;
  height: auto;
  width: auto;
  max-width: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo {
  max-height: 5rem;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* Para telas menores que 768px (celulares) */
@media (max-width: 768px) {
  .logo {
    max-height: 2.2rem; /* Reduz o tamanho */
    height: auto;
    width: auto;
  }
  .logo-section {
    gap: 1rem; /* Menos espaço entre as logos */
    flex-wrap: wrap; /* Permite quebrar linha se precisar */
  }
}

.logobooks {
  max-height: 15rem;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-top: 0rem;
  flex-wrap: wrap;
}

/* Cards Section */
.section {
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
}

.card-grid {
  display: grid;
  text-align: center;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: linear-gradient(140deg, #1d3ae1 0%, #e11d48 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.card p {
  color: #ffffff;
}

.icon-mickey {
  width: 1em; /* mesmo tamanho do texto */
  height: 1em; /* proporcional */
  filter: brightness(0) invert(1); /* deixa branco */
  vertical-align: middle; /* alinha ao lado do texto */
  margin-right: 3px; /* dá um espacinho do texto */
}

/* Diferenciais */
.bg-gray-100 {
  background-color: #f3f4f6;
}

/* Depoimentos */
.testimonial-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #e11d48;
}

/* Oferta */
.offer {
  background: linear-gradient(140deg, #e11d48 0%, #1d3ae1 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.offer h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.offer p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background-color: white;
  color: #e11d48;
}

/* Formulário */
.form-section {
  padding: 4rem 1rem;
}

.form-container {
  max-width: 32rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23374151'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #1d3ae1;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.age-badge {
  display: inline-block;
  background-color: #fef2f2;
  color: #e11d48;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}
