html{ scroll-behavior: smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #eaf1ff;

  /* FUNDO CONTÍNUO IGUAL AO PRINT */
  background:
    radial-gradient(
      1200px 800px at 20% 0%,
      rgba(20, 110, 170, 0.45) 0%,
      rgba(10, 18, 40, 0.15) 40%,
      rgba(6, 8, 22, 0.0) 70%
    ),
    linear-gradient(
      180deg,
      #07112a 0%,
      #050718 45%,
      #030512 100%
    );

  background-attachment: fixed;
  padding-top: var(--nav-h);
}

/* evita “esconder” a âncora atrás da navbar */
section{ scroll-margin-top: calc(var(--nav-h) + 14px); }

/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #eaf1ff;
}

/* Fundo e “clima” do banner */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 24px;
}

/* Container central, largura parecida com layout */
.hero__inner{
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* Texto */
.hero__content h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 22px;
}

.hero__content p{
  color: rgba(235, 242, 255, 0.82);
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 560px;
}

.hero__bullets{
  margin-top: 22px;
  color: rgba(235, 242, 255, 0.78);
}

/* Área da imagem */
.hero__media{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__media img{
  width: min(520px, 100%);
  height: auto;
  display: block;

  /* Um “brilho” sutil pra destacar como no print */
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.55));
  transform: translateY(6px);
}

/* Responsivo: empilha e centraliza */
@media (max-width: 900px){
  .hero{
    padding: 54px 18px;
    align-items: flex-start;
  }

  .hero__inner{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__content p{
    max-width: 100%;
  }

  .hero__media{
    justify-content: flex-start;
  }

  .hero__media img{
    width: min(520px, 100%);
    transform: none;
  }
}
/* =========================
   SERVICES
========================= */
.services{
  padding: 64px 24px 84px;

}

.services__inner{
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services__header{
  text-align: center;
  margin-bottom: 38px;
}

.services__header h2{
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.services__header p{
  margin-top: 10px;
  color: rgba(235, 242, 255, 0.78);
  font-size: 15.5px;
}

/* Grid 4 colunas */
.services__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}

/* Card */
.service-card{
  background: transparent;
  padding: 0;
}

.service-card__img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  margin-bottom: 16px;
}

.service-card__img--dark{
  background: rgba(0,0,0,0.35);
}

.service-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3{
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  margin: 8px 0 10px;
}

/* Lista com bullets alinhados igual ao print */
.service-card ul{
  list-style: none;
  margin-top: 6px;
  display: grid;
  gap: 10px;
  padding-left: 0;
}

.service-card li{
  position: relative;
  padding-left: 18px;
  color: rgba(235, 242, 255, 0.76);
  font-size: 14.5px;
  line-height: 1.65;
}

.service-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(235, 242, 255, 0.70);
}

/* Responsivo */
@media (max-width: 1100px){
  .services__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .services{ padding: 54px 18px 70px; }
  .services__grid{ grid-template-columns: 1fr; }
  .service-card h3{ font-size: 20px; }
}
/* =========================
   DIFFERENTIALS
========================= */
.differentials{
  padding: 70px 24px 90px;

}

.differentials__inner{
  width: min(1180px, 100%);
  margin: 0 auto;
}

.differentials__title{
 padding-left: 0; /* remove o deslocamento */
  text-align: left;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 26px;
}
@media (max-width: 600px){
  .differentials__title{ text-align: center; }
}
/* Grid 3 colunas (6 cards) */
.differentials__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Card base */
.diff-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(7, 10, 24, 0.65);
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
  min-height: 182px;
  border: 2px solid rgba(96, 165, 250, 0.45); /* default azul */
}

/* Variações de borda */
.diff-card--blue{
  border-color: rgba(96, 165, 250, 0.55);
}
.diff-card--yellow{
  border-color: rgba(250, 204, 21, 0.65);
}

