/* --------------------------------------------- */
/* 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 DA HERO (Corrigido) --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* 1. CAMINHO: Note que está 'img/' (pasta nova) e não '/Imagens/'.
     2. TRANSPARÊNCIA: Baixei para 0.60 e 0.80. Assim a foto aparece.
  */
  background-image: 
    linear-gradient(180deg, rgba(45, 8, 53, 0.60) 0%, rgba(15, 2, 20, 0.80) 100%), 
    url('img/back\ teste.jpeg'); /* <--- VERIFIQUE O NOME DO ARQUIVO AQUI */
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 768px) {
  .hero-background {
    /* Versão Desktop */
    background-image: 
      linear-gradient(to right, rgba(45, 8, 53, 0.85) 0%, rgba(45, 8, 53, 0.60) 50%, rgba(15, 2, 20, 0.50) 100%), 
      url('img/back\ teste.jpeg'); /* <--- VERIFIQUE O NOME DO ARQUIVO AQUI TAMBÉM */
  }
}
  
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Mude a cor para transparente ou use display: none */
  background-color: transparent; 
  display: none; /* ADICIONE ISSO PARA SUMIR COM A CAMADA PRETA EXTRA */
  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: 120px;
  }
}
  
/* 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: 700px;
  max-width: 500px;
  display: block;
  margin-top: -30px;
  margin-left: -70px;
}
  
.hero-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.;
  margin-bottom: 15px;
  text-transform: uppercase; /* Garante que fique em caixa alta conforme pedido */
  text-align: left;
}
  
.hero-subtitle {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: justify;
}

/* --- Grade de Eventos (Atualizado para Horizontal) --- */
.event-details-grid {
    display: flex;             /* Alinha os itens lado a lado */
    flex-wrap: wrap;           /* Permite quebrar linha se a tela for muito pequena */
    align-items: center;       /* Centraliza verticalmente */
    justify-content: center;   /* Centraliza horizontalmente */
    gap: 20px;                 /* Espaço entre cada item */

    margin-top: 25px;
    padding: 10px 30px;        /* Padding maior nas laterais */
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50px;       /* Borda bem redonda (formato pílula) */
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    
    width: fit-content;        /* A caixa ocupa apenas o espaço necessário */
    max-width: 100%;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;       /* Impede que o texto "quebre" */
}

.event-item i {
    color: #D69F45;
    font-size: 20px;
}

/* Ajuste para telas menores (Celular) */
@media (max-width: 767px) {
    .event-details-grid {
        flex-direction: column; /* Empilha novamente no celular para não quebrar o layout */
        border-radius: 20px;
        width: 100%;
        gap: 15px;
    }
}

/* 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: 40px;
  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: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
  
.submit-button:hover {
  background-color: #14803d;
  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: 20px; /* Leve ajuste para mobile */
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .event-details-grid {
      max-width: 100%;
  }
}
  
@media (min-width: 1002px) {
  .form-container {
    flex: 0 0 380px;
    margin-top: 0;
    align-self: center;
  }
}

/* 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; }

/* ============================================= */
/* 3. Seção de Preços / Planos                   */
/* ============================================= */
.pricing-section {
    padding: 60px 20px;
    /* Fundo Roxo Escuro/Violeta contínuo */
    background-color: #1a0520; 
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 100%, rgba(255, 255, 255, 0.98) 100%);
    color: rgb(0, 0, 0);
}

.pricing-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Estrutura do Card --- */
.pricing-card {
    background-color: #121212; /* Fundo preto/cinza do card igual referência */
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Destaque (Borda inferior colorida no card) */
.pricing-card.standard { border-bottom: 4px solid #f5f5f5; }
.pricing-card.vip { border-bottom: 4px solid #ffffff; }

/* --- Cabeçalho do Card --- */
.card-header {
    padding: 20px;
    text-align: center;
    color: #121212; /* Texto escuro no cabeçalho para contraste */
    font-weight: 800;
}

.standard .card-header {
    background-color: #E1B363; /* Rosa avermelhado */
}

.vip .card-header {
    background-color: #E1B363; /* Ciano vibrante */
}

.card-header h3 {
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
}

.card-header .lote {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.8;
}

/* --- Corpo do Card --- */
.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list strong {
    color: #E1B363;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.benefit-list .detail {
    font-size: 13px;
    color: #a0a0a0;
}

/* --- Preço e Botão --- */
.price-block {
    text-align: center;
    margin-top: auto;
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.lote-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: #E1B363; /* Preço em destaque */
}
.standard .price-value { color: #E1B363; } /* Ajuste cor do preço */

.btn-price {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background-color: #16A34A; /* Verde Limão (Referência) */
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-price:hover {
    background-color: #16A34A;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.4);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================= */
/* 4. Seção Quem Apresenta e Organiza            */
/* ============================================= */
.presenter-section {
    background-color: #ffffff; /* Fundo Branco */
    color: #071F3A; 
    padding: 80px 20px;
}

.presenter-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Estrutura dos Blocos (Flexbox) --- */
.presenter-block, .organizer-block {
    display: flex;
    align-items: flex-start; /* Alinha ao topo */
    gap: 50px; /* Espaço entre Imagem e Texto */
    margin-bottom: 60px;
}

/* Coluna da Esquerda (Imagem e Botões) */
.left-col {
    flex: 0 0 280px; /* Largura fixa para a coluna da esquerda */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Imagens */
.image-wrapper {
    margin-bottom: 20px;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%; /* Redondo para o perfil */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.profile-img.logo-style {
    border-radius: 0; /* Quadrado para a logo */
    object-fit: contain;
    width: 220px;
    height: auto;
    box-shadow: none;
}

/* Botões de Redes Sociais */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.social-btn {
    background-color: #071F3A; /* Azul Escuro */
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    background-color: #0f345e;
    transform: translateY(-2px);
    color: #fff;
}

/* Coluna da Direita (Textos) */
.right-col {
    flex: 1; /* Ocupa o restante do espaço */
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: #071F3A;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.profile-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Lista de Bullet Points */
.profile-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colunas de bullets */
    gap: 10px 20px;
}

.profile-list li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.profile-list li::before {
    content: "•";
    color: #071F3A;
    font-weight: bold;
    margin-right: 8px;
}

/* Divisor entre seções */
.section-divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 60px 0;
}

/* Botão CTA Final */
.cta-container {
    text-align: center;
    margin-top: 50px;
}

.cta-large {
    display: inline-block;
    width: auto;
    min-width: 300px;
    background-color: #16A34A; /* Verde */
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
}

.cta-large:hover {
    background-color: #14803d;
}

/* --- Responsividade (Mobile) --- */
@media (max-width: 768px) {
    .presenter-block, .organizer-block {
        flex-direction: column; /* Um embaixo do outro */
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .left-col {
        flex: auto;
        width: 100%;
        max-width: 300px;
    }

    .right-col {
        width: 100%;
    }

    .profile-list {
        grid-template-columns: 1fr; /* 1 coluna de bullets no mobile */
        text-align: left;
    }

    .profile-text {
        text-align: justify; /* Texto centralizado no mobile fica melhor visualmente */
    }
}

/* ============================================= */
/* 5. Rodapé (Footer)                            */
/* ============================================= */
footer {
    background-color: #1C0F1F; /* Azul Escuro da Marca */
    color: #e5e7eb; /* Cinza claro para o texto */
    text-align: center;
    padding: 5px 5px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
    margin: 2px 0;
    line-height: 1.5;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
