/*COISA NOVA SITE*/

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
.gradient-bg {
  background: linear-gradient(135deg, #4299e1 0%, #48bb78 50%, #ecc94b 100%);
}
.tech-icon {
  transition: all 0.3s ease;
}
.tech-icon:hover {
  transform: translateY(-5px);
}
.school-mockup {
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
}
.school-mockup:hover {
  transform: translateY(-5px);
}
.testimonial-card {
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.text-blue-600 {
  color: #42afe1 !important;
}
/* Efeito de brilho animado nos botões principais */
.btn-glow {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, #4fd6ff 0%, #48bb78 50%, #ecc94b 100%);
  opacity: 0.18;
  filter: blur(18px);
  z-index: 0;
  transition: opacity 0.3s;
}
.btn-glow:hover::before {
  opacity: 0.32;
}
/* Animação de entrada nos cards */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
/* Parallax hero */
.parallax {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(.4,0,.2,1);
}
/* Unificar efeito de hover nos cards */
.feature-card {
  transition: box-shadow 0.25s, transform 0.18s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(80,120,200,0.13), 0 2px 8px rgba(80,120,200,0.07);
  transform: translateY(-4px) scale(1.025);
}
/* Dark mode custom para Tailwind utility classes */
[data-theme="dark"] body {
  background: #1a1a1a !important;
  color: #f3f3f3af !important;
}
[data-theme="dark"] .bg-white,
[data-theme="dark"] .bg-gray-50,
[data-theme="dark"] .bg-gray-100 {
  background: #23272fb2 !important; /*#394150*/
}
[data-theme="dark"] .text-gray-600,
[data-theme="dark"] .text-gray-500,
[data-theme="dark"] .text-gray-700 {
  color: #b6b6b6 !important; /*#67a10b*/
}
[data-theme="dark"] .text-gray-800,
[data-theme="dark"] .text-gray-900 {
  color: #fdff98 !important;
}
[data-theme="dark"] .border-gray-300 {
  border-color: #444 !important;
}
[data-theme="dark"] nav {
  background: #394150d5 !important;
}


@media (max-width: 1200px) { /*768*/
  header {
      padding: 50px 10px;
  }
  header p {
      font-size: 0.75em;
      margin-bottom: 50px;
  }
  header img {
      max-width: 72.5%;
  }
  nav {
      flex-wrap: wrap;
  }
  .nav-links {
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
  }
  nav a {
      font-size: 0.9em;
  }
  img {
      max-width: 100%;
  }
}


.separator {
  height: 15px;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.separator-orangeMenu {
  background-color: #FF6F00;
  margin: 0;
  margin-bottom: 1px;
}
.separator-yellowFooter {
  background-color: #FFCC33;
  margin: 0 0 0 0;
}
.separator-yellow {
  background-color: rgba(255, 230, 0, 0.8);
  margin: 0;
  margin-bottom: 1px;
  margin-top: 0px;
  height: 45px;
  width: 100%
}


  /*galeria*/
  /*deixar maior parte no html*/
      /*creditos matheus laidler*/

.container {
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.containerWindows { /*galeria com background apenas para foto vertical*/
  padding: 0px;
  border-radius: 0px;
  margin-bottom: 25px;
  width: 600px;
  background: #015c4d96;
  color: rgb(248, 226, 24);
}
.container-dark {
  background: #004d40;
  color: white;
}
.container-light {
  background: white;
  color: #333;
}
.container-banner-color {
  background: linear-gradient(135deg, #004d40, #00796b);
  color: white;
}



/* INPUTS MODERNOS */
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="message"], textarea, .form-control, select {
  background: #44444431;
  color: #232a36;
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  padding: 0.5rem 1.1rem 0.5rem 1.1rem;
  font-size: 1.08rem;
  margin-top: 0.3rem;
  box-shadow: 0 1px 4px rgba(80,120,200,0.07);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="message"]:focus, textarea:focus, .form-control:focus, select:focus {
  border-color: var(--primary);
  
}
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] input[type="number"],
[data-theme="dark"] input[type="message"],
[data-theme="dark"] textarea,
[data-theme="dark"] .form-control,
[data-theme="dark"] select {
  background: #23272f;
  color: #f3f3f3;
  border: 1.5px solid #333;
}
[data-theme="dark"] input[type="text"]:focus,
[data-theme="dark"] input[type="email"]:focus,
[data-theme="dark"] input[type="tel"]:focus,
[data-theme="dark"] input[type="number"]:focus,
[data-theme="dark"] input[type="message"]:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] select:focus {
  border-color: #4f8cff;
  background: #232a36;
}

label {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  display: block;
}


/* BOTÃO DE UPLOAD CUSTOMIZADO */
.input-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.input-upload input[type="file"] {
  display: none;
}
.input-upload-label {
  background: var(--input-bg);
  color: var(--text);
  border: 1.5px solid var(--input-border);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  display: inline-block;
}
.input-upload-label:hover {
  background: #e6f0ff;
  border-color: var(--primary);
}
[data-theme="dark"] .input-upload-label {
  background: #23272f;
  color: #f3f3f3;
  border: 1.5px solid #333;
}
[data-theme="dark"] .input-upload-label:hover {
  background: #232a36;
  border-color: #4f8cff;
}
