:root{
  --bg: #0e0f10;
  --text: #e9e9ea;
  --muted: rgba(233,233,234,.78);
  --line: rgba(255,255,255,.12);
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --header-h: 76px;
  --accent: #9AD0FF;
  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(1200px 700px at 50% 20%, rgba(255,255,255,.06), transparent 60%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Para que el título de cada sección no quede debajo del header */
.section,
.hero-bottom{ scroll-margin-top: calc(var(--header-h) + 14px); }

/* ===== HEADER / NAV ===== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 24px;
}

.brand{
  color:#fff;
  text-decoration:none;
  letter-spacing:.35em;
  font-size: 18px;
}

.custom-logo-link{
  color:#fff;
  text-decoration:none;
  letter-spacing:.35em;
  font-size: 18px;
  display:inline-flex;
  align-items:center;
}
.custom-logo{ height: 28px; width:auto; }

.menu{
  display:block;
}

.menu-list{
  display:flex;
  align-items:center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li{ margin: 0; }

.menu a{
  color:#fff;
  text-decoration:none;
  font-size: 16px;
  font-weight: 500;
  opacity: .9;
}
.menu a:hover{ opacity: 1; }

/* Botón hamburguesa (oculto en desktop) */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 10001;
}

.nav-toggle__bar{
  display:block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}

/* cuando el header está abierto, hacemos la X */
.site-header.is-open .nav-toggle__bar:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.site-header.is-open .nav-toggle__bar:nth-child(2){
  opacity: 0;
}
.site-header.is-open .nav-toggle__bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE NAV */
@media (max-width: 900px){
  .nav-toggle{ display:block; }

  .menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 88px 18px 18px;

    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 10000;
  }

  .menu a{
    padding: 16px 10px;
    font-size: 18px;
  }

  
  .menu-list{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
.site-header.is-open .menu{
    transform: translateX(0);
  }
}

/* evita que el contenido quede tapado por el header fixed */
main{ padding-top: 0; }

/* ===== SECTION BASE ===== */
.section{
  padding: 110px 0 84px;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(255,255,255,.05), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.35));
}

.section-title{
  font-family: var(--font-heading);
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  height: 100vh;
  height: 100svh;        /* mejor en mobile moderno */
  min-height: 560px;     /* evita hero enano en pantallas raras */
  overflow: hidden;
}

/* el contenedor del video ocupa TODO el hero */
.hero-video{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* YouTube "cover" robusto:
   - el API puede reemplazar el <div id="ytHero"> por un <iframe id="ytHero">
   - YouTube suele inyectar width/height inline => usamos !important */
/* Video cover (HTML5 <video id="heroVideo"> or legacy #ytHero iframe) */
.hero-bg,
#ytHero,
iframe#ytHero{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.16);
  filter: saturate(1.06) contrast(1.06);
  z-index: 1;
}
.hero-bg--fallback{
  background: radial-gradient(900px 500px at 50% 30%, rgba(255,255,255,.08), transparent 60%),
              linear-gradient(135deg, rgba(255,255,255,.05), rgba(0,0,0,.0));
}
#ytHero iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Transición cinematográfica hacia el bloque 2 */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(11,12,14,0) 0%,
    rgba(11,12,14,.65) 55%,
    rgba(11,12,14,1) 100%
  );
  pointer-events:none;
  z-index: 10;
}

/* Botón sonido SIEMPRE dentro del hero */
.hero-sound{
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 20;

  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);

  transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.hero-sound:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.28);
  background: rgba(0,0,0,.45);
}

.hero-sound.is-hidden{
  opacity: 0;
  pointer-events: none;
}



/* ===== HERO BOTTOM ===== */
.hero-bottom{
  position: relative;
  margin-top: 0;
  padding-bottom: 110px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.35) 35%, rgba(0,0,0,.55)),
    radial-gradient(800px 320px at 50% 40%, rgba(255,255,255,.06), transparent 70%);
}

@media (max-width: 900px){
  .hero-bottom{ margin-top: -80px; }
}

.hero-tagline{
  margin: 0 0 46px;
  text-align: center;
  color: var(--muted);
  font-size: 40px;
  line-height: 1.45;
}

.awards{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin: 0 0 76px;
  opacity: .9;
}
.awards img{
  height: 40px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}

/* ===== CATEGORIES (3 círculos) ===== */
.categories{
  display: grid;
  width: min(980px, 100%);
  margin: 26px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 900px){
  .categories{
    grid-template-columns: 1fr;
    width: min(520px, 100%);
  }
}

.cat{
  position: relative;
  display: block;
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: #000;
  border: 0;
  box-shadow: var(--shadow);
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
}

.cat-media{
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.cat::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2;
}

