:root {
  --club-black: #0a0a0a;
  --club-dark: #121212;
  --club-yellow: #f0e800;
  --club-yellow-hover: #dcd400;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
}

.main-contact-wrapper {
  min-height: 100vh;
  background: var(--bg-light);
}

/* RESET E REGRAS GERAIS PARA A PÁGINA */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

.main-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SEÇÃO DO CONTEÚDO PRINCIPAL */
.contact-content-section {
  margin-top: 0;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

/* COLUNA ESQUERDA - SIDEBAR */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-group-card, .schedule-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
}

.sidebar-header {
  margin-bottom: 30px;
}

.sidebar-header h3 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}

.sidebar-header .icon-left {
  color: var(--club-yellow);
  background: var(--club-black);
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1rem;
}

.decor-line {
  width: 40px;
  height: 4px;
  background: var(--club-yellow);
  border-radius: 2px;
}

/* ITENS DE INFORMAÇÃO INTERATIVOS */
.interactive-info-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.interactive-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.interactive-info-item:first-of-type {
  padding-top: 0;
}

.icon-shape {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--club-black);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.interactive-info-item:hover .icon-shape {
  background: var(--club-black);
  color: var(--club-yellow);
  transform: scale(1.05);
}

.item-text label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.item-text p, .item-text .contact-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--club-black);
  margin: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.item-text .contact-link:hover {
  color: var(--text-muted);
}

.item-text .contact-note {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
}
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.95rem;
}

.schedule-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-list .hours {
  color: var(--club-black);
  font-weight: 700;
}

.schedule-list .closed {
  color: #ef4444;
}

/* FORMULÁRIO COLUNA DIREITA */
.form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.form-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
}

/* ESTRUTURA DOS INPUTS FLOATING LABELS (ESTILO PREMIUM) */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.inputs-2 > .input-component {
  flex: 1;
}

.input-component {
  position: relative;
}

.input-component input,
.input-component textarea,
.input-component select {
  width: 100%;
  padding: 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--club-black);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-component textarea {
  resize: vertical;
}

/* Floating Label Logic */
.input-component label {
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  background: transparent;
}

.input-component input:focus ~ label,
.input-component input:not(:placeholder-shown) ~ label,
.input-component textarea:focus ~ label,
.input-component textarea:not(:placeholder-shown) ~ label,
.input-component select:focus ~ label,
.input-component select:valid ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--white);
  padding: 2px 8px;
  color: var(--club-black);
  letter-spacing: 0.5px;
}

/* Linha de foco inferior */
.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--club-black);
  transition: all 0.3s ease;
}

.input-component input:focus ~ .input-focus-line,
.input-component textarea:focus ~ .input-focus-line,
.input-component select:focus ~ .input-focus-line {
  width: 100%;
  left: 0;
}

.input-component input:focus,
.input-component textarea:focus,
.input-component select:focus {
  outline: none;
  border-color: var(--club-black);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Estilização Customizada do Select Dropdown */
.select-component select {
  appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* BOTÃO DE SUBMISSÃO DINÂMICO */
.action-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--club-black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 4px 4px 4px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  align-self: flex-start;
}

.btn-icon {
  width: 48px;
  height: 48px;
  background: var(--club-yellow);
  color: var(--club-black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.action-submit-btn:hover {
  background: #222222;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.action-submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* SEÇÃO MAPA + REDES SOCIAIS FOOTER */
.map-social-footer-section {
  padding: 40px 0 100px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.map-container-box {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}

/* REDES SOCIAIS VERTICAL E CORPORATIVO */
.social-connect-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-header {
  margin-bottom: 30px;
}

.social-header span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.social-header h3 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 5px 0 12px 0;
}

.social-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.modern-social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-card-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.social-card-link .s-icon {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-card-link.instagram .s-icon { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.social-card-link.facebook .s-icon { background: #1877f2; }
.social-card-link.youtube .s-icon { background: #ff0000; }

.s-info h4 {
  margin: 0;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--club-black);
}

.s-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-card-link:hover {
  transform: translateX(6px);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.social-card-link.instagram:hover { border-color: #ee2a7b; }
.social-card-link.facebook:hover { border-color: #1877f2; }
.social-card-link.youtube:hover { border-color: #ff0000; }


/* RESPONSIVIDADE TOTAL (MOBILE FRIENDLY) */
@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 28px;
  }
  
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .info-group-card, .schedule-card, .social-connect-box {
    padding: 24px;
  }

  .contact-hero {
    padding: 100px 0 80px 0;
  }

  .action-submit-btn {
    width: 100%;
  }
}

.form-status {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  display: none; /* Oculto por padrão */
  text-align: center;
}

/* Ativado via JS quando há sucesso */
.form-status.success {
  display: block;
  background-color: rgba(240, 232, 0, 0.1);
  color: #111111;
  border: 1px solid #f0e800;
}

/* Ativado via JS quando há erro */
.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Estado visual do botão enquanto envia */
#form-btn:disabled {
  background-color: #64748b;
  cursor: not-allowed;
  opacity: 0.7;
}