* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0f14;
  color: #fff;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header img {
  height: 50px;
}

nav a {
  margin: 0 15px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

nav a:hover {
  color: #facc15;
}

/* MENU MOBILE BOTÃO */
.menu-mobile-btn {
  width: 45px;
  height: 45px;

  border-radius: 12px;

  display: none;

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

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  cursor: pointer;

  transition: 0.3s;
}

.menu-mobile-btn i {
  font-size: 20px;
  color: #fff;
}

.menu-mobile-btn:hover {
  background: rgba(201, 169, 110, 0.15);
}

/* MENU LATERAL */
.mobile-menu {
  position: fixed;

  top: 0;
  right: -320px;

  width: 320px;
  height: 100vh;

  background: rgba(11, 15, 20, 0.98);

  backdrop-filter: blur(14px);

  z-index: 2000;

  padding: 30px;

  transition: 0.4s ease;
}

/* MENU ABERTO */
.mobile-menu.active {
  right: 0;
}

/* HEADER MENU */
.mobile-menu-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 40px;
}

.mobile-menu-header h2 {
  color: #fff;
}

.mobile-menu-header button {
  background: none;
  border: none;

  color: #fff;

  font-size: 24px;

  cursor: pointer;
}

/* LINKS */
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 20px;
}

.mobile-nav a {
  color: #fff;

  text-decoration: none;

  font-size: 1rem;

  padding: 14px 18px;

  border-radius: 12px;

  transition: 0.3s;

  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav a:hover {
  background: rgba(201, 169, 110, 0.12);

  color: #c9a96e;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  z-index: 1500;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* BOTÃO HEADER */
.btn-header {
  position: relative;
  overflow: hidden;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;

  background: linear-gradient(135deg, #c9a96e, #9b0720);

  border: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;

  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.18);
}

.btn-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(250, 204, 21, 0.28);
}

/* brilho */
.btn-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  transition: 0.7s;
}

.btn-header:hover::before {
  left: 120%;
}

.mobile-container-btn {
  width: 100%;
  display: flex;
}

/* BOTÃO MOBILE */
.mobile-btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;

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

  text-decoration: none;
  color: #000;

  font-weight: 700;
  font-size: 15px;

  background: linear-gradient(135deg, #c9a96e, #facc15);

  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mobile-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 35px rgba(250, 204, 21, 0.28);
}

/* BANNER */
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 83%;
  object-fit: cover;
  padding-top: 70px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
}

/* DIVISOR CLEAN */
.divider-clean {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  padding: 60px 40px;
  background: #0b0f14;

  position: relative;
  z-index: 10;
}

.divider-line {
  flex: 1;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 169, 110, 0.5),
    transparent
  );

  max-width: 300px;
}

.divider-content {
  text-align: center;
}

.divider-tag {
  color: #c9a96e;
  font-size: 12px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.divider-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* SERVIÇOS */
.servicos {
  background: #0b0f14;
  color: #fff;
  padding: 80px 40px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LADO ESQUERDO */
.intro {
  max-width: 350px;
}

.tag {
  color: #c9a96e;
  font-size: 12px;
  letter-spacing: 2px;
}

.intro h2 {
  font-size: 28px;
  margin: 15px 0;
  line-height: 1.3;
}

.intro p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  border: 1px solid #c9a96e;
  color: #c9a96e;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #c9a96e;
  color: #000;
}

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

.card {
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}

.card:hover {
  transform: translateY(-5px);
  border-color: #c9a96e;
}

.icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #c9a96e;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: #aaa;
}

/* PRODUTOS */
.produtos {
  padding: 100px 40px;
  background: linear-gradient(to bottom, #0b0f14, #111827);
}

.produtos-top {
  text-align: center;
  max-width: 750px;
  margin: auto auto 70px;
}

.produtos-tag {
  color: #c9a96e;
  font-size: 12px;
  letter-spacing: 3px;
}

.produtos-top h2 {
  font-size: 2.7rem;
  margin: 18px 0;
  line-height: 1.2;
}

.produtos-top p {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 1rem;
}

/* GRID */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.produto-card {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 24px;

  overflow: hidden;

  transition: 0.4s;

  backdrop-filter: blur(10px);
}

.produto-card:hover {
  transform: translateY(-10px);

  border-color: rgba(201, 169, 110, 0.5);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* IMAGEM */
.produto-img {
  height: 260px;
  overflow: hidden;
}

.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.5s;
}

.produto-card:hover .produto-img img {
  transform: scale(1.08);
}

/* INFO */
.produto-info {
  padding: 30px;
}

.produto-categoria {
  color: #c9a96e;
  font-size: 11px;
  letter-spacing: 2px;
}

.produto-info h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}