/* Topo com barra e ícone central */
.diff-card__top{
  position: relative;
  height: 54px;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 2px solid rgba(96, 165, 250, 0.45);
  display: grid;
  place-items: center;
}

.diff-card--yellow .diff-card__top{
  border-bottom-color: rgba(250, 204, 21, 0.55);
}

.diff-card__icon{
  font-size: 22px;
  line-height: 1;
  opacity: 0.95;
}

/* Conteúdo */
.diff-card__body{
  padding: 18px 18px 20px;
}

.diff-card__body h3{
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}

.diff-card__body p{
  color: rgba(235, 242, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
  max-width: 34ch;
}

/* Responsivo */
@media (max-width: 1050px){
  .differentials__grid{ grid-template-columns: repeat(2, 1fr); }
  .diff-card__body p{ max-width: 100%; }
}

@media (max-width: 600px){
  .differentials{ padding: 58px 18px 74px; }
  .differentials__grid{ grid-template-columns: 1fr; }
}
/* =========================
   TESTIMONIALS
========================= */
.testimonials{
  padding: 70px 24px 92px;
 
}

.testimonials__inner{
  width: min(1180px, 100%);
  margin: 0 auto;
}

.testimonials__title{
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 38px;
}

/* Grid */
.testimonials__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Card base */
.t-card{
  position: relative;
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: rgba(7, 10, 24, 0.62);
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
  min-height: 320px;
  overflow: visible;
  border: 2px solid rgba(250, 204, 21, 0.70); /* padrão amarelo */
}

/* Borda azul no card do meio */
.t-card--blue{
  border-color: rgba(96, 165, 250, 0.70);
}

/* Aspas nos cantos (fora do card) */
.t-card__quote{
  position: absolute;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  opacity: 0.95;
}

.t-card--yellow .t-card__quote{
  color: rgba(250, 204, 21, 0.95);
}
.t-card--blue .t-card__quote{
  color: rgba(96, 165, 250, 0.95);
}

.t-card__quote--tl{
  top: -22px;
  left: -12px;
}

.t-card__quote--br{
  bottom: -34px;
  right: -14px;
}

/* Estrelas */
.t-card__stars{
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: rgba(250, 204, 21, 0.95);
}

/* Texto */
.t-card__text{
  color: rgba(235, 242, 255, 0.80);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Autor e tempo */
.t-card__who{
  margin-top: auto;
  color: rgba(255,255,255,0.90);
  font-weight: 800;
  font-size: 14.5px;
}

.t-card__when{
  margin-top: 10px;
  color: rgba(235, 242, 255, 0.70);
  font-style: italic;
  font-size: 13.5px;
}

/* Responsivo */
@media (max-width: 1050px){
  .testimonials__grid{ grid-template-columns: 1fr; }
  .t-card{ min-height: auto; }
}
/* =========================
   CONTACT
========================= */
.contact{
  padding: 70px 24px 92px;
}

.contact__inner{
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

/* Título */
.contact__title{
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
}

/* Itens */
.contact__item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 16px 0;
}

.contact__text h3{
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
}

.contact__text p{
  color: rgba(235, 242, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 4px 0;
}

.contact__muted{
  color: rgba(235, 242, 255, 0.60);
  font-size: 13.5px;
}

/* Ícones (bolinha) */
.contact__icon{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.contact__icon--pink{
  background: radial-gradient(circle at 30% 30%, rgba(255, 70, 140, .9), rgba(255,255,255,0.06));
}

.contact__icon--gray{
  background: radial-gradient(circle at 30% 30%, rgba(220, 230, 255, .55), rgba(255,255,255,0.06));
}

/* Mapa */
.contact__right{
  display: grid;
  justify-items: center;
  gap: 22px;
}
/* Botão WhatsApp */
.contact__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-decoration: none;

  color: #0a0d1f;
  background: linear-gradient(180deg, #ffe15a 0%, #f6c500 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255, 230, 120, 0.55);

  transition: transform .18s ease, filter .18s ease;
}

.contact__cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.contact__cta:active{
  transform: translateY(0px);
}

.contact__cta-icon{
  font-size: 16px;
}

/* Responsivo */
@media (max-width: 980px){
  .contact__inner{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact__right{
    justify-items: stretch;
  }

  .contact__cta{
    justify-content: center;
  }
}
/* =========================
   CATALOG CAROUSEL
========================= */
.catalog{
  padding: 70px 24px 92px;
}

.catalog__inner{
  width: min(1180px, 100%);
  margin: 0 auto;
}

.catalog__header h2{
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 26px;
}

/* Carousel frame */
.catalog__carousel{
  position: relative;
  border-radius: 22px;
  padding: 18px 0 0;
}

/* O recorte deve ficar no "viewport" (carousel), não no track */
.catalog__carousel{
  position: relative;
  border-radius: 22px;
  padding: 18px 0 0;
  overflow: hidden; /* <<< AQUI */
}

.catalog__track{
  display: flex;
  gap: 0;
  overflow: visible;     /* <<< TIRA O HIDDEN DAQUI */
  border-radius: 0;      /* opcional */
  will-change: transform;
}
.catalog__slide{
  flex: 0 0 100%;        /* <<< ESSENCIAL */
  min-width: 100%;
}
/* Slide */
.catalog__slide{
  min-width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 22px 18px 28px;

  opacity: 0;
  transform: translateX(18px);
  transition: opacity .25s ease, transform .25s ease;
}

.catalog__slide.is-active{
  opacity: 1;
  transform: translateX(0);
}

/* Left image */
.catalog__shelf{
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

.catalog__shelf img{
  width: 100%;
  height: auto;
  display: block;
}

/* Right content */
.catalog__right{
  padding: 10px 8px;
}

.catalog__area{
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(235, 242, 255, 0.75);
  margin-bottom: 14px;
}

.catalog__desc{
  color: rgba(235, 242, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.85;
  max-width: 62ch;
  margin: 0 auto 18px;
  text-align: left;
}

/* Product grid */
.catalog__products{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px;
  margin-top: 10px;
}

.p-item{
  text-align: center;
}

.p-item img{
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
}

.p-item h4{
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}

.p-item p{
  color: rgba(235, 242, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 26ch;
}

/* Nav buttons */
.catalog__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.30);
  color: rgba(255,255,255,0.92);
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform .18s ease, filter .18s ease;
}

.catalog__nav:hover{ filter: brightness(1.06); }
.catalog__nav:active{ transform: translateY(-50%) scale(0.98); }

.catalog__nav--prev{ left: -8px; }
.catalog__nav--next{ right: -8px; }

/* Dots */
.catalog__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 6px;
}

.catalog__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  cursor: pointer;
}

.catalog__dot.is-active{
  background: linear-gradient(180deg, #ffe15a 0%, #f6c500 100%);
  border-color: rgba(255, 230, 120, 0.55);
}

/* Responsive */
@media (max-width: 980px){
  .catalog__slide{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px 10px 26px;
  }
  .catalog__nav--prev{ left: 8px; }
  .catalog__nav--next{ right: 8px; }
  .catalog__desc{ text-align: center; }
}

@media (max-width: 520px){
  .catalog__products{
    grid-template-columns: 1fr;
  }
}

/* Limita a prateleira e evita foto gigante */
.catalog__shelf{
  width: 100%;
  max-height: 560px;          /* ajuste aqui (ex: 480 / 520 / 600) */
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

.catalog__shelf img{
  width: 100%;
  height: 100%;              /* <<< ESSENCIAL */
  object-fit: cover;         /* corta o excesso sem deformar */
  object-position: center;   /* centraliza o corte */
  display: block;
}

/* =========================
   GLOBAL VARS + NAV FIX
========================= */
:root{
  --nav-h: 74px;
  --glass: rgba(7, 10, 24, 0.55);
  --stroke: rgba(255,255,255,0.12);
}

body{
  padding-top: var(--nav-h);
}

/* =========================
   TOPBAR (NAV)
========================= */
.topbar{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(3,5,18,0.88) 0%, rgba(3,5,18,0.55) 100%);
  border-bottom: 1px solid var(--stroke);
}

.topbar__inner{
  width: min(1180px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.topbar__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.topbar__logo{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.topbar__name{
  font-size: 16px;
}

.topbar__nav{
  display: flex;
  justify-content: center;
  gap: 18px;
}

.topbar__nav a{
  color: rgba(235,242,255,0.80);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.topbar__nav a:hover{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
}

.topbar__actions{
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: transform .18s ease, filter .18s ease;
}
.btn:hover{ filter: brightness(1.06); transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: linear-gradient(180deg, #ffe15a 0%, #f6c500 100%);
  color: #0a0d1f;
  border-color: rgba(255, 230, 120, 0.55);
}

.btn--ghost{
  background: rgba(255,255,255,0.06);
}

.topbar__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  font-size: 22px;
  cursor: pointer;
}

/* Mobile menu */
@media (max-width: 980px){
  .topbar__inner{
    grid-template-columns: auto auto auto;
  }

  .topbar__toggle{ display: grid; place-items:center; }

  .topbar__nav{
    position: fixed;
    top: var(--nav-h);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(3,5,18,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 22px 55px rgba(0,0,0,0.55);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .topbar.is-open .topbar__nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .topbar__nav a{
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
  }

  .topbar__actions{
    display: none; /* ações ficam nos botões flutuantes no mobile */
  }
}

/* =========================
   FLOATING SOCIAL BUTTONS
========================= */
.float-social{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  display: grid;
  gap: 12px;
}

.float-social__btn{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  transform: translateZ(0);
}

.float-social__btn:hover{
  transform: translateY(-4px);
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,0.35),
    inset 0 -10px 20px rgba(0,0,0,0.45),
    0 20px 45px rgba(0,0,0,0.65);
}.float-social__btn{
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,0.25),
    inset 0 -8px 18px rgba(0,0,0,0.35),
    0 15px 35px rgba(0,0,0,0.55);
  transition: all .25s ease;
}

/* WHATSAPP */
.float-social__btn--wa{
  background: linear-gradient(
    135deg,
    #25D366 0%,
    #1ebe57 40%,
    #128C7E 100%
  );
}

/* INSTAGRAM */
.float-social__btn--ig{
  background: linear-gradient(
    135deg,
    #f9ce34 0%,
    #ee2a7b 45%,
    #6228d7 100%
  );
}

.float-social__btn:hover{ filter: brightness(1.06); }
.float-social__btn:active{ transform: scale(0.98); }

@media (max-width: 520px){
  .float-social{ right: 12px; bottom: 12px; }
  .float-social__btn{ width: 52px; height: 52px; border-radius: 16px; }
}

/* =========================
   SMALL FIXES
========================= */
/* Centraliza o título "NOSSOS DIFERENCIAIS" */
.differentials__title{
  text-align: center !important;
  padding-left: 0 !important;
}


/* Garantir que as setas do carrossel fiquem clicáveis */
.catalog__nav{ z-index: 5; }
/* Card que envolve foto + mapa (substitui o antigo .contact__map como container) */
.contact__map-card{
  width: min(520px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);

  display: flex;
  flex-direction: column;
}

/* FOTO EM CIMA */
.contact__map-card .map-photo img{
  width: 100%;
  height: 240px;      /* ajuste como quiser */
  object-fit: cover;
  display: block;
}

/* MAPA EMBAIXO */
.contact__map-card .map-frame iframe{
  width: 100%;
  height: 260px;      /* ajuste como quiser */
  border: 0;
  display: block;
}