/* =====================================================
   VARIÁVEIS GLOBAIS (CORES E IDENTIDADE)
===================================================== */
:root {
  --gold: #c8a45d;
  --dark: #1d1d1d;
  --gray: #f5f5f5;
  --text: #333;
  --white: #ffffff;
}

/* =====================================================
   RESET BÁSICO
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   BASE GLOBAL
===================================================== */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* =====================================================
   HEADER / MENU PRINCIPAL
===================================================== */
header {
  position: sticky;
  top: 0;
  background: #1D1D1D;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-height: 70px;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-cta {
  background: linear-gradient(135deg, #c8a45d, #e3c77b);
  color: #0f0f0f;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200,164,93,0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
}

/* =====================================================
   HERO
===================================================== */
#hero {
  background: linear-gradient(180deg, #1d1d1d 0%, #151515 100%);
  color: var(--white);
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #f1e6d2;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.gold-text {
  background: linear-gradient(
    90deg,
    #b8903b 0%,
    #e6c77b 40%,
    #c8a45d 70%,
    #a77c2f 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.subtitle {
  margin: 20px 0;
  font-size: 18px;
}

/* CTA principal */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(200, 164, 93, 0.35);
}

/* Animação de pulso */
.pulse {
  animation: pulse-soft 1.5s infinite;
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200,164,93,0.45);
  }
  70% {
    transform: scale(1.035);
    box-shadow: 0 0 0 18px rgba(200,164,93,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200,164,93,0);
  }
}

.trust {
  margin-top: 20px;
  list-style: none;
}

.trust li {
  margin-bottom: 8px;
}

/* Imagem do hero */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, #c8a45d, #e6c77b, #c8a45d);
}

.floating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;

  padding: 8px 14px;
  border-radius: 20px;

  font-size: 14px;
  font-weight: 600;

  color: var(--dark);

  background: rgba(200, 164, 93, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =====================================================
   SEÇÕES GERAIS
===================================================== */
section {
  padding: 80px 0;
}

/* =====================================================
   ÁREAS DE ATUAÇÃO
===================================================== */
#services {
  background: #faf9f7;
}

#services .container {
  text-align: center;
}

#services h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-subtitle {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
}

.services-footer {
  max-width: 720px;
  margin: 48px auto 32px;
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

.center-btn {
  margin-top: 24px;
}

/* Cards */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c8a45d, #e3c77b);
  padding: 20px 24px;
  border-radius: 16px 16px 0 0;
  color: #ffffff;
}

.service-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;

  background: #faf9f7;
  padding: 18px 20px;
  border-radius: 14px;

  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.service-item i {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f1e6d2;
  color: var(--gold);
  border-radius: 10px;
}

.service-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-item span {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

.services-cta {
  margin-top: 56px;

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: calc(100% - 0px);
  margin-left: auto;
  margin-right: auto;
}

#services .services-cta {
  max-width: 1200px;
}

/* =====================================================
   GRIDS
===================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

/* =====================================================
   EQUIPE – EVOLUÇÃO PREMIUM
===================================================== */

#team {
  background: var(--white);
}

#team h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.team-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.team-card img {
  width: 100%;
  display: block;
}

.overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.85) 65%
  );

  padding: 24px;
  opacity: 0;
  transition: opacity .35s ease;
}

.team-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

.team-role {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  line-height: 1.5;
  color: #e5e5e5;
}

/* =====================================================
   CONTATO / MAPA
===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* =====================================================
   FOOTER
===================================================== */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* =====================================================
   DEPOIMENTOS – CONFIANÇA E AUTORIDADE
===================================================== */

#testimonials {
  background: #faf9f7;
}

#testimonials h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 16px;
}

#testimonials .services-subtitle {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

.testimonial-card i {
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer strong {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-footer span {
  color: var(--gold);
  font-size: 14px;
}

/* =====================================================
   CONTATO – CARD FINAL
===================================================== */

#contact {
  background: var(--white);
  padding-bottom: 60px;
}

.contact-card {
  background: #faf9f7;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-card h2 {
  margin-bottom: 20px;
}

.contact-card p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

.contact-card .btn-primary {
  margin-top: 24px;
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* =====================================================
   FOOTER – ASSINATURA DESENVOLVEDOR
===================================================== */
footer .logo {
  max-height: 100px;
}

footer {
  background: var(--dark);
  padding: 60px 0 40px;
}

.footer-inner {
  text-align: center;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-divider {
  background: rgba(255,255,255,0.2);
}

.footer-signature {
  font-size: 13px;
  color: rgba(255,255,255,0.85);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-signature a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  text-decoration: none;
  color: #333;
  font-weight: 500;

  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}

.footer-signature img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.footer-signature a:hover {
  opacity: 1;
  color: var(--gold);
}


/* =====================================================
   WHATSAPP FLUTUANTE – VERSÃO PREMIUM
===================================================== */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;
  color: #ffffff;

  border-radius: 50%;
  font-size: 22px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.25),
    0 0 0 6px rgba(37, 211, 102, 0.15);

  z-index: 999;

  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.3),
    0 0 0 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
  display: block;
}

/* =====================================================
   RESPONSIVO (MOBILE)
===================================================== */
@media (max-width: 768px) {

  /* =====================================
     GRIDS
  ===================================== */
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* =====================================
     HEADER
  ===================================== */
  .logo {
    max-height: 46px;
  }

  header {
    padding: 4px 0;
  }

  .header-inner {
    padding: 0 12px;
  }

  /* =====================================
     MENU MOBILE
  ===================================== */
  .nav {
    display: none;
    flex-direction: column;
    background: #1d1d1d;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* =====================================
     HERO
  ===================================== */
  #hero {
    padding: 60px 0;
  }

  #hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 16px;
    margin: 16px 0;
  }

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

  .trust {
    margin-top: 24px;
  }

  /* =====================================
     ATUAÇÃO
  ===================================== */
  #services h2 {
    font-size: 30px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card + .service-card {
    margin-top: 24px;
  }

  /* =====================================
     EQUIPE
  ===================================== */
  #team h2 {
    font-size: 30px;
  }

  #team .overlay {
    opacity: 1;
    padding: 20px;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.75) 70%
    );
  }

  .overlay h3 {
    font-size: 17px;
  }

  .team-role {
    font-size: 13px;
  }

  .overlay p {
    font-size: 13px;
    line-height: 1.4;
  }

  /* =====================================
     DEPOIMENTOS
  ===================================== */
  #testimonials h2 {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  /* =====================================
     CONTATO
  ===================================== */
  .contact-card {
    padding: 28px 22px;
  }

  .contact-card h2 {
    font-size: 26px;
  }

  .map-container iframe {
    height: 240px;
  }

  /* =====================================
     FOOTER
  ===================================== */
  footer .logo {
    max-height: 64px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-signature {
    flex-direction: column;
    gap: 6px;
  }

  /* =====================================
     WHATSAPP FLUTUANTE
  ===================================== */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }

}
