/* CSS específico para a página de Contato (contato.html) */

:root {
  --contact-blue-main: #2685be;
  --contact-blue-gradient-1: #081b4b;
  --contact-blue-gradient-2: #0d2f75;
  --contact-blue-gradient-3: #114ea3;
  --contact-bg-light: #f8fbff;
  --contact-text-dark: #1e293b;
  --contact-text-light: #f1f5f9;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header.scrolled {
  background: linear-gradient(90deg, var(--contact-blue-gradient-1), var(--contact-blue-gradient-2));
}

.cta-contato {
  background: #ffffff;
  color: var(--contact-blue-main);
  border-color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
}

.header.scrolled .cta-contato {
  background: #ffffff;
  color: var(--contact-blue-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.contato-hero {
  position: relative;
  padding: 160px 0 140px;
  background: linear-gradient(135deg, var(--contact-blue-gradient-1) 0%, var(--contact-blue-gradient-2) 50%, var(--contact-blue-gradient-3) 100%);
  color: white;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.contato-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

.contato-badge {
  display: inline-block;
  background: rgba(38, 133, 190, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(38, 133, 190, 0.4);
  color: #8ed1fc;
}

.contato-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.contato-hero h1 span {
  color: #8ed1fc;
}

.contato-hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   FORM SECTION (premium contact wrapper)
   ========================================================================== */
.contato-section {
  background: var(--contact-bg-light);
  padding: 80px 0 140px;
  position: relative;
}

/* Overriding some contact-premium defaults to make it pop inside this page */
.contato-section .contact-split-card {
  box-shadow: 0 30px 60px rgba(8, 27, 75, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contato-section .contact-left {
  background: linear-gradient(135deg, var(--contact-blue-gradient-1) 0%, var(--contact-blue-gradient-2) 100%);
}

.contato-section .contact-badge {
  background: rgba(38, 133, 190, 0.25);
  border: 1px solid rgba(38, 133, 190, 0.3);
  color: #8ed1fc;
}

.contato-section .contact-highlight {
  color: #8ed1fc;
}

/* Micro-animations and premium glows */
.contato-section .method-item {
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contato-section .method-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(38, 133, 190, 0.4);
  transform: translateX(6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contato-section .method-icon {
  background: rgba(38, 133, 190, 0.2);
  color: #8ed1fc;
  transition: all 0.3s ease;
}

.contato-section .method-item:hover .method-icon {
  background: #2685be;
  color: white;
  transform: scale(1.1);
}

.contato-section .contact-highlight-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contato-section .highlight-icon {
  background: #2685be;
  color: white;
}

.contato-section .btn-submit-premium {
  background: var(--contact-blue-main);
  box-shadow: 0 8px 20px rgba(38, 133, 190, 0.3);
}

.contato-section .btn-submit-premium:hover {
  background: #2076ab;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(38, 133, 190, 0.4);
}

.shape-fill-light {
  fill: var(--contact-bg-light);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
  .contato-hero {
    padding: 140px 0 100px;
  }
}
