/* --------------------------------------------- */
/* 1. Reset, Variáveis e Estilos Base            */
/* --------------------------------------------- */
:root {
    --primary-color: #071F3A;
    --light-gray-bg: #fafafa;
    --white-bg: #ffffff;
    --text-dark: #1f2937;
    --button-grey: #16A34A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  min-height: 100vh;
  color: white; 
  background-color: #f0f0f0;
}

/* ============================================= */
/* 2. Estilos da Seção Hero (Topo do Site)       */
/* ============================================= */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  overflow: hidden;
}
  
/* --- IMAGEM DE FUNDO --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* --- IMPORTANTE: ALTERE AS IMAGENS AQUI --- */
  /* Mobile default */
  background-image: linear-gradient(50deg,rgba(50, 50, 50, 0.97) 1%, rgba(97, 94, 94, 0) 90%), url('/Imagens/REDMENSIONADA.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 768px) {
  .hero-background {
    /* Desktop */
    background-image: linear-gradient(50deg,rgba(44, 175, 214, 0.808) 1%, rgba(224, 224, 224, 0) 50%), url('/Imagens/REDMENSIONADA.webp');
  }
}
  
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Container principal */
.hero-section .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 10;
}
  
@media (min-width: 1002px) {
  .hero-section .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 150px;
  }
}
  
/* Conteúdo de texto */
.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
  
.header-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}
  
.logo-img {
  max-height: 800px;
  max-width: 700px;
  display: block;
  margin-top: -30px;
  margin-left: -110px;
}
  
.hero-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
  
.hero-subtitle {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* --- NOVO: Estilos da Grade de Eventos --- */
.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Colunas */
    gap: 15px 10px; /* Gap Vertical 15px, Horizontal 10px */
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1); /* Fundo leve para destaque */
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.event-item i {
    color: #16A34A; /* Verde destaque para os ícones */
    font-size: 18px;
    min-width: 20px; /* Garante alinhamento */
    text-align: center;
}

@media (min-width: 768px) {
    .event-item {
        font-size: 16px;
    }
}
/* ------------------------------------------ */

/* Estilos do formulário */
.form-container {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
  
.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
  
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
  
.form-input, .form-select {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: white;
  color: #333;
  font-size: 14px;
}
  
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(64, 1, 64, 0.2);
}
  
.consent-text {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 10px 0;
}
  
.submit-button {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: none;
  background-color: var(--button-grey);
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
  
.submit-button:hover {
  background-color: #16A34A;
  transform: translateY(-2px);
}
  
.submit-button:active {
  transform: translateY(0);
}
  
.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
  
/* Media Queries (Layout Geral) */
@media (min-width: 768px) and (max-width: 1001px) {
  .form-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo-img {
    max-width: 500px;
    margin-left: 60px;
  }
}
  
@media (max-width: 767px) {
  .form-container {
    padding: 20px;
    margin-top: 30px;
  }
  .logo-img {
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
  .hero-title {
    font-size: 15px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
}
  
@media (min-width: 1002px) {
  .form-container {
    flex: 0 0 380px;
    margin-top: 0;
    align-self: flex-end;
  }
}

/* Biblioteca Intl-Tel-Input (Estilização extra) */
.iti__country-list {
  background-color: #2d3748;
  border: 1px solid #4a5568;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.iti__country-list .iti__country { color: #f7fafc; }
.iti__country-list .iti__dial-code { color: #a0aec0; }
.iti__country-list .iti__country.iti__highlight { background-color: #4a5568; }
.iti__country-list::-webkit-scrollbar { width: 8px; }
.iti__country-list::-webkit-scrollbar-track { background: #2d3748; }
.iti__country-list::-webkit-scrollbar-thumb { background-color: #4a5568; border-radius: 4px; }
