﻿/* ── Paleta Resolve ── */
:root {
  --preto:       #0D0D0D;
  --azul:        #041B3A;
  --ouro:        #C6A86A;
  --ouro-escuro: #A8874C;
  --ouro-claro:  #D8BF87;
  --branco:      #F5F5F5;
  --cinza:       #8A8A8A;
  --borda:       rgba(198, 168, 106, 0.2);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Marcellus', Georgia, serif;
  background: var(--preto);
  color: var(--branco);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, .btn, .nav a, .section-label {
  font-family: 'Marcellus', Georgia, serif;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--borda);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  position: relative;
}

.brand-placeholder { width: 68px; height: 1px; }

.nav { display: flex; align-items: center; gap: 2rem; }

.nav a {
  color: var(--branco);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav a:hover { color: var(--ouro); }

.nav-cta {
  border: 1px solid var(--ouro);
  color: var(--ouro) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--ouro);
  color: var(--preto) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ouro);
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--preto);
  overflow: hidden;
  border-bottom: 1px solid var(--borda);
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 5.5rem 2rem 2rem;
  margin: 0;
}

.hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 693px;
  margin: 0 auto;
}

.hero-form {
  position: fixed;
  top: 50%;
  right: max(1.5rem, calc((100vw - min(1320px, 96vw)) / 2 + 1rem));
  transform: translate(10cm, -50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1.2rem;
  border: 1px solid var(--borda);
  border-radius: 8px;
  background: rgba(4, 27, 58, 0.95);
  backdrop-filter: blur(8px);
  width: 304px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
}

.hero-form-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ouro);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-form-title-sub {
  color: var(--branco);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-picture {
  display: block;
  width: 100%;
  margin: 0;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 693px;
  height: auto;
  margin: 0;
  object-fit: contain;
}

/* ── Botões ── */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--ouro);
  color: var(--preto);
  border-color: var(--ouro);
}

.btn-primary:hover {
  background: var(--ouro-claro);
  border-color: var(--ouro-claro);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(245, 245, 245, 0.4);
}

.btn-outline:hover {
  border-color: var(--ouro);
  color: var(--ouro);
}

.btn-full { width: 100%; text-align: center; }

/* ── Seções ── */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--borda);
}

.section-dark {
  background: var(--preto);
}

.section-dark .section-header {
  margin-bottom: 1.5rem;
}

.section-dark .section-header h2,
.services-title,
.contact-info h2.contact-title {
  margin-bottom: 0.25rem;
  line-height: 1.1;
  color: var(--ouro);
}

.section-dark .section-header p {
  line-height: 1.2;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.6rem;
}

.section-header { margin-bottom: 3rem; max-width: 560px; }

.section-header h2,
.about-text h2,
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.8rem;
}

.about-text h2.about-title {
  color: var(--ouro);
}

.section-header p { color: rgba(245, 245, 245, 0.7); }

/* ── Sobre ── */
.section-about { background: rgba(4, 27, 58, 0.45); }
.section-about { padding-top: calc(5rem + 2cm); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Texto alinhado à esquerda */
.about-text p,
.section-header p,
.stat-card span,
.service-card p,
.contact-info p {
  text-align: left;
}

.about-text p {
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats { display: flex; flex-direction: column; gap: 1rem; }

.stat-card {
  border: 1px solid var(--borda);
  border-left: 3px solid var(--ouro);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
  background: rgba(4, 27, 58, 0.4);
  line-height: 1.15;
}

.stat-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ouro);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.stat-card span {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.15;
}

/* ── Serviços ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--borda);
  border-radius: 6px;
  padding: 1.8rem 1.5rem;
  background: rgba(13, 13, 13, 0.4);
  transition: border-color 0.2s, transform 0.2s;
  line-height: 1.1;
}

.service-card:hover {
  border-color: var(--ouro);
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.1;
}

/* ── Valores ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.value-item {
  padding: 1.5rem;
  border-top: 2px solid var(--ouro);
}

.value-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ouro);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.65);
}

/* ── Contato ── */
.section-contact { background: var(--preto); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info > p {
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.contact-details {
  margin-top: 1rem;
  line-height: 1.1;
}

.contact-details p {
  color: var(--branco);
  margin-bottom: 0.4rem;
  text-align: left;
  line-height: 1.1;
}

.contact-details strong {
  color: var(--ouro);
  font-weight: 700;
}

.contact-details a {
  color: var(--branco);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--ouro);
}

.contact-list { list-style: none; }

.contact-list li {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 0.6rem;
}

.contact-list strong { color: var(--ouro); font-weight: 500; }

.contact-image-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-image {
  display: block;
  width: 91%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--borda);
  object-fit: cover;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ouro);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(13, 13, 13, 0.5);
  border: 1px solid var(--borda);
  border-radius: 4px;
  color: var(--branco);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ouro) 50%), linear-gradient(135deg, var(--ouro) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.form-group select option {
  background: var(--azul);
  color: var(--branco);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--ouro); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245, 245, 245, 0.3); }

.form-message {
  font-size: 0.88rem;
  color: var(--ouro-claro);
  text-align: center;
  min-height: 1.2rem;
}

/* ── Rodapé ── */
.footer {
  padding: 3rem 0;
  text-align: center;
}

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ouro);
  margin-bottom: 0.8rem;
}

.footer-copy { font-size: 0.78rem; color: var(--cinza); }

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    padding: 6rem 4% 0;
  }

  .hero-banner,
  .hero-image {
    max-width: 100%;
  }

  .hero-form {
    position: static;
    transform: none;
    width: min(400px, 92%);
    margin: 1.5rem auto 2rem;
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .brand-placeholder { width: 0; }

  .nav-toggle { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--preto);
    border-bottom: 1px solid var(--borda);
    padding: 1rem 4%;
  }

  .nav.open { display: flex; }

  .nav a {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--borda);
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-about {
    padding-top: 3rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 5.5rem 4% 0;
  }

  .hero-form {
    width: 92%;
    margin: 1.25rem auto 1.5rem;
    padding: 1rem;
  }

  .hero-form-title {
    font-size: 1rem;
  }

  .hero-form-title-sub {
    font-size: 0.8rem;
  }

  .contact-image {
    width: 100%;
  }

  .stat-card {
    padding: 1rem 1.1rem;
  }

  .service-card {
    padding: 1.4rem 1.2rem;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-copy {
    font-size: 0.72rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .section-header h2,
  .about-text h2,
  .contact-info h2 {
    font-size: 1.4rem;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }
}
