:root{
  --primary:#153F93;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --soft:#f9fafb;
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
}

a{text-decoration:none;color:inherit}
/*img{max-width:100%;display:block}*/
.container{max-width:var(--max);margin:auto;padding:0 24px}

section{padding:90px 0}
.section-soft{background:var(--soft)}
h1,h2,h3{line-height:1.2;margin:0 0 14px}
h2{font-size:clamp(24px,3vw,34px)}
p{margin:0 0 14px;color:var(--muted)}

/* ================= HEADER ================= */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--primary);
}
.header{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.party-logo{
  width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
}
.party-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.brand-name{
  color:#fff;
  font-weight:700;
  font-size:16px;
  line-height:1.2;
}
.brand-sub{
  color:rgba(255,255,255,.85);
  font-size:12px;
}

nav{
  display:flex;
  gap:22px;
}
nav a{
  font-size:14px;
  color:rgba(255,255,255,.85);
}
nav a:hover{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:6px;
}

header .btn{
  padding:12px 22px;
  background:#fff;
  color:var(--primary);
  border-radius:8px;
  font-weight:700;
  font-size:14px;
}

/* ================= HERO SLIDER ================= */
.hero-slider{
  position:relative;
  background:var(--soft);
  overflow:hidden;
}

.slide{
  position:relative;
  min-height:calc(50vh - 78px); /* TODOS igual */
  padding:0;
  display:none;
  overflow:hidden;
}


.slide.active{display:block}


.hero-grid{
  height:100%;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:flex-end;
}


.hero-text small{
  color:var(--primary);
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}

.hero-text h1{
  font-size:clamp(38px,4.5vw,56px);
  margin:14px 0;
}

.hero-text p{
  font-size:18px;
  color:var(--muted);
}
.hero-text{
	text-align: center;
}

.hero-grid{
  height:100%;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}


/* NUMERO 16 */
.big-number{
  font-size:150px;
  font-weight:900;
  color:var(--primary);
  line-height:1;
}

/* HERO MEDIA */
.hero-media{
  display:flex;
  justify-content:center;
  align-items:flex-end;
}

/* Miguel sube desde abajo */
.hero-photo{
  max-height:483px;
  transform:translateY(120%);
  opacity:0;
}

section#inicio {
    padding: 0px;
}

.slide.active .hero-photo{
  animation:riseUp 1.1s ease-out forwards;
}

@keyframes riseUp{
  from{transform:translateY(120%);opacity:0}
  to{transform:translateY(0);opacity:1}
}

/* LOGO SLIDE */
.logo-box{
  width:320px;
  height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-box img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

/* CONTROLES SLIDER */
.slider-controls{
  position:absolute;
  bottom:26px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
}
.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:2px solid var(--primary);
  background:transparent;
  cursor:pointer;
}
.dot.active{background:var(--primary)}

/* ================= SECCIONES ================= */
.section-title{
  max-width:740px;
  margin-bottom:30px;
}

/* GRIDS */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:26px;
}

.card h3{
  color:var(--primary);
  margin-bottom:10px;
}

/* TIMELINE */
.timeline{
  border-left:3px solid var(--primary);
  padding-left:22px;
}
.timeline-item{
  margin-bottom:18px;
}
.timeline-item strong{
  display:block;
  color:var(--primary);
  margin-bottom:4px;
}

/* GALERIA */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.photo{
  height:240px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
}

.photo img {
    width: 100%;
}

/* CONTACTO */
form{max-width:560px}
input,textarea{
  width:100%;
  padding:14px;
  border:1px solid var(--border);
  border-radius:10px;
  margin-bottom:14px;
  font-size:14px;
}
textarea{min-height:140px}

/* FOOTER */
footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  color: #fff;
  font-size: 13px;
  background: var(--primary);
}

