/* ═══════════════════════════════════════════════════════════
   INSTITUTO ITIC — Estilos principales
   Tipografía: Plus Jakarta Sans + Inter
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colores institucionales */
  --rojo:        #AF3336;
  --rojo-dark:   #8c2729;
  --rojo-light:  #d44447;
  --azul:        #384490;
  --azul-dark:   #2b3470;
  --azul-light:  #4d5ab3;
  --naranja:     #F9A132;
  --naranja-dark:#d4881e;
  --blanco:      #FEFEFE;

  /* Escala de grises */
  --gray-50:     #f8f9fb;
  --gray-100:    #eef0f5;
  --gray-200:    #dde1ec;
  --gray-300:    #c5cad8;
  --gray-400:    #9aa0b4;
  --gray-500:    #6b7289;
  --gray-600:    #4d5369;
  --gray-700:    #363c54;
  --gray-800:    #242a3e;
  --gray-900:    #141827;

  /* Textos */
  --text:        #1e2438;
  --text-muted:  #6b7289;
  --text-light:  #9aa0b4;

  /* Tipografía */
  --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Espaciado */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Sombras */
  --shadow-sm:   0 1px 3px rgba(56,68,144,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(56,68,144,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(56,68,144,.15), 0 4px 8px rgba(0,0,0,.08);
  --shadow-xl:   0 24px 60px rgba(56,68,144,.20);

  /* Transiciones */
  --transition:  all .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--blanco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ── Tipografía ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--azul);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(56, 68, 144, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: .875rem;
  text-decoration: none;
}
.nav-logo-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--naranja);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  color: white; font-size: 14px; overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-text { line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; color: var(--naranja); letter-spacing: .3px;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-size: 10px; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .3px;
}
.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  padding: .5rem .875rem; border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: white; background: rgba(255,255,255,.1);
}
.btn-inscribete {
  background: var(--naranja) !important; color: white !important;
  padding: .5rem 1.375rem !important; border-radius: var(--radius) !important;
  font-weight: 600 !important; transition: var(--transition) !important;
}
.btn-inscribete:hover { background: var(--naranja-dark) !important; }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  background: var(--azul);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: .25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(56,68,144,.95) 40%, rgba(56,68,144,.6));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 6rem 2rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(249,161,50,.15);
  border: 1px solid rgba(249,161,50,.4);
  color: #fbbf24;
  padding: .375rem 1rem; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 1.75rem;
  font-family: var(--font-display);
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--naranja); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; color: white; line-height: 1.08;
  margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.hero-title span { color: var(--naranja); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75); max-width: 540px;
  line-height: 1.75; margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-hero-primary {
  background: var(--naranja); color: white;
  padding: .9rem 2.25rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  transition: var(--transition); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-hero-primary:hover { background: var(--naranja-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-hero-outline {
  background: transparent; color: white;
  padding: .9rem 2.25rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border: 2px solid rgba(255,255,255,.3); transition: var(--transition); cursor: pointer;
}
.btn-hero-outline:hover { border-color: white; background: rgba(255,255,255,.05); }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat span:first-child {
  display: block; font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800; color: var(--naranja); line-height: 1;
}
.hero-stat span:last-child { font-size: 13px; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* ── SECCIONES ── */
.section { padding: 100px 2rem 80px; }
.section-alt { background: var(--gray-50); }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rojo);
  margin-bottom: .625rem; font-family: var(--font-display);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; color: var(--azul);
  margin-bottom: .75rem; line-height: 1.15;
}
.section-divider {
  width: 48px; height: 4px;
  background: var(--naranja); border-radius: 2px;
  margin: .875rem 0 1.75rem;
}
.section-center { text-align: center; }
.section-center .section-divider { margin: .875rem auto 1.75rem; }
.section-subtitle {
  font-size: 1.0625rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.75;
}
.section-center .section-subtitle { margin: 0 auto; }

/* ── BOTONES ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.375rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  transition: var(--transition); border: none; cursor: pointer;
  line-height: 1.4;
}
.btn-primary   { background: var(--rojo); color: white; }
.btn-primary:hover { background: var(--rojo-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--azul); color: white; }
.btn-secondary:hover { background: var(--azul-dark); transform: translateY(-1px); }
.btn-accent    { background: var(--naranja); color: white; }
.btn-accent:hover { background: var(--naranja-dark); }
.btn-outline   { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn-outline:hover { background: var(--azul); color: white; }
.btn-ghost     { background: var(--gray-100); color: var(--gray-700); }
.btn-ghost:hover { background: var(--gray-200); }
.btn-sm { padding: .4rem .875rem; font-size: 12px; }
.btn-lg { padding: .875rem 2.25rem; font-size: 16px; }

/* ── NOSOTROS ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-img {
  border-radius: var(--radius-xl); overflow: hidden;
  height: 440px; background: var(--gray-100);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.375rem 1.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex; align-items: flex-start; gap: 1rem;
  transition: var(--transition);
}
.about-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.about-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: rgba(249,161,50,.12); display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; color: var(--naranja);
}
.about-card h3 { font-size: 15px; font-weight: 700; color: var(--azul); margin-bottom: .375rem; }
.about-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── OFERTA EDUCATIVA ── */
.oferta-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  background: var(--gray-100); padding: .375rem;
  border-radius: var(--radius); width: fit-content;
  margin: 0 auto 2.5rem;
}
.oferta-tab {
  padding: .5rem 1.375rem; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none;
  background: transparent; color: var(--text-muted);
  font-family: var(--font-display);
}
.oferta-tab.active { background: var(--azul); color: white; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.program-card {
  background: white; border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition); cursor: pointer;
}
.program-card:hover { border-color: var(--naranja); box-shadow: var(--shadow); }
.nivel-badge {
  display: inline-flex; align-items: center;
  background: rgba(56,68,144,.08); color: var(--azul);
  font-size: 11px; font-weight: 700; padding: .25rem .7rem;
  border-radius: 100px; border: 1px solid rgba(56,68,144,.15);
  margin-bottom: .75rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .3px;
}
.program-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--azul); margin-bottom: .625rem; }
.program-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.program-meta { display: flex; gap: 1rem; font-size: 12px; color: var(--text-muted); margin-bottom: 1.25rem; }
.program-meta span { display: flex; align-items: center; gap: .375rem; }
.btn-program {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .625rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--naranja); border: 1.5px solid rgba(249,161,50,.4);
  background: transparent; transition: var(--transition); cursor: pointer;
}
.btn-program:hover { background: var(--naranja); color: white; border-color: var(--naranja); }

