@import url('https://cdn.jsdelivr.net/gh/intel/clear-sans/stylesheet.css');

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Clear Sans', 'Segoe UI', sans-serif;
   background: #141e2b; /* Novo fundo principal */
  color: #fff;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(8px);
  padding: 20px;
  z-index: 1000;
  transition: background 0.3s;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px; /* ✅ adiciona margem interna à direita */
  box-sizing: border-box;
  width: 100%;
}


/* Logo */
.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Menu Desktop */
nav.desktop-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

nav a.btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav a.btn:hover {
  background: #ffffff;
  color: #111827;
}


/* Botão Hambúrguer */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10001;
  margin-right: 0;
  align-self: center;
}

.hamburger.hide {
  display: none !important;
}


/* Menu lateral (mobile) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #0d1117;
  display: flex;
  flex-direction: column;
  padding: 80px 20px 20px;
  gap: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 10000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10001;
}


/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.menu-overlay.active {
  display: block;
}

.mobile-menu.active {
  right: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  nav.desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* Botões */
.btn {
  background: #f3f4f6;
  color: #111827;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #e5e7eb;
}

.btn.outline {
  background: transparent;
  border: 1px solid #f3f4f6;
  color: #f3f4f6;
}

.btn.outline:hover {
  background: #f3f4f6;
  color: #111827;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
   background: linear-gradient(300deg,#060657,#031f18,#3a0539);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
  padding: 60px 20px 0;
  color: #fff;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 10px 0 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Seções */
section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #3b82f6;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.descricao {
  color: #9ca3af;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Cards */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 30px;
}

.card {
  background: #1b2530; /* Leve contraste com o fundo */
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #3a4a5a; /* Cinza claro para contorno */
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.card p {
  color: #9ca3af;
  margin: 0;
}

/* Quote - diferenciais */
.quote {
  background-color: #1b2530;
   border: 1px solid #3a4a5a;
  border-radius: 12px;
  padding: 30px 20px;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
}

.quote small {
  display: block;
  margin-top: 10px;
  color: #9ca3af;
  font-size: 0.95rem;
}

label{
  text-align:left;
}

/* Contato */
#contato .contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  #contato .contato-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
    input, textarea {
    max-width: 95%;
  }
  .form-group {
     width: 100%;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: auto;
  width: 100%;
  align-items: stretch;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #374151;
  border-radius: 6px;
  font-size: 16px;
  background-color: #111827;
  color: #f9fafb;
  line-height: 1.6;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

form .btn {
  align-self: flex-start;
  padding: 10px 18px;
}

.contato-info {
  background: #1b2530;
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  padding: 20px;
  color: #e5e7eb;
  text-align: left;
}

.contato-info h3 {
  margin-bottom: 20px;
}

.contato-info p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.contato-info hr {
  border: none;
  border-top: 1px solid #374151;
  margin: 20px 0;
}

.contato-info ul li::marker {
  color: #3b82f6; /* azul destaque */
}


/* Rodapé */
footer {
  padding: 30px;
  text-align: center;
  background: #111827;
  color: #ccc;
}
