@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

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

body {
  font-family: var(--fonte-principal);
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilitários */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espacamento-g);
}

.icon-svg {
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  margin-top: -2px;
}

.text-center { text-align: center; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 14px;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background-color: var(--cor-primaria);
  color: var(--cor-branco);
  box-shadow: 0 4px 12px rgba(128, 28, 35, 0.15);
}

.btn-primary:hover {
  background-color: var(--cor-primaria-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(128, 28, 35, 0.25);
}

.btn-secondary {
  background-color: var(--cor-fundo-suave);
  color: var(--cor-texto);
  border: 1px solid var(--cor-borda);
}

.btn-secondary:hover {
  background-color: var(--cor-fundo);
  border-color: #cbd5e1;
  color: var(--cor-texto);
  transform: translateY(-1px);
}

/* Navbar Premium (Vinho com Logo Branca) */
.navbar {
  height: 70px;
  display: flex;
  align-items: center;
  background-color: var(--cor-primaria);
  color: var(--cor-branco);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--cor-branco);
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.logo img {
  height: 42px;
  filter: brightness(0) invert(1); /* Deixa a logo colorida totalmente branca */
  transition: opacity 0.2s;
  display: block;
}

.logo:hover img {
  opacity: 0.9;
}

/* Banner de Destaque */
.hero-banner {
  background-color: #273244; /* Cinza azulado profundo do banner de referência */
  color: var(--cor-branco);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Círculo decorativo no banner de referência */
.hero-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 40px solid rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.hero-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--cor-branco);
}

.hero-banner h1 span {
  color: #ff4d6d; /* Vermelho claro/rosa destacado */
}

.hero-banner p {
  font-size: 16px;
  color: #94a3b8; /* Cinza suave */
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background-color: var(--cor-fundo-suave);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(128, 28, 35, 0.2);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(128, 28, 35, 0.08);
  color: var(--cor-primaria);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--cor-texto);
}

.feature-card p {
  font-size: 14px;
  color: var(--cor-texto-suave);
  line-height: 1.5;
}

/* Form Page Styles */
.page-header {
  padding: 32px 0;
  margin-bottom: 24px;
}

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--cor-texto);
}

.form-container {
  max-width: 750px;
  margin: 0 auto 60px;
  background-color: var(--cor-fundo-suave);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cor-texto);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cor-borda);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--cor-texto);
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--cor-primaria);
  box-shadow: 0 0 0 3px rgba(128, 28, 35, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Modais e Overlays */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}

.modal {
  background: var(--cor-branco);
  width: 480px;
  max-width: 90%;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cor-borda);
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsivo */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-banner h1 { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .navbar-title { display: none; }
  .form-container { padding: 24px; }
}