.cat span{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: .02em;
  opacity: .9;
  text-shadow: 0 14px 40px rgba(0,0,0,.9);
  z-index: 3;
}



.cat-media video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  filter: saturate(.90) contrast(.96);
  pointer-events: none;
}
.cat:hover .cat-media video{ filter: saturate(1) contrast(1); }

.cat-media--fallback{
  background: radial-gradient(600px 300px at 50% 20%, rgba(255,255,255,.10), transparent 60%),
              linear-gradient(135deg, rgba(255,255,255,.05), rgba(0,0,0,.0));
}

/* YOUTUBE “cover” dentro de los círculos */
.cat-media--yt iframe{
  filter: saturate(.85) contrast(.95);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(2.4);
  border: 0;
  pointer-events: none;
}
.cat:hover .cat-media--yt iframe{ filter: saturate(1) contrast(1); }

/* ===== LATEST WORK ===== */
.work-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card{
  text-decoration: none;
  color: inherit;
}

.work-media{
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.work-video{
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  opacity: .88;
  transform: scale(1.01);
  transition: transform .35s ease, opacity .35s ease;
}

.work-card:hover .work-video{
  transform: scale(1.045);
  opacity: .98;
}

.work-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.00), rgba(0,0,0,.22));
  pointer-events:none;
}

.work-arrow{
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
}

.work-meta{
  padding: 14px 2px 0;
}

.work-meta h3{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.work-meta p{
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(233,233,234,.72);
}

.work-sub{ color: rgba(233,233,234,.55); }

.work-card:hover .work-arrow{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px){
  .work-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .section{ padding: 72px 0 64px; }
  .work-grid{ grid-template-columns: 1fr; }
  .work-video{ height: 210px; }
  .work-media{ box-shadow: 0 22px 60px rgba(0,0,0,.45); }
}

/* ===== SERVICES ===== */
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-lead{
  margin: 0;
  max-width: 560px;
  color: rgba(233,233,234,.70);
  line-height: 1.5;
  font-size: 14px;
}

.section--services{
  background:
    radial-gradient(1000px 420px at 60% 0%, rgba(255,255,255,.05), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.40));
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.service-card{
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(420px 220px at 30% 10%, rgba(255,255,255,.08), transparent 60%);
  opacity: .55;
  pointer-events:none;
}

.service-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(520px 240px at 30% 0%, rgba(255,255,255,.08), transparent 60%);
  opacity: .35;
  pointer-events:none;
}

.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.60);
}

.service-top{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  z-index: 1;
}

.service-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(233,233,234,.80);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 10px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.service-icon{
  font-size: 14px;
  color: rgba(255,255,255,.80);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
}

.service-title{
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.service-desc{
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(233,233,234,.72);
}

.service-list{
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-list li{
  font-size: 12px;
  color: rgba(233,233,234,.62);
  padding-left: 14px;
  position: relative;
}

.service-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.service-cta{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 12px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.30);
}

/* Featured / Highlight card */
.service-card--highlight{
  border-color: rgba(154, 208, 255, .55);           /* fallback visible */
  background: rgba(255,255,255,.04);
  box-shadow:
    0 0 0 1px rgba(154, 208, 255, .14),
    0 18px 50px rgba(0,0,0,.45);
  transform: translateY(-2px);
}

/* Glow overlay */
.service-card--highlight::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background: radial-gradient(
    900px circle at 20% 0%,
    rgba(154, 208, 255, .22),
    transparent 55%
  );
}

/* Make badge/icon slightly pop */
.service-card--highlight .service-badge{
  border-color: rgba(154, 208, 255, .35);
}

.service-card--highlight .service-icon{
  filter: drop-shadow(0 8px 18px rgba(154, 208, 255, .22));
}


/* Responsive */
@media (max-width: 1000px){
  .section-head{ flex-direction: column; align-items: flex-start; }
  .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* ===== NEWS ===== */
.section--news{
  background:
    radial-gradient(900px 420px at 40% 0%, rgba(255,255,255,.05), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.40));
}

.section-link{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 12px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.section-link:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.30);
}

.news-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.news-card{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.news-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
}

.news-link{
  display: block;
  padding: 18px 18px 16px;
  color: inherit;
  text-decoration: none;
}

.news-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.news-tag{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(233,233,234,.82);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 10px;
  background: rgba(0,0,0,.22);
}

.news-date{
  font-size: 12px;
  color: rgba(233,233,234,.60);
}

.news-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.94);
  letter-spacing: -0.01em;
}

.news-excerpt{
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(233,233,234,.72);
}

.news-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}

.news-read{
  font-size: 12px;
  color: rgba(255,255,255,.80);
}

