/* =========================
   HERO COM FOTO (HOME)
========================= */

.hero__grid--photo{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero__media{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   FOTO — PURA (SEM CONTORNO / SEM SOMBRA / SEM DEGRADÊ)
========================= */

.photo-frame{
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

/* remove QUALQUER pseudo-elemento */
.photo-frame::before,
.photo-frame::after{
  content: none;
}

.photo-frame img{
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;

  /* zera qualquer efeito visual */
  box-shadow: none;
  filter: none;
  mix-blend-mode: normal;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 900px){
  .hero__grid--photo{
    grid-template-columns: 1fr;
  }

  .hero__media{
    margin-top: 28px;
  }

  .photo-frame img{
    max-width: 300px;
  }
}

/* =========================
   CTA ABAIXO DOS 3 BLOCOS
========================= */

.cta-below{
  margin-top: 24px;
}

.cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-box .btn{
  white-space: nowrap;
}

/* Mobile CTA */
@media (max-width: 900px){
  .cta-box{
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box .btn{
    width: 100%;
  }
}

/* =========================
   CONTATO — LAYOUT PREMIUM (2 colunas + form protagonista)
========================= */

.contact-layout{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 980px){
  .contact-layout{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.contact-side h1{
  margin-bottom: 12px;
}

/* Cards da coluna esquerda */
.contact-card{
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.btn--block{
  width: 100%;
  justify-content: center;
}

/* =========================
   FORM PREMIUM (dark + alinhado)
========================= */

.form-card{
  border-radius: 18px;
  padding: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full{
  grid-column: 1 / -1;
}

@media (max-width: 680px){
  .form-grid{
    grid-template-columns: 1fr;
  }
  .form-actions .btn{
    width: 100%;
  }
}

/* honeypot */
.hp{ display:none; }

/* Campos escuros (remove branco e desalinhamento) */
.form-card label{
  display: block;
  font-size: 13px;
  color: rgba(232,237,246,.88);
  margin-bottom: 6px;
}

.form-card input,
.form-card textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  color: #e8edf6;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-card input::placeholder,
.form-card textarea::placeholder{
  color: rgba(232,237,246,.45);
}

.form-card input:focus,
.form-card textarea:focus{
  border-color: rgba(255,80,80,.60);
  box-shadow: 0 0 0 4px rgba(255,80,80,.14);
  background: rgba(0,0,0,.45);
}

.form-card textarea{
  min-height: 130px;
  resize: vertical;
}

.form-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.form-hint{
  margin-top: 10px;
  font-size: 13px;
  opacity: .72;
}


/* Header CTAs (Menu) */
.header__ctas{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
