:root {
  --navy: #1a2035;
  --navy-light: #282f47;
  --gold: #ddb53c;
  --gold-light: #f0c94e;
  --off-white: #f7f4ef;
  --cream: #fef9f4;
  --dark: #0d1120;
  --gray: #6b7280;
  --light-gray: #e8e4dc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(13,17,32,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,181,60,0.15);
  transition: all 0.3s;
}

.nav-logo img {
  height: 56px;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/herogran.JPG');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,17,32,0.7) 0%,
    rgba(13,17,32,0.3) 40%,
    rgba(13,17,32,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/*.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(221,181,60,0.15);
  border: 1px solid rgba(221,181,60,0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
} */

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.92;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp 0.8s 0.3s ease both;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(221,181,60,0.35);
}

.btn-ghost {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.btn-ghost:hover { color: #fff; border-color: #fff; }

.hero-badges {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-badge-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-phone-wrap {
  position: absolute;
  right: 220px;
  top: 50%;
  transform: translateY(-47%);
  z-index: 2;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-phone {
  width: 200px;
  height: 400px;
  border-radius: 36px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION COMMONS ─── */
section { padding: 100px 60px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--navy);
}

.section-title.light { color: #fff; }

/* ─── ABOUT / SERVIÇOS ─── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 75%;
  height: 85%;
  border-radius: 4px 20px 20px 4px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 50%;
  height: 45%;
  border-radius: 20px 4px 4px 20px;
  overflow: hidden;
  border: 6px solid var(--cream);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat {
  position: absolute;
  right: -20px;
  bottom: 80px;
  background: var(--navy);
  color: #fff;
  padding: 22px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about-stat-label {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text .section-label { margin-bottom: 12px; }

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin: 20px 0 40px;
  max-width: 460px;
}

.about-desc strong {
  color: var(--navy);
  font-weight: 600;
}

/* ─── SERVICES LIST ─── */
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.service-item:first-child { border-top: 1px solid var(--light-gray); }

.service-item:hover { padding-left: 8px; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.service-item:hover .service-icon {
  background: var(--gold);
}

.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-transform: capitalize;
}

.service-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--light-gray);
  transition: all 0.2s;
}

.service-item:hover .service-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── PORTFOLIO ─── */
.portfolio {
  background: var(--navy);
  padding: 100px 60px;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.portfolio-header .section-title { color: #fff; }

.portfolio-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.portfolio-link:hover { gap: 14px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-light);
}

.portfolio-card.tall { 
  grid-row: span 2; 
}

/* ─── PORTFOLIO CAROUSEL ─── */
.portfolio-card-images {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.portfolio-card.tall .portfolio-card-images {
  min-height: 530px;
}

.portfolio-card-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.portfolio-card-images img:first-child {
  opacity: 1;
}

.portfolio-card-images img.active {
  opacity: 1;
  z-index: 1;
}

.portfolio-card:hover .portfolio-card-images img.active {
  transform: scale(1.06);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,32,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}

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

.portfolio-card-bottom {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(13,17,32,0.85) 0%, transparent 100%);
  z-index: 2;
}

.portfolio-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
}

.portfolio-card-sub {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.portfolio-card-overlay-content {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  line-height: 1.6;
  transform: translateY(8px);
  transition: transform 0.35s;
}

.portfolio-card:hover .portfolio-card-overlay-content { 
  transform: translateY(0); 
}

.portfolio-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
  text-decoration: none;
  transform: translateY(8px);
  transition: all 0.35s;
}

.portfolio-card:hover .portfolio-card-cta { 
  transform: translateY(0); 
}
/* ─── OBRAS ENTREGUES ─── */
.obras {
  background: var(--off-white);
  padding: 100px 60px;
}

.obras-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.obra-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.obra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.obra-card:hover img { transform: scale(1.07); }

.obra-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.obras-cta {
  text-align: center;
  margin-top: 50px;
}

/* ─── DEPOIMENTOS ─── */
.depoimentos {
  background: var(--navy);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.depoimentos::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-size: 400px;
  color: rgba(221,181,60,0.05);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
}

.depoimentos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.dep-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.dep-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.dep-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(221,181,60,0.3);
  transform: translateY(-4px);
}

.dep-rating {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 30px;
}

.dep-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(221,181,60,0.4);
  margin-bottom: 16px;
}

.dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dep-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 2px;
}

.dep-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dep-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-style: italic;
}

/* ─── CONTATO ─── */
.contato {
  background: var(--cream);
  padding: 140px 60px 100px; /* Aumentamos o primeiro número (topo) de 100px para 140px */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  scroll-margin-top: 90px; /* Cria uma "folga" pro menu fixo quando você clica nos links do menu */
}

.contato-info .section-title { margin-bottom: 20px; }

.contato-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}

.contato-item-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.07);
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--off-white);
  transition: all 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  background: #fff;
}

textarea.form-input {
  resize: none;
  height: 120px;
}

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

.form-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(221,181,60,0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo img {
  height: 48px;
  filter: brightness(1.2);
  object-fit: contain;
}

.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.25s;
  animation: fadeUp 1s 1s ease both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 30px; height: 30px;
  fill: #fff;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DIVIDER ─── */
.divider-gold {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0;
}

/* ─── RESPONSIVIDADE (CELULAR E TABLET) ─── */

@media (max-width: 768px) {
  /* Ajustes Gerais de Seção */
  section {
    padding: 60px 20px; /* Diminui o recuo lateral para dar mais espaço ao conteúdo */
  }

  /* Ajuste do Menu (Nav) */
  nav {
    padding: 15px 20px;
  }

  .nav-links {
    display: none; /* Esconde os links para não atropelar a logo no celular */
  }

  /* Hero Section */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 60px;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 48px; /* Diminui o título para não quebrar feio */
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 15px;
    margin: 0 auto 30px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column; /* Botões um embaixo do outro */
    gap: 15px;
  }

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

  .hero-phone-wrap, .hero-badges {
    display: none; /* Remove elementos decorativos que poluem o celular */
  }

  /* Seção Sobre */
  .about {
    grid-template-columns: 1fr; /* Transforma 2 colunas em 1 */
    gap: 40px;
  }

  .about-visual {
    height: 350px;
  }

  .about-stat {
    right: 10px;
    bottom: 20px;
    padding: 15px;
  }

  /* Portfólio Grid */
  .portfolio-grid {
    grid-template-columns: 1fr; /* Cards ocupam a largura toda */
    grid-template-rows: auto;
  }

  .portfolio-card.tall {
    grid-row: span 1;
  }

  .portfolio-card.tall .portfolio-card-images {
    min-height: 300px; /* Ajusta altura do card grande no celular */
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Obras Entregues (Galeria) */
  .obras-grid {
    grid-template-columns: 1fr; /* Uma foto por linha */
  }

  /* Depoimentos */
  .dep-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .depoimentos-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Contato e Formulário */
  .contato {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-card {
    height: auto; /* Deixa o mapa se ajustar ao conteúdo no celular */
    padding: 15px;
  }

  .form-row {
    grid-template-columns: 1fr; /* Campos de nome e celular um sobre o outro */
  }

  /* Rodapé */
  footer {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
  }
}