.news-arrow{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

.news-card:hover .news-arrow{
  opacity: 1;
  transform: translateY(0);
}

.news-card--featured{ border-color: rgba(255,255,255,.16); }
.news-card--featured .news-tag{ border-color: rgba(255,255,255,.22); }

/* Responsive */
@media (max-width: 1000px){
  .news-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .news-grid{ grid-template-columns: 1fr; }
}
/* News thumbnails */
.news-media{
  position: relative;
  height: 160px;
  overflow: hidden;
  margin: -16px -16px 14px; /* full-bleed dentro del padding de .news-link */
  border-radius: 18px 18px 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.news-thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.news-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.65));
  pointer-events:none;
}

.news-thumb--fallback{
  width:100%;
  height:100%;
  background:
    radial-gradient(600px 240px at 30% 30%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(500px 300px at 70% 60%, rgba(154,208,255,.12), transparent 55%),
    rgba(255,255,255,.02);
}

/* ===== FOOTER ===== */
.site-footer{
  padding: 86px 0 0;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(255,255,255,.05), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.65));
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 28px;
  padding-bottom: 56px;
}

.footer-brand{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  letter-spacing: .35em;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-text{
  margin: 0 0 18px;
  color: rgba(233,233,234,.72);
  font-size: 13px;
  line-height: 1.6;
  max-width: 46ch;
}

.footer-title{
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.footer-list li{
  margin-bottom: 10px;
  color: rgba(233,233,234,.70);
  font-size: 13px;
}

.footer-label{
  display: inline-block;
  min-width: 74px;
  color: rgba(233,233,234,.55);
}

.footer-list a, .footer-links a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.footer-list a:hover, .footer-links a:hover{
  border-color: rgba(255,255,255,.35);
}

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

.footer-social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.social-btn{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 12px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-btn svg{
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.85);
}
.social-btn:hover svg{ fill: rgba(255,255,255,.95); }

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.24);
  background: rgba(0,0,0,.30);
}

.footer-cta{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: 12px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.30);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  background: rgba(0,0,0,.18);
}

.footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-copy{
  margin: 0;
  font-size: 12px;
  color: rgba(233,233,234,.62);
}

.footer-mini{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.footer-mini a{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-mini a:hover{ border-color: rgba(255,255,255,.28); }

.footer-dot{ color: rgba(255,255,255,.24); }

/* Responsive */
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom-inner{ flex-direction: column; align-items: flex-start; }
}


/* Work video fallback */
.work-video--fallback{
  width:100%;
  height:100%;
  background: radial-gradient(700px 350px at 50% 20%, rgba(255,255,255,.10), transparent 60%),
              linear-gradient(135deg, rgba(255,255,255,.05), rgba(0,0,0,.0));
}


/* ===== CONTACT STRIP ===== */
.section--contact{
  padding: 96px 0 96px;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(255,255,255,.06), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
  border-top: 1px solid rgba(255,255,255,.10);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.contact-meta{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap: 10px;
}
.contact-meta li{
  display:flex;
  gap: 10px;
  color: rgba(233,233,234,.74);
  font-size: 13px;
}
.contact-meta span{
  min-width: 76px;
  color: rgba(233,233,234,.55);
}
.contact-meta a{ color: rgba(255,255,255,.86); text-decoration:none; border-bottom:1px solid transparent; }
.contact-meta a:hover{ border-color: rgba(255,255,255,.30); }

.contact-right{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 18px;
}

.contact-alert{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
}

.contact-form{ display:grid; gap: 12px; }
.contact-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-field{ display:grid; gap: 6px; }
.contact-field span{ font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); }

.contact-field input,
.contact-field textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline: none;
}
.contact-field input:focus,
.contact-field textarea:focus{
  border-color: rgba(255,255,255,.26);
}

.contact-submit{
  justify-self: start;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.90);
  cursor:pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-submit:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.24);
  background: rgba(0,0,0,.30);
}

.contact-note{ margin: 4px 0 0; font-size: 12px; color: rgba(233,233,234,.62); }
.hp{ position:absolute; left:-9999px; opacity:0; }

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-row{ grid-template-columns: 1fr; }
}


/* ===== FLOATING ACTIONS ===== */

/* Hero bottom section continues below */
.hero-bottom .awards{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-bottom .awards a.award,
.hero-bottom .awards img{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hero-bottom .awards img{
  height:80px;        /* ajustá 28–44 según te guste */
  width:auto;
  margin-right: 40px;
  max-width:140px;
  object-fit:contain;
  opacity:.9;
  transition:opacity .2s ease, transform .2s ease;
}

.hero-bottom .awards a.award:hover img{
  opacity:1;
  transform:translateY(-1px);
}
