/* ===========================
   VARIÁVEIS DO TEMA (JM REFORMAS)
=========================== */
:root {
  --gold1: #d4a54a;
  --gold2: #f6d889;
  --gold3: #c68c2e;
  --bg-dark: #0a0718;
  --bg-darker: #070612;
  --bg-light: #f5f5f5;
  --text-main: #ffffff;
  --text-muted: #b3b3b3;
  --text-dark: #222222;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===========================
   HEADER (MENU)
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #000000, #0a0718, var(--gold1));
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  height: 100px;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.6));
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.2s;
}

.nav a:hover {
  color: var(--gold2);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.header__whatsapp {
  background: #ffffff;
  color: #000000;
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
}

.header__whatsapp a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

/* ===========================
   HERO (TOPO)
=========================== */
.hero {
  background: radial-gradient(circle at top, #1a152c, #070612);
  padding: 80px 0 60px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold2);
}

.hero__text h2 {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero__text p {
  max-width: 460px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, var(--gold1), var(--gold2), var(--gold3));
  color: #000000;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s;
}

.btn-primary:hover {
  transform: scale(1.04);
}

.hero__image {
  display: flex;
  justify-content: center;
}

.hero__placeholder {
  width: 100%;
  max-width: 360px;
  height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 74, 0.25);
  background: #0f0b1e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
}

/* ===========================
   SEÇÕES
=========================== */
.section {
  padding: 60px 0;
}

.section--light {
  background: #ffffff;
  color: var(--text-dark);
}

.section--dark {
  background: var(--bg-dark);
  color: #ffffff;
}

.section__title {
  margin-bottom: 32px;
}

.section__title--center {
  text-align: center;
}

.section__title h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--gold2);
}

.section__title p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* ===========================
   GRID
=========================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===========================
   CARDS DE SERVIÇOS
=========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #0f0b1e;
  border: 1px solid rgba(212, 165, 74, 0.25);
  padding: 20px;
  border-radius: 10px;
  transition: 0.2s;
}

.card:hover {
  border-color: var(--gold2);
  transform: translateY(-3px);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gold2);
}

/* ===========================
   DEPOIMENTOS
=========================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #dddddd;
  color: #000000;
}

/* ===========================
   FORMULÁRIOS
=========================== */
.form {
  border-radius: 10px;
  padding: 20px;
  background: #14121f;
  border: 1px solid rgba(212, 165, 74, 0.25);
}

.form__group {
  margin-bottom: 18px;
}

.form__group label {
  display: block;
  margin-bottom: 6px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 165, 74, 0.25);
  background: #0f0b1e;
  color: #ffffff;
  font-size: 0.9rem;
}

.form__group textarea {
  resize: vertical;
}

.form__group--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ===========================
   CONTATO + MAPA
=========================== */
.contact-list {
  list-style: none;
  margin: 16px 0 24px;
}

.contact-list li {
  margin-bottom: 6px;
}

.map-placeholder {
  background: #0f0b1e;
  border: 1px dashed rgba(212, 165, 74, 0.4);
  border-radius: 10px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  background: var(--gold2);
  border: 2px solid var(--gold3);
  border-radius: 50%;
  color: #000000;
  text-decoration: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(246, 216, 137, 0.5);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #05040d;
  padding: 16px 0;
  text-align: center;
  color: #777777;
  font-size: 0.85rem;
}

/* ===========================
   RESPONSIVIDADE
=========================== */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .form__group--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #0a0718;
    flex-direction: column;
    padding: 16px;
    display: none;
  }

  .nav.nav--open {
    display: flex;
  }

  .header__whatsapp {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .cards,
  .testimonials,
  .grid-2,
  .form__group--grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CARROSSEL DE OBRAS (ADICIONADO)
=========================== */
.carousel {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 74, 0.25);
  background: #0f0b1e;
}

.carousel-images {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-images img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}

.carousel-btn:hover {
  background: rgba(212, 165, 74, 0.9);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.i.insta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold2);
  text-decoration: none;
  font-weight: 500;
}

.insta-link:hover {
  color: var(--gold1);
}

.insta-svg {
  width: 22px;
  height: 22px;
  fill: var(--gold2);
  transition: 0.2s;
}

.insta-link:hover .insta-svg {
  fill: var(--gold1);
  transform: scale(1.08);
}

