
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: black;
  overflow-x: hidden;
}


.topo-gradiente {
  background: linear-gradient(135deg, #002333, #3825c6);
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.logo img {
  height: 80px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-btn:hover {
  color: #00c25e;
}
.nav-links a.nav-btn {
  text-decoration: none;     
  color: white;              
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  font-weight: 500;
}

.nav-links a.nav-btn:hover {
  color: #00c25e;            
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.btn-white {
  background: white;
  color: #5C00FF;
  border: 2px solid white;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-white:hover {
  background: transparent;
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15rem;
  padding: 4rem 3rem;
}

.hero-text {
  max-width: 600px;
  color: white;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text p {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
}



.search-bar {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 40px;
  padding: 1rem;
  margin-top: 2rem;
  max-width: 500px;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  font-size: 1.1rem;
  outline: none;
}

.search-bar input::placeholder {
  color: white;
}

.search-bar button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


.card-sphere {
  perspective: 1000px;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sphere {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateSphere 20s linear infinite;
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 240px;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.card h3 {
  font-size: 1rem;
}

.card .time {
  font-size: 0.85rem;
  color: #777;
}

.card .question {
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.answer-btn {
  background-color: #00c25e;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}


.card:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(200px); }
.card:nth-child(2) { transform: translate(-50%, -50%) rotateY(60deg) translateZ(200px); }
.card:nth-child(3) { transform: translate(-50%, -50%) rotateY(120deg) translateZ(200px); }
.card:nth-child(4) { transform: translate(-50%, -50%) rotateY(180deg) translateZ(200px); }
.card:nth-child(5) { transform: translate(-50%, -50%) rotateY(240deg) translateZ(200px); }
.card:nth-child(6) { transform: translate(-50%, -50%) rotateY(300deg) translateZ(200px); }

@keyframes rotateSphere {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}


.convite-plurall {
  text-align: center;
  padding: 5rem 2rem;
  background-color: white;
  color: #1A1A1A;
}

.convite-plurall h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}


.plurall-btn {
  background-color: #24005A;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;    
  display: inline-block;    
}

.plurall-btn:hover {
  background-color: #3c0090;
}

.bloco-escola {
  background-color: #fff;
  color: #111;
  border-radius: 30px;
  margin: 4rem 2rem;
  padding: 3rem;
}

.escola-conteudo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.escola-texto {
  flex: 1;
  max-width: 500px;
}

.escola-texto h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: #111;
}

.escola-texto p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.escola-imagem {
  position: relative;
  flex: 1;
  max-width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.escola-imagem img {
  width: 100%;
  border-radius: 40px 0 40px 0;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.chat-balao {
  position: absolute;
  display: flex;
  gap: 0.8rem;
  background-color: #d6c8ff;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  max-width: 320px;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.15);
  font-size: 0.95rem;
  color: #3b2370;
  z-index: 1;
}

.chat-balao img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.balao-texto p {
  margin: 0;
  font-weight: 600;
}

.balao-texto span {
  font-size: 0.8rem;
  color: #8a79c7;
  margin-top: 0.3rem;
  display: block;
}


.chat1 { top: -20%; left: -25%; }
.chat2 { bottom: 53%; left: -25%; }


@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 4rem; text-align: center; }
  .hero-text { text-align: center; }
  .card-sphere { margin-top: 3rem; }
  .escola-conteudo { flex-direction: column; text-align: center; }
  .escola-imagem { max-width: 90%; margin-top: 2rem; position: relative; }
  .chat-balao { position: static; margin: 1rem auto; transform: none; }
}


.footer {
  background-color: #f9f9f9;
  padding: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer-section h3,
.footer-section h4 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.footer-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
}

/* Estilo dos links do footer */
.footer-section ul li a {
  text-decoration: none;
  color: #000; /* deixa preto (normal, não azul) */
  transition: 0.3s ease;
}

/* Quando passar o mouse */
.footer-section ul li a:hover {
  color: #000000; /* roxo do seu site */
  text-decoration: underline;
}


.chamada-matricula {
  background: linear-gradient(135deg, #002333, #3825c6);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.chamada-conteudo {
  max-width: 800px;
  margin: 0 auto;
}

.chamada-conteudo h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.chamada-conteudo p {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

a.btn-matricula {
  background-color: #00c25e;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; 
  display: inline-block; 
}

a.btn-matricula:hover {
  background-color: #2be685;
  text-decoration: none !important;
}

.twitter-icon {
  width: 24px;
  height: auto;
}


.secao-plurall {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.texto-plurall {
  flex: 1;
  min-width: 300px;
}

.texto-plurall h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
}

.slide-card-container {
  flex: 2;
  min-width: 460px;
  position: relative;
  overflow: hidden;
}

.slide-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.slide-card {
  background-color: #d6c8ff;
  border-radius: 30px;
  padding: 2rem;
  min-width: 600px;
}

.slide-setas {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.seta {
  background-color: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
}

.slide-card-conteudo {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.slide-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-texto {
  flex: 1;
}

.slide-numero {
  display: inline-block;
  background: white;
  color: #24005A;
  font-weight: bold;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.slide-texto h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #24005A;
  margin-bottom: 0.5rem;
}

.slide-texto p {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.5;
}

.slide-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.formato1 img {
  border-radius: 50% 50% 70% 30% / 60% 40% 60% 40%;
}

.formato2 img {
  clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
}

.formato3 img {
  clip-path: polygon(50% 0, 86% 9%, 100% 35%, 100% 71%, 90% 90%, 67% 100%, 27% 89%, 2% 69%, 0% 35%, 18% 21%);
}

.formato4 img {
  clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 75%, 80% 100%, 20% 100%, 0 77%, 0 21%);
}



.resultados-busca-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.resultados-busca-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #3825c6;
}

.termo {
    color: #6c63ff;
}

.cards-busca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-busca {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-busca:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-busca-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-busca-header i {
    color: #6c63ff;
    font-size: 22px;
}

.card-busca-header h3 {
    font-size: 20px;
    margin: 0;
}

.card-busca p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.btn-responder {
    display: inline-block;
    text-decoration: none;
    background: #6c63ff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-responder:hover {
    background: #3825c6;
}

.nenhum-resultado,
.nenhuma-busca {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-top: 40px;
}