/* RESPONSIVE */
@media(max-width:980px){
  nav{display:none}
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero-media{margin-top:20px}
  .hero-photo{max-height:227px}
  .logo-box{width:260px;height:260px}
  .grid-2,.grid-3,.gallery{grid-template-columns:1fr}
  a.btn {display: none;}
}

.music-btn{
  margin-left:12px;
  padding:14px 16px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.6);
  background:transparent;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  font-size:14px;
  transition:.2s;
}

.music-btn:hover{
  background:rgba(255,255,255,.15);
}

.music-btn.off{
  opacity:0.7;
}


/* ============================
   ARTÍCULOS / PRENSA
============================ */

.articles-scroll{
  display:flex;
  gap:20px;
  overflow-x:auto;
  padding:10px 4px 20px;
  scroll-snap-type:x mandatory;
}

.article-card{
  flex:0 0 340px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  scroll-snap-align:start;
  transition:.25s;
}

.article-card:hover{
  transform:translateY(-6px);
  border-color:rgba(21,63,147,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

/* ? IMAGEN SUPERIOR */
.article-img{
  width:100%;
  height:170px;
  border-radius:14px;
  overflow:hidden;
  background:rgba(21,63,147,.08);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.article-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s;
}

/* zoom suave al hover */
.article-card:hover .article-img img{
  transform:scale(1.05);
}

/* TITULO */
.article-card h3{
  font-size:16px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:10px;
}

/* EXTRACTO */
.article-card p{
  font-size:14px;
  line-height:1.5;
  color:var(--muted);
  margin-bottom:14px;
}

/* BOTÓN LEER ARTÍCULO */
.article-card a{
  display:inline-block;
  margin-top:10px;
  padding:10px 16px;
  border-radius:10px;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  font-size:14px;
  transition:.25s;
  text-align:center;
}

/* Hover elegante */
.article-card a:hover{
  background:#0f2f70;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(21,63,147,.25);
}


/* ============================
   NETFLIX SLIDER ARTÍCULOS
============================ */

.netflix-slider{
  position:relative;
  margin-top:25px;
}

/* Carrusel horizontal */
.articles-netflix{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 5px 25px;

  scrollbar-width:none;
}
.articles-netflix::-webkit-scrollbar{
  display:none;
}

/* Cards tamaño Netflix */
.article-card{
  flex:0 0 320px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  transition:.25s;
}

.article-card:hover{
  transform:scale(1.04);
  border-color:rgba(21,63,147,.4);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

/* Imagen */
.article-img{
  height:170px;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:16px;
  background:rgba(21,63,147,.08);
}

.article-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Botón Leer */
.article-card a{
  display:inline-block;
  margin-top:12px;
  padding:10px 16px;
  border-radius:10px;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  font-size:14px;
  transition:.25s;
}

.article-card a:hover{
  background:#0f2f70;
}

/* Flechas Netflix */
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  cursor:pointer;

  background:rgba(21,63,147,.92);
  color:#fff;
  font-size:26px;
  font-weight:900;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.2s;
  z-index:10;
}

.slider-btn:hover{
  background:rgba(21,63,147,1);
  transform:translateY(-50%) scale(1.08);
}

.slider-btn.left{
  left:-18px;
}

.slider-btn.right{
  right:-18px;
}

/* Responsive */
@media(max-width:980px){
  .slider-btn{
    display:none; /* en móvil swipe natural */
  }
}



/* HERO TEXT FADE IN */
.hero-text{
  opacity:0;
  transform:translateY(25px);
}

/* Solo aparece cuando el slide está activo */
.slide.active .hero-text{
  animation:fadeUp 1s ease-out forwards;
}

/* Keyframes */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.slide.active .hero-text{
  animation:fadeUp 0.9s ease-out forwards;
}

.slide.active .hero-photo{
  animation:riseUp 1.1s ease-out forwards;
  animation-delay:0.3s;
}
.hero-photo{
  animation-fill-mode:forwards;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px; /* separación pequeña */
}
img.logo-avanza {
    width: 30rem;
}
/* ================= VIDEO SPOT ================= */

.video-card{
  margin-top:30px;
  height:320px;
  border-radius:18px;
  background:linear-gradient(
    135deg,
    rgba(21,63,147,.12),
    rgba(21,63,147,.03)
  );
  display:flex;
  justify-content:center;
  align-items:center;
  border:1px solid rgba(21,63,147,.25);
}

.play-btn{
  padding:16px 28px;
  font-size:16px;
  font-weight:800;
  border:none;
  border-radius:12px;
  cursor:pointer;
  background:var(--primary);
  color:#fff;
  transition:.25s;
}

.play-btn:hover{
  transform:scale(1.05);
}

/* MODAL */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.video-modal.active{
  display:flex;
}

.video-box{
  width:min(900px,90%);
  background:#000;
  border-radius:16px;
  overflow:hidden;
  position:relative;
}

.video-box video{
  width:100%;
  height:auto;
  display:block;
}

.close-video{
  position:absolute;
  top:12px;
  right:12px;
  background:#fff;
  border:none;
  border-radius:50%;
  width:40px;
  height:40px;
  cursor:pointer;
  font-size:16px;
  font-weight:800;
}

/* ============================
   FEED SOCIAL CARDS
============================ */

.feed-card{
  flex:0 0 340px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  transition:.25s;
}

.feed-card:hover{
  transform:scale(1.04);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

/* Embed wrapper */
.feed-embed{
  border-radius:14px;
  overflow:hidden;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(21,63,147,.05);
}

.feed-title{
  font-weight:800;
  color:var(--primary);
  margin:12px 0 6px;
}

.feed-excerpt{
  font-size:14px;
  color:var(--muted);
}

/* ============================
   SOCIAL FEED NETFLIX STYLE
============================ */

#feed-slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 0;
}

.feed-card{
  flex:0 0 340px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.feed-embed iframe{
  width:100%;
  height:420px;
  border:none;
}

.feed-excerpt{
  padding:14px;
  font-size:14px;
  color:var(--muted);
}

/* ============================
   SOBRE MIGUEL PRESIDENCIAL
============================ */

.about-presidential{
  display:grid;
  grid-template-columns:0.9fr 1.4fr;
  gap:60px;
  align-items:center;
}

/* FOTO MIGUEL */
.about-photo{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:rgba(21,63,147,.06);
}

.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}

/* CONTENIDO */
.about-content h2{
  font-size:clamp(34px,4vw,54px);
  font-weight:900;
  color:var(--primary);
  margin-bottom:16px;
}

.about-content .lead{
  font-size:18px;
  line-height:1.65;
  max-width:620px;
  color:var(--muted);
  margin-bottom:35px;
}

/* BLOQUES */
.about-blocks{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* ITEM KEYNOTE */
.about-item{
  display:flex;
  gap:18px;
  padding:7px 20px;
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  transition:.25s;

  /* Animación inicial */
  opacity:0;
  transform:translateY(20px);
}

.about-item:hover{
  transform:translateY(-5px);
  border-color:rgba(21,63,147,.35);
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}

/* NUMERO */
.about-item span{
  font-size:20px;
  font-weight:900;
  color:rgba(21,63,147,.55);
  min-width:42px;
}

/* TITULOS */
.about-item h3{
  margin:0 0 6px;
  font-size:16px;
  font-weight:900;
  color:var(--primary);
}

/* TEXTO */
.about-item p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

/* ACTIVACIÓN DE FADE IN */
.about-item.visible{
  opacity:1;
  transform:translateY(0);
  transition:all .7s ease;
}

/* RESPONSIVE */
@media(max-width:980px){
  .about-presidential{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-photo{
    max-width:380px;
    margin:auto;
  }

  .about-item{
    text-align:left;
  }
}


/* ============================
   BLOQUE MARCA + ESCRIBE (JNE)
============================ */

.vote-graphic{
  display:flex;
  gap:18px;
  margin: 1rem;
  align-items: flex-end;
  justify-content: center;
}

.vote-box{
  width:150px;
  height:150px;
  border:3px solid var(--primary);
  border-radius:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  background:#fff;
}

.vote-box img{
  max-width:85px;
  max-height:85px;
  object-fit:contain;
}


/* ============================
   BOTÓN HERO DEBAJO DEL SLIDER
============================ */

.hero-video-btn{
  display:flex;
  justify-content:center;
  margin-top:18px;
  padding-bottom:30px;
}

.play-btn{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:14px 28px;
  font-size:15px;
  font-weight:800;
  border-radius:14px;
  cursor:pointer;
  transition:.25s;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
}

.play-btn:hover{
  transform:scale(1.05);
  background:#0f2f70;
}

/* Texto abajo */
.vote-box p{
  margin:8px 0 0;
  font-weight:900;
  font-size:15px;
  letter-spacing:.08em;
  color:#e11d48; /* rojo rosado */
}

/* Número */
.vote-num{
  font-size:72px;
  font-weight:900;
  color:var(--primary);
  line-height:1;
}

/* XENCIMA */
.vote-x{
  position:absolute;
  inset:0;
}

.vote-x::before,
.vote-x::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:120%;
  height:6px;
  background:#ff007a;
  border-radius:6px;
  transform-origin:center;
}

.vote-x::before{
  transform:translate(-50%,-50%) rotate(45deg);
}

.vote-x::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

/* Responsive */
@media(max-width:980px){
  .vote-graphic{
    justify-content:center;
  }

  .vote-box{
    width:130px;
    height:130px;
  }

  .vote-num{
    font-size:60px;
  }
}


/* ============================
   HERO MOBILE FIX (NO BREAK SLIDER)
============================ */
@media(max-width:980px){

  /* Mantener slides iguales */
  .slide{
    padding:70px 0 40px !important;
  }

  /* Grid en columna */
  .hero-grid{
    grid-template-columns:1fr !important;
    gap:20px !important;
  }

  /* Texto ocupa todo el ancho */
  .hero-text{
    width:100%;
    text-align:center;
    padding-top: 1rem;
  }
  
  .party-logo {
    width: 100px;
	height: 100px;
  }
  
  .brand-sub{
	  display: none;
  }

  /* Media sin espacio extra */
  .hero-media{
    margin-top:0 !important;
    padding:0 !important;
    display:flex;
    justify-content:center;
    align-items:flex-end;
  }

  /* Miguel más grande y pegado abajo */
  .hero-photo{
    max-height:55vh;
    width:auto;
    object-fit:contain;
    margin:0 auto;
  }
  
  img.logo-avanza {
		width: 100%;
	}
}


.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.video-modal.show{
  display:flex;
}

.video-box{
  width:min(900px,90%);
  background:#000;
  border-radius:18px;
  overflow:hidden;
  position:relative;
}

.video-box video{
  width:100%;
  display:block;
}

.close-btn{
  position:absolute;
  top:12px;
  right:12px;
  background:#fff;
  border:none;
  border-radius:50%;
  width:38px;
  height:38px;
  cursor:pointer;
  font-size:18px;
}


/* ============================
   ANIMACIÓN X (MARCA)
============================ */

/* Estado inicial */
.vote-x::before,
.vote-x::after{
  transform:translate(-50%,-50%) scaleX(0) rotate(45deg);
  opacity:0;
}

/* Cuando el slide está activo */
.slide.active .vote-x::before{
  animation:drawX1 .6s ease-out forwards;
}

.slide.active .vote-x::after{
  animation:drawX2 .6s ease-out forwards;
  animation-delay:.25s;
}

/* Línea 1 */
@keyframes drawX1{
  from{
    opacity:0;
    transform:translate(-50%,-50%) scaleX(0) rotate(45deg);
  }
  to{
    opacity:1;
    transform:translate(-50%,-50%) scaleX(1) rotate(45deg);
  }
}

/* Línea 2 */
@keyframes drawX2{
  from{
    opacity:0;
    transform:translate(-50%,-50%) scaleX(0) rotate(-45deg);
  }
  to{
    opacity:1;
    transform:translate(-50%,-50%) scaleX(1) rotate(-45deg);
  }
}
/* ============================
   ANIMACIÓN NÚMERO 16
============================ */

.vote-num{
  opacity:0;
  transform:scale(.7) translateY(15px);
}

/* Cuando el slide está activo */
.slide.active .vote-num{
  animation:numberPop .8s ease-out forwards;
  animation-delay:.55s;
}

@keyframes numberPop{
  from{
    opacity:0;
    transform:scale(.7) translateY(15px);
  }
  to{
    opacity:1;
    transform:scale(1) translateY(0);
  }
}
.vote-box p{
  opacity:0;
  transform:translateY(10px);
}

.slide.active .vote-box p{
  animation:fadeUp .6s ease forwards;
  animation-delay:.9s;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.slider-wrapper{
  position:relative;
}

.feed-netflix{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:12px 0;
}

/* ============================
   BADGE JNE OFICIAL
============================ */

.jne-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#BE1717;
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:10px 14px;
  border-radius:14px;
  margin-bottom:18px;
  transition:.25s;
}

.jne-badge img{
  height:26px;
  width:auto;
  object-fit:contain;
  filter:brightness(0) invert(1); /* blanco */
}

.jne-badge:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(190,23,23,.25);
}
@media(max-width:980px){
  .jne-badge{
    justify-content:center;
    margin:0 auto 16px;
  }
}

/* ============================
   HAMBURGUESA + NAV RESPONSIVE
============================ */

.hamburger{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}

.hamburger span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px 0;
  border-radius:2px;
  transition:.25s;
}

/* Nav desktop */
.nav{
  display:flex;
  gap:22px;
}

/* Mobile */
@media(max-width:980px){

  /* mostrar hamburguesa */
  .hamburger{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
  }

  /* ocultar nav horizontal */
  .nav{
    position:fixed;
    top:78px;              /* alto del header */
    left:0;
    right:0;
    background:var(--primary);
    padding:16px 24px 22px;
    display:none;
    flex-direction:column;
    gap:14px;
    z-index:999;
    border-top:1px solid rgba(255,255,255,.18);
  }

  .nav a{
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding:10px 8px;
    border-radius:10px;
  }

  .nav a:hover{
    background:rgba(255,255,255,.12);
    text-decoration:none;
  }

  /* estado abierto */
  .nav.open{
    display:flex;
  }

  /* animación icono hamburguesa a X */
  .hamburger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2){
    opacity:0;
  }
  .hamburger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
}
/* ============================
   HEADER ICON ONLY MOBILE
============================ */
@media(max-width:980px){

  /* Botones más compactos */
  .header-actions .music-btn,
  .header-actions .btn{
    padding:10px 12px;
    border-radius:12px;
    font-size:0; /* oculta texto */
  }

  /* Mostrar solo el icono */
  .header-actions i{
    font-size:16px;
    margin:0;
  }

  /* Botón contacto también como icono */
  .header-actions .btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
  }

  /* Reemplazar texto Contacto por icono */
  .header-actions .btn::before{
    content:"\f0e0"; /* icono mail */
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:16px;
    color:var(--primary);
  }

  /* Ocultar texto real */
  .header-actions .btn{
    color:transparent;
  }
}
/* ============================
   FOOTER SOCIAL LINKS
============================ */
/* ============================
   FOOTER SOCIAL (FONDO AZUL)
============================ */

footer{
  background:var(--primary);
  color:#fff;
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:18px;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  transition:.25s;
}

.footer-social a:hover{
  background:#fff;
  color:var(--primary);
  transform:translateY(-3px);
}