.produto-info p {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BOTÃO */
.produto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border-radius: 40px;

  background: #c9a96e;

  color: #000;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s;
}

.produto-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.35);
}

/* CONTATO */
.contato {
  padding: 100px 40px;

  background: linear-gradient(to bottom, #111827, #0b0f14);
}

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

.contato-info {
  text-align: center;
  max-width: 750px;
  margin: auto auto 70px;
}

.contato-tag {
  color: #c9a96e;
  font-size: 12px;
  letter-spacing: 3px;
}

.contato-info h2 {
  font-size: 2.7rem;
  margin: 18px 0;
  line-height: 1.2;
}

.contato-info p {
  color: #9ca3af;
  line-height: 1.8;
}

/* GRID */
.contato-cards {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

/* CARD */
.contato-card {
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.contato-card:hover {
  transform: translateY(-6px);

  border-color: rgba(201, 169, 110, 0.5);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* ÍCONE */
.contato-icon {
  width: 70px;
  height: 70px;

  margin: auto auto 20px;

  border-radius: 50%;

  background: rgba(201, 169, 110, 0.12);

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

  font-size: 30px;
}
.contato-card:hover .fa-whatsapp {
  color: #25d366;
}

.contato-card:hover .fa-instagram {
  color: #e1306c;
}

.contato-card:hover .fa-envelope {
  color: #4da6ff;
}

.contato-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contato-card p {
  color: #9ca3af;
  line-height: 1.6;
}

.contato-banner {
  width: 100%;
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.contato-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

/* efeito premium */
.contato-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.contato-banner img {
  transition: transform 0.5s ease;
}

.contato-banner:hover img {
  transform: scale(1.02);
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  color: white;
  z-index: 999;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  header {
    padding: 0 20px;
  }

  nav {
    display: none;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-menu,
  .btn-header {
    display: none;
  }

  .menu-mobile-btn {
    display: flex;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .servicos {
    padding: 60px 20px;
  }

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

  .intro h2 {
    font-size: 22px;
  }

  .divider-clean {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }

  .divider-line {
    width: 100%;
  }

  .divider-content h2 {
    font-size: 1.4rem;
  }

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

  .produtos-top h2 {
    font-size: 2rem;
  }

  .contato {
    padding: 70px 20px;
  }

  .contato-cards {
    grid-template-columns: 1fr;
  }
}

 /* ── SOBRE ── */
 .sobre {
  padding: 100px 40px;
  background: linear-gradient(to bottom, #0b0f14, #111827);
  position: relative;
  overflow: hidden;
}

/* linha decorativa lateral */
.sobre::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #c9a96e, transparent);
  opacity: .4;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TAG */
.sobre-tag {
  color: #c9a96e;
  font-size: 12px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

/* TÍTULO */
.sobre-titulo {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sobre-titulo span { color: #c9a96e; }

.sobre-subtitulo {
  text-align: center;
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 70px;
}

/* GRID PRINCIPAL */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* BADGE FUNDADOR */
.sobre-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sobre-badge {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
  box-shadow: 0 0 60px rgba(201,169,110,.1);
}

.sobre-badge::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.15);
}

.badge-numero {
  font-size: 64px;
  font-weight: 800;
  color: #c9a96e;
  line-height: 1;
}

.badge-anos {
  font-size: 13px;
  letter-spacing: .16em;
  color: rgba(201,169,110,.7);
  text-transform: uppercase;
  margin-top: 4px;
}

.sobre-fundador-nome {
  font-size: 11px;
  letter-spacing: .14em;
  color: #c9a96e;
  text-transform: uppercase;
  text-align: center;
}

/* TEXTO SOBRE */
.sobre-texto h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.sobre-texto h3 span { color: #c9a96e; }

.sobre-texto p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.9;
  margin-bottom: 16px;
}

.sobre-texto p strong { color: #c9a96e; font-weight: 600; }

.sobre-divider {
  width: 48px;
  height: 2px;
  background: #c9a96e;
  margin: 24px 0;
}

/* STATS */
.sobre-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.stat-item { text-align: left; }

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #c9a96e;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: #6b7280;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* TIMELINE */
.sobre-timeline {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
}

.timeline-titulo {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #c9a96e;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, #c9a96e, rgba(201,169,110,.2));
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.tl-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0b0f14;
  border: 2px solid #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(201,169,110,.3);
}

.tl-dot i { font-size: 12px; color: #c9a96e; }

.tl-year {
  font-size: 11px;
  letter-spacing: .12em;
  color: #c9a96e;
  font-weight: 600;
  margin-bottom: 6px;
}

.tl-titulo {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.tl-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* MISSÃO */
.sobre-missao {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.missao-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: .3s;
  backdrop-filter: blur(6px);
}

.missao-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.missao-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,169,110,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #c9a96e;
  transition: .3s;
}

.missao-card:hover .missao-icon {
  background: rgba(201,169,110,.2);
  box-shadow: 0 0 20px rgba(201,169,110,.2);
}

.missao-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.missao-card p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.7;
}

/* CTA INLINE */
.sobre-cta {
  text-align: center;
  padding: 60px 40px;
  background: rgba(201,169,110,.05);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.sobre-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,169,110,.05) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sobre-cta h3 span { color: #c9a96e; }

.sobre-cta p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.sobre-cta .btn-cta {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #c9a96e, #9b0720);
  color: #fff;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 10px 25px rgba(201,169,110,.2);
}

.sobre-cta .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201,169,110,.3);
}

/* ANIMAÇÃO SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVO */
@media (max-width: 1000px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-badge-wrap { order: -1; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline-grid::before { display: none; }
  .sobre-missao { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sobre { padding: 70px 20px; }
  .sobre-titulo { font-size: 2rem; }
  .timeline-grid { grid-template-columns: 1fr; }
  .sobre-stats { flex-wrap: wrap; gap: 20px; }
  .sobre-timeline { padding: 28px 20px; }
}


/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #aaa;
  font-size: 14px;
}

/* LOCALIZAÇÃO */

.localizacao {
    padding: 100px 40px;
    background:
        linear-gradient(rgba(3, 7, 18, 0.95),
            rgba(3, 7, 18, 0.98)),
        url("../imgs/bg-dark.jpg");

    background-size: cover;
    background-position: center;
}

.localizacao-container {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.localizacao-tag {
    color: #c9a96e;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.localizacao-info h2 {
    font-size: 2.7rem;
    margin: 20px 0;
    color: white;
}

.localizacao-info p {
    color: #b4b4b4;
    line-height: 1.7;
    margin-bottom: 35px;
}

.localizacao-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.local-card {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 18px;

    padding: 22px;

    display: flex;
    align-items: center;
    gap: 20px;

    transition: 0.4s;
}

.local-card:hover {
    border-color: #c9a96e;
    transform: translateX(10px);

    box-shadow:
        0 10px 30px rgba(201,169,110,0.12);
}

.local-card i {
    width: 60px;
    height: 60px;

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

    border-radius: 14px;

    background: linear-gradient(45deg,#c9a96e,#e7c98f);

    color: #111;

    font-size: 1.3rem;
}

.local-card h3 {
    color: white;
    margin-bottom: 5px;
}

.local-card span {
    color: #aaa;
    line-height: 1.5;
}

.btn-localizacao {
    margin-top: 35px;

    display: inline-block;

    padding: 14px 28px;

    border-radius: 10px;

    background: linear-gradient(45deg,#c9a96e,#e7c98f);

    color: #111;
    font-weight: bold;
    text-decoration: none;

    transition: 0.3s;
}

.btn-localizacao:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 20px rgba(201,169,110,0.3);
}

/* MAPA */

.localizacao-mapa iframe {
    width: 100%;
    height: 500px;

    border: none;
    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.4);
}

/* RESPONSIVO */

@media(max-width: 980px){

    .localizacao-container{
        grid-template-columns: 1fr;
    }

    .localizacao-info h2{
        font-size: 2rem;
    }

}