/* ==========================================================================
   NATA PORTUGUESE 2.0 - COMPONENTE 11.0: A NATA RESPONDE (CTA CONTACTO)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SEÇÃO E PADRÃO DE FUNDO ESCURO (DOT PATTERN + RADIAL GLOW FIGMA)
   -------------------------------------------------------------------------- */
.contact-cta-section {
  position: relative;
  width: 100%;
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  background-color: var(--color-neutral-900, #151413);
  overflow: hidden;
  height: 100vh;
  max-height: clamp(460px, 49vw, 608px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Padrão visual de bolinhas (Dot Pattern sobre fundo escuro com máscara radial) */
.contact-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(240, 225, 219, 0.12) 2.5px, transparent 2.5px);
  background-size: 32px 32px;
  background-position: center center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 30%, transparent 70%);
}

/* Brilho radial terracota de fundo no centro */
.contact-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: clamp(300px, 80vw, 1080px);
  height: clamp(200px, 40vw, 380px);
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 106, 61, 0.35) 0%, rgba(42, 28, 18, 0.08) 60%, rgba(0, 0, 0, 0) 100%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.contact-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   2. TIPOGRAFIA & ELEMENTOS (FIGMA PIXEL-PERFECT)
   -------------------------------------------------------------------------- */
/* Tag Superior: Inter 600 | 14px | Line 140% | Letter 8% | Terracota 500 (#D96A3D) */
.contact-cta-badge {
  font-family: var(--font-family-body, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracota-500, #D96A3D);
  display: inline-block;
  margin-bottom: 12px;
}

/* Título Principal: Manrope 600 | 36px (Clamp) | Line 120% | Letter 2% | Neutro 100 (#FBFAF8) */
.contact-cta-title {
  font-family: var(--font-family-title-serif, 'Fraunces', serif);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 5%;
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-neutral-100, #FBFAF8);
  margin: 0 0 16px 0;
}

/* Descrição: Inter 400 | 20px (Clamp) | Line 160% | Letter 0% | Neutro 200 (#D9D4C7) */
.contact-cta-description {
  font-family: var(--font-family-body, 'Inter', sans-serif);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--color-neutral-200, #D9D4C7);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.contact-cta-description p {
  margin: 0;
}

.contact-cta-description em,
.contact-cta-description i {
  font-style: italic;
}

/* --------------------------------------------------------------------------
   3. BOTÃO DE AÇÃO PRIMÁRIO
   -------------------------------------------------------------------------- */
.contact-cta-action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--color-terracota-500, #D96A3D);
  color: var(--color-neutral-100, #FBFAF8);
  border-radius: 8px;
  font-family: var(--font-family-body, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0px 4px 12px rgba(217, 106, 61, 0.25);
}

.contact-cta-btn:hover {
  background-color: var(--color-terracota-700, #9C4826);
  color: var(--color-neutral-100, #FBFAF8);
  transform: translateY(-2px);
  box-shadow: 0px 6px 16px rgba(217, 106, 61, 0.35);
}