:root {
  --gray-900: #4B4B4D;
  --gray-700: #727376;
  --gray-300: #BDBFC1;
  --white: #FEFEFE;

  --blue-900: #314C72;
  --blue-700: #2F6382;
  --teal-600: #2C7F92;
  --teal-800: #0E6A70;

  --shadow: 0 18px 40px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.2);
  --radius: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

section[id] { scroll-margin-top: 110px; }

/* ========================
   HEADER
======================== */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--blue-700);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}
.header--scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.13);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo img { height: 75px; }

.menu a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--gray-900);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.25s var(--ease);
}
.menu a.active,
.menu a:hover { color: var(--teal-600); }
.menu a.active::after,
.menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
}

/* Menu compacto */
.menu-dropdown { position: relative; }
.menu-dropdown > summary { list-style: none; }
.menu-dropdown > summary::-webkit-details-marker { display: none; }

.menu-trigger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--gray-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.menu-trigger:hover {
  color: var(--teal-600);
  background: rgba(44,127,146,.09);
}
.menu-trigger:focus { outline: 3px solid rgba(44,127,146,.35); outline-offset: 2px; }

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(114,115,118,.2);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-panel a {
  margin-left: 0;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s var(--ease);
}
.menu-panel a:hover,
.menu-panel a.active { background: rgba(189,191,193,.45); }
.menu-panel a.active::after,
.menu-panel a:hover::after { display: none; }

/* ========================
   SEÇÕES
======================== */
.section { padding: 120px 0; }
.bg-light { background: #f0f4f8; }
.bg-dark { background: var(--gray-900); }
.bg-slight { background: #ececec; }
.bg-slight h3 { color: #202020; margin-top: 10px; }

.title-light {
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.text-light {
  color: rgba(255,255,255,.88);
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 820px;
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(75,75,77,.95), rgba(189,191,193,.75));
  background-size: 28px 28px, 100% 100%;
}
.hero-content {
  position: relative;
  color: var(--white);
  max-width: 860px;
}
.hero-headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.9s var(--ease) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeInUp 0.9s 0.2s var(--ease) both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

@media (min-width: 768px) {
  .hero-headline { font-size: 50px; }
}

/* ========================
   BOTÕES
======================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--teal-600);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn--primary {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}
.btn--primary:hover {
  background: #245070;
  border-color: #245070;
}
.btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ========================
   PAINÉIS
======================== */
.panel {
  background: var(--teal-800);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  color: var(--white);
}
.panel--blue { background: var(--blue-900); }

/* ========================
   SOBRE (degradê com imagem)
======================== */
#sobre.sobre-degrade {
  position: relative;
  padding: 300px 0 60px;
  background-image: url("../img/sobre.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#sobre.sobre-degrade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.20) 45%,
    rgba(255,255,255,0.95) 78%,
    rgba(255,255,255,1) 100%
  );
}
#sobre .sobre-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
#sobre .sobre-texto {
  width: 100%;
  max-width: 820px;
  text-align: center;
  color: #2b2b2b;
  margin-top: 38vh;
}
#sobre .sobre-texto h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
#sobre .sobre-texto p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ========================
   CARDS
======================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.card {
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px;
  color: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.card--dark { border-top: 2px solid rgba(44,127,146,.45); }
.card--blue { border-top: 2px solid rgba(255,255,255,.16); }

.card--dark:hover,
.card--blue:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
  background: rgba(255,255,255,.13);
}

/* ========================
   EMPRESA / VÍDEO
======================== */
.empresa-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
  margin-top: 28px;
}
.video-frame {
  width: 100%;
  max-width: 900px;
  min-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  margin: auto;
  box-shadow: var(--shadow-lg);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
iframe { max-width: 100%; }

/* ========================
   PRODUTOS / GRID
======================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.box--dark {
  background: rgba(255,255,255,.08);
  padding: 30px;
  color: var(--white);
  margin-top: 24px;
  border-radius: 12px;
  transition: background 0.3s var(--ease);
}
.box--dark h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.box--dark:hover { background: rgba(255,255,255,.12); }

/* ========================
   CARROSSEL
======================== */
.carousel { position: relative; margin-top: 40px; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
  padding: 10px 0;
}
.carousel-track img {
  width: calc((100% - 72px) / 4);
  aspect-ratio: 1/1;
  object-fit: contain;
  background: rgba(255,255,255,.9);
  border-radius: 14px;
  padding: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: zoom-in;
}
.carousel-track img:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.carousel-btn {
  position: absolute;
  bottom: -60px;
  top: auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: #ffffff;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
}
.carousel-btn:hover {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.carousel-btn--left {
  left: 50%;
  transform: translateX(-60px);
}
.carousel-btn--left:hover { transform: translateX(-60px) translateY(-2px); }
.carousel-btn--right {
  right: 50%;
  transform: translateX(60px);
}
.carousel-btn--right:hover { transform: translateX(60px) translateY(-2px); }

/* ========================
   CARROSSEL MARKUP
======================== */
.markup-section .markup-title {
  text-align: center;
  color: #202020;
  font-size: 34px;
  font-weight: 800;
}
.markup-section .markup-subtitle {
  text-align: center;
  color: var(--gray-700);
  margin-top: 10px;
}
.carousel--markup { margin-top: 28px; }
.carousel--markup .carousel-track img {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.markup-section .carousel-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ========================
   ÍCONES PRATICA
======================== */
#pratica .card { text-align: center; padding: 28px 22px; }
#pratica .card-icon {
  width: 100px;
  height: 90px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: transform 0.35s var(--ease);
}
#pratica .card:hover .card-icon { transform: scale(1.1) rotate(-4deg); }
#pratica .card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
#pratica .card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .9;
}

/* ========================
   ÍCONES VANTAGENS
======================== */
#vantagens .card { text-align: center; padding: 26px 22px; }
.vantagem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
  transition: transform 0.35s var(--ease);
}
#vantagens .card:hover .vantagem-icon { transform: scale(1.12); }
#vantagens .card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }

