:root {
  --color-primary: #084888;
  --color-primary-hover: #0a62b5;
  --color-primary-dark: #063666;
  --color-primary-light: rgba(8, 72, 136, 0.12);
  --color-primary-glow: rgba(8, 72, 136, 0.28);
  --color-black: #111111;
  --color-muted: #555555;
  --header-height: 108px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--color-black);
  background: #ffffff;
  padding-top: var(--header-height);
}

h1, h2, h3, h4, h5 {
  font-family: Raleway, Poppins, sans-serif;
}

img { max-width: 100%; }

a { color: var(--color-primary); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 72px;
  width: auto;
}

#navbar { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
  margin: 0 4px;
}

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 12px;
  position: relative;
  white-space: nowrap;
}

.nav-list > li > a::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-list > li > a:hover::before,
.nav-list > li > a.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--color-primary);
}

.hover-text {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-black);
  color: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.nav-list > li:hover .hover-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-whatsapp-header:hover {
  background: var(--color-black);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-black);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero-home {
  position: relative;
  color: #ffffff;
  background: #0a0a0f;
  padding: 78px 0 88px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.82) 46%, rgba(8, 72, 136, 0.45) 100%);
}

.hero-home .container { position: relative; z-index: 2; }

.hero-content { max-width: 760px; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(8, 72, 136, 0.18);
  color: #7eb6ea;
  border: 1px solid rgba(126, 182, 234, 0.45);
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-radius: 4px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 18px;
}

.hero-content h1 span {
  display: block;
  margin-top: 8px;
  color: #7eb6ea;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 26px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero-primary {
  background: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
}