/* ── CONSULTORÍA ── */
#consultoria { background: var(--azul); }
#consultoria .section-title { color: white; }
#consultoria .section-label { color: rgba(249,161,50,.8); }
.consultoria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); transition: var(--transition); margin-bottom: .75rem;
}
.service-item:hover { background: rgba(249,161,50,.1); border-color: rgba(249,161,50,.3); }
.service-icon {
  width: 38px; height: 38px; background: rgba(249,161,50,.2);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.service-item h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: .2rem; }
.service-item p  { font-size: 12px; color: rgba(255,255,255,.5); }
.consultoria-img { border-radius: var(--radius-xl); overflow: hidden; height: 400px; background: rgba(255,255,255,.05); }
.consultoria-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── GALERÍA ── */
.gallery-tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.news-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.news-date { font-size: 12px; color: var(--naranja); font-weight: 700; margin-bottom: .5rem; font-family: var(--font-display); }
.news-card h3 { font-size: 15px; font-weight: 700; color: var(--azul); margin-bottom: .5rem; }
.news-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── EQUIPO ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.75rem; margin-top: 2rem; }
.team-card { background: white; border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.team-card:hover { border-color: var(--naranja); box-shadow: var(--shadow); }
.team-img { width: 100%; height: 220px; background: var(--gray-100); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 1.25rem; }
.team-body h3 { font-size: 15px; font-weight: 700; color: var(--azul); margin-bottom: .375rem; }
.team-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACTO ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-top: 3rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--gray-50);
  border-radius: var(--radius); margin-bottom: .75rem;
}
.contact-icon {
  width: 38px; height: 38px; background: var(--rojo);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
  flex-shrink: 0; color: white;
}
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--azul); margin-bottom: .2rem; }
.contact-item p  { font-size: 13px; color: var(--text-muted); }
.contact-form { background: var(--gray-50); border-radius: var(--radius-xl); padding: 2rem; }
.contact-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--azul); margin-bottom: .375rem; }
.contact-form > p { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--azul); text-transform: uppercase; letter-spacing: .4px; }
.form-group input, .form-group textarea, .form-group select {
  padding: .7rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 14px; color: var(--text); background: white; outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--azul);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.social-bar { display: flex; gap: .625rem; flex-wrap: wrap; margin-top: 1rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(175,51,54,.1); border: 1px solid rgba(175,51,54,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--rojo); transition: var(--transition); text-decoration: none;
}
.social-icon:hover { background: var(--rojo); color: white; transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* ── FOOTER ── */
footer { background: var(--azul-dark); color: rgba(255,255,255,.65); padding: 4.5rem 2rem 2rem; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: 13.5px; line-height: 1.8; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.125rem; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.5); margin-bottom: .5rem; cursor: pointer; transition: color .2s; }
.footer-col a:hover { color: var(--naranja); }
.footer-bottom { max-width: 1280px; margin: 1.75rem auto 0; display: flex; justify-content: space-between; font-size: 12px; }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--naranja); color: white; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ── WHATSAPP FLOTANTE ── */
.wa-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); text-decoration: none;
  transition: transform .2s;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #22c55e; color: white;
  padding: .75rem 1.5rem; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; z-index: 9999;
  opacity: 0; transition: all .3s; font-family: var(--font-display);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--rojo); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px){
  .about-grid, .consultoria-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px){
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(56,68,144,.98); backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem; gap: .25rem;
    border-bottom: 1px solid rgba(255,255,255,.1); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; font-size: 15px; width: 100%; }
  .section { padding: 80px 1.25rem 60px; }
  .hero-content { padding: 5rem 1.25rem 3rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-hero-primary, .hero-btns .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.75rem; }
  .about-img { height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media(max-width: 480px){
  .hero-stats { flex-direction: column; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
}

/* ── Google Maps embed ── */
.contact-map-embed{border-radius:16px;overflow:hidden;}
.contact-map-embed iframe{width:100%;height:300px;border:0;display:block;}
@media(min-width:900px){
  .contact-map-embed{grid-column:1/-1;}
  .contact-map-embed iframe{height:340px;}
}

.social-icon--miguia:hover        { background: #0088cc; color: white; }
.footer-social-link--miguia:hover { background: #0088cc; }