/* ========================
   CONTATO
======================== */
.contato-header {
  text-align: center;
  margin-bottom: 56px;
}
.contato-header .title-light { display: block; }
.contato-header .text-light  { margin: 12px auto 0; max-width: 560px; }

.contato-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 44px 32px 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contato-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 24px 52px rgba(0,0,0,.35);
}

.contato-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-card-icon svg { width: 36px; height: 36px; }

.contato-card-icon--whatsapp {
  background: rgba(37, 211, 102, .15);
  color: #25d366;
}
.contato-card-icon--email {
  background: rgba(44, 127, 146, .2);
  color: var(--teal-600);
}

.contato-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contato-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: .55;
}
.contato-card-value {
  font-size: 16px;
  font-weight: 600;
  word-break: break-all;
}

.contato-card-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 0.03em;
  margin-top: 4px;
  transition: letter-spacing 0.25s var(--ease);
}
.contato-card:hover .contato-card-cta { letter-spacing: 0.06em; }

@media (max-width: 600px) {
  .contato-cards { grid-template-columns: 1fr; }
  .contato-card { padding: 36px 24px 28px; }
}

/* ========================
   LOCALIZAÇÃO
======================== */
.localizacao { background: #e5e5e5; padding: 80px 20px; }
.localizacao h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #3b3b3b;
  letter-spacing: -0.01em;
}
.enderecos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}
.card-endereco {
  background: white;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card-endereco:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.card-endereco h3 { margin-bottom: 6px; color: #2f2f2f; font-weight: 700; }
.card-endereco p { color: #555; line-height: 1.6; }
.mapa { margin-top: 40px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.mapa iframe { width: 100%; height: 400px; border: 0; border-radius: 14px; }

/* ========================
   LISTAS
======================== */
.list { list-style: none; padding-left: 0; }
.list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: inherit;
}

/* ========================
   MODAL
======================== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.92);
  justify-content: center;
  align-items: center;
}
.image-modal img { max-width: 90%; max-height: 90%; border-radius: 10px; }
.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.close-modal:hover { transform: scale(1.2) rotate(90deg); }
#modalImg {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

/* ========================
   REVEAL ANIMATION
======================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .hero-headline,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ========================
   FOOTER
======================== */
.site-footer {
  background: #141416;
  color: rgba(255,255,255,.5);
  padding: 32px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}
.footer-dev { font-size: 11px; opacity: .35; }
.footer-dev span { font-weight: 600; }

/* ========================
   ELEMENTOS PROFISSIONAIS
======================== */

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-600);
  background: rgba(44,127,146,.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.eyebrow--light {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
}

/* Badge hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s var(--ease) both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal-600);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Accent underline em títulos */
.section-title {
  position: relative;
  padding-bottom: 16px;
  display: block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--teal-600);
  border-radius: 2px;
}
.section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Section header wrapper */
.section-header        { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.panel .section-header  { margin-bottom: 32px; }

/* Markup section - eyebrow centralizado */
.markup-section .eyebrow { display: block; text-align: center; }

/* ========================
   EMPRESA HEADING
======================== */
#empresa h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin-bottom: 0;
}

/* ========================
   RESPONSIVO
======================== */

/* Tablet */
@media (max-width: 1024px) {
  .carousel-track img { width: calc((100% - 24px) / 2); }
}

/* Mobile */
@media (max-width: 768px) {
  /* SCROLL OFFSET */
  section[id] { scroll-margin-top: 90px; }

  /* SEÇÕES */
  .section { padding: 72px 0; }

  /* HEADER */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90px;
  }

  /* MENU */
  .menu-panel {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 0;
    border-radius: 0;
    padding: 18px 16px;
    overflow: auto;
    box-shadow: none;
    border: none;
  }
  .menu-dropdown[open]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 999;
  }
  .menu-panel { z-index: 1000; }
  .menu-panel a { font-size: 16px; padding: 16px 14px; }

  /* HERO */
  .hero { min-height: 75vh; }
  .hero-badge    { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; letter-spacing: 0.06em; }
  .hero-headline { font-size: 26px; line-height: 1.35; }
  .hero-actions  { margin-top: 28px; gap: 12px; }

  /* ELEMENTOS PROFISSIONAIS */
  .eyebrow        { font-size: 10px; padding: 4px 11px; margin-bottom: 10px; }
  .section-header { margin-bottom: 32px; }
  .panel .section-header { margin-bottom: 22px; }
  .section-title  { padding-bottom: 14px; }

  /* TIPOGRAFIA */
  .title-light { font-size: 26px; }
  .text-light  { font-size: 15px; }
  .markup-section .markup-title { font-size: 26px; }
  #empresa h2 { font-size: 26px; }

  /* GRID E FLEX */
  .cards { grid-template-columns: 1fr; gap: 12px; }
  .grid-2,
  .empresa-grid,
  .sobre-content { grid-template-columns: 1fr; flex-direction: column; }

  /* PAINEL */
  .panel { padding: 28px 18px; }

  /* VÍDEO */
  .video-frame { min-width: 0; width: 100%; max-width: 100%; }

  /* CARROSSEL — espaço para botões embaixo */
  .carousel { padding-bottom: 72px; }
  .carousel-track img { width: calc((100% - 12px) / 2); }

  /* SOBRE */
  #sobre.sobre-degrade {
    padding: 200px 0 60px;
    background-size: 390% auto;
    background-position: center top;
    background-image: url("../img/sobre2.png");
  }
  #sobre .sobre-texto {
    margin-top: 20vh;
    padding-top: 350px;
  }
  #sobre .sobre-texto h2 { font-size: 24px; margin-bottom: 12px; }
  #sobre .sobre-texto p  { font-size: 15px; }

  /* CONTATO */
  .contato-header { margin-bottom: 36px; }
  .contato-cards { grid-template-columns: 1fr; max-width: 420px; }
  .contato-card  { padding: 36px 24px 28px; }

  /* LOCALIZAÇÃO */
  .localizacao { padding: 60px 16px; }
  .localizacao h2 { font-size: 24px; margin-bottom: 20px; }
  .mapa iframe { height: 280px; }

  /* BOX PRODUTOS */
  .box--dark { margin-top: 16px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .section { padding: 60px 0; }

  .hero { min-height: 65vh; }
  .hero-badge    { font-size: 10px; padding: 4px 10px; letter-spacing: 0.04em; }
  .hero-headline { font-size: 22px; }
  .hero-actions  { flex-direction: column; }
  .btn { width: 100%; text-align: center; }

  .section-header { margin-bottom: 20px; }
  .section-title  { padding-bottom: 12px; }
  .section-title::after { width: 32px; height: 2px; }

  .title-light { font-size: 22px; }
  .markup-section .markup-title { font-size: 22px; }

  .carousel-track img { width: 100%; }
  .carousel { padding-bottom: 72px; }

  .panel { padding: 22px 14px; }

  .contato-card-value { font-size: 14px; }

  .mapa iframe { height: 220px; }
  .localizacao { padding: 50px 14px; }
  .card-endereco { padding: 20px 18px; }
}