.btn-hero-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.offer-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card,
.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(18, 18, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 26px 16px 22px;
  min-height: 210px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.offer-card:hover,
.stat-card:hover {
  border-color: #7eb6ea;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.offer-card i,
.stat-card i {
  font-size: 2rem;
  color: #7eb6ea;
  margin-bottom: 12px;
}

.offer-card h3,
.stat-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #ffffff;
}

.offer-card h3 span,
.stat-card h3 span { color: #7eb6ea; }

.offer-card p,
.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-footer { margin-top: 36px; }

.contact-popover {
  position: relative;
  display: inline-block;
}

.btn-talk {
  display: inline-block;
  padding: 16px 42px;
  background: #ffffff;
  color: var(--color-black);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-talk:hover,
.contact-popover:hover .btn-talk {
  background: var(--color-primary);
  color: #ffffff;
}

.contact-card {
  position: absolute;
  bottom: 120%;
  left: 50%;
  width: 380px;
  transform: translateX(-50%) translateY(10px);
  visibility: hidden;
  opacity: 0;
  background: rgba(10, 10, 15, 0.96);
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 26px;
  z-index: 30;
  text-align: left;
  transition: all 0.35s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.contact-popover:hover .contact-card,
.contact-popover:focus-within .contact-card {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
}

.contact-card h3 {
  margin: 0 0 4px;
  color: #ffffff;
  letter-spacing: 1px;
}

.contact-card .tagline {
  color: #7eb6ea;
  margin: 0 0 16px;
}

.contact-card p,
.contact-card a,
.contact-card span { color: #ffffff; }

.contact-card a { text-decoration: none; }

.contact-card a:hover { color: #7eb6ea; }

.contact-card small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.72rem;
}

.contact-card .contact-row {
  display: grid;
  gap: 12px;
}

.contact-card hr {
  border: 0;
  border-top: 1px solid rgba(126, 182, 234, 0.35);
  margin: 16px 0;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-light {
  background: linear-gradient(135deg, #f4f7fb 0%, #ffffff 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head h2,
.panel-title {
  color: var(--color-black);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-head p,
.lead-copy {
  color: #6c757d;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn-brand,
a.btn-brand {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: 2px solid var(--color-primary);
  transition: all 0.25s ease;
}

.btn-brand:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-brand-outline {
  background: transparent;
  color: var(--color-primary);
}

.btn-brand-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.split h2 {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.split p {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.video-card {
  background: #111111;
  border: 2px solid rgba(8, 72, 136, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 72, 136, 0.12);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 14;
  max-height: 520px;
  object-fit: cover;
  object-position: center 28%;
  background: #000;
}

.video-card figcaption {
  color: #ffffff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 10px 12px 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border: 2px solid rgba(8, 72, 136, 0.18);
  border-radius: 15px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(8, 72, 136, 0.08);
  height: 100%;
}

.feature-card h3 {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.phone-bar {
  background: var(--color-primary);
  text-align: center;
  padding: 22px 16px;
}

.phone-bar a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.phone-bar a:hover { color: #d6e8f8; }

.video-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 24px;
}

/* Slider */
.home-swiper {
  padding: 8px 48px 52px;
}

.slide-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 2px solid rgba(8, 72, 136, 0.16);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.slide-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 32px rgba(8, 72, 136, 0.18);
  color: inherit;
}

.slide-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  background: #f4f7fb;
}

.slide-card span {
  display: block;
  padding: 14px 14px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--color-black);
  font-size: 0.92rem;
}

.home-swiper .swiper-button-prev,
.home-swiper .swiper-button-next { color: var(--color-primary); }

.home-swiper .swiper-pagination-bullet-active { background: var(--color-primary); }

/* Content cards */
.content-card {
  background: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: 15px;
  padding: 34px 36px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(8, 72, 136, 0.1);
}

.content-card h3 {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(8, 72, 136, 0.18);
}

.content-card p,
.content-card li {
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

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

.service-card {
  background: #ffffff;
  border: 2px solid rgba(8, 72, 136, 0.16);
  border-radius: 15px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 72, 136, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.service-card i {
  font-size: 2rem;
  color: var(--color-primary);
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-black);
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Products gallery */
.products-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.products-intro h2 {
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.products-intro p {
  color: #6c757d;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid rgba(8, 72, 136, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 72, 136, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 32px rgba(8, 72, 136, 0.18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f4f7fb;
  display: block;
}

.product-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 16px;
  text-align: center;
  color: var(--color-black);
  font-weight: 600;
  border-top: 1px solid rgba(8, 72, 136, 0.12);
}

.section-cta { text-align: center; margin-top: 36px; }

/* Contact */
.contact-panel {
  background: var(--color-black);
  color: #ffffff;
  border-radius: 15px;
  padding: 56px 28px;
}

.contact-panel h2 {
  color: #7eb6ea;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.contact-panel .panel-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.info-box {
  border-left: 4px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 10px 10px 0;
  padding: 22px 22px;
  height: 100%;
}

.info-box h3 {
  color: #7eb6ea;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.info-box p,
.info-box a {
  color: #e8e8e8;
  line-height: 1.7;
  text-decoration: none;
  margin: 0;
}

.info-box a:hover { color: #7eb6ea; }

.map-wrap {
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #111111 0%, #000000 100%);
  color: #ffffff;
  padding: 48px 0 0;
  border-top: 2px solid var(--color-primary);
}

.site-footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.site-footer p { color: rgba(255, 255, 255, 0.82); line-height: 1.65; }

.footer-brand {
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-note {
  color: #7eb6ea !important;
  font-style: italic;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.footer-links a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.footer-links a:hover { color: #7eb6ea; }
.footer-links a:hover::after { width: 100%; }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-contact i { color: #7eb6ea; margin-top: 3px; }

.footer-contact a:hover { color: #7eb6ea; }

.btn-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
}

.btn-footer-whatsapp:hover {
  background: #ffffff;
  color: var(--color-primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(8, 72, 136, 0.35);
  margin-top: 28px;
  padding: 18px 0 22px;
  text-align: center;
}

.footer-bottom p { margin: 0; font-size: 0.9rem; }

.float-whatsapp {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 1001;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  border: 2px solid #111111;
  box-shadow: 0 4px 18px rgba(8, 72, 136, 0.45);
}

.float-whatsapp:hover {
  background: #111111;
  color: #7eb6ea;
  border-color: var(--color-primary);
}

.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #111111;
  border: 2px solid var(--color-primary);
  color: #7eb6ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #ffffff;
}

@media (max-width: 1199px) {
  .brand img { height: 60px; }
  .nav-list > li > a { padding: 10px 8px; font-size: 0.88rem; }
}

@media (max-width: 991px) {
  :root { --header-height: 88px; }

  .brand img { height: 54px; }

  .btn-whatsapp-header,
  .hover-text { display: none !important; }

  .nav-toggle {
    display: flex;
    position: fixed;
    top: 22px;
    right: 16px;
    z-index: 1002;
  }

  .nav-list {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1002;
    background: #ffffff;
    padding: 8px 18px 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .nav-list.open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
  }

  .nav-list > li {
    margin: 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .nav-list > li > a {
    display: block;
    padding: 14px 4px;
  }

  .offer-grid,
  .stat-grid,
  .feature-grid,
  .service-grid,
  .video-pair,
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-home { padding: 56px 0 64px; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .offer-grid,
  .stat-grid,
  .feature-grid,
  .service-grid,
  .video-pair,
  .split { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .content-card { padding: 24px 18px; }
  .contact-card { width: min(340px, calc(100vw - 32px)); }
  .home-swiper { padding-left: 36px; padding-right: 36px; }
  .map-wrap iframe { height: 280px; }
  .video-card video { max-height: 460px; }
}
