/* fondo */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  overflow-x: hidden;
  overflow-y: auto;
  
  /* Tipografía y color actualizados */
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Peso normal */
  font-size: 14px;
  color: #666666;
  line-height: 1.80857;
}





/* ===== RESET CRÍTICO ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* ===== HEADER BASE ===== */
.header {
  width: 100%;
  padding: 0px 20px;
  background: linear-gradient(45deg, #000000, #000000d4, #000000af, #0000008b, #00000091);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  color: rgb(255, 255, 255);
  height: 60px;
}

/* LOGO */
.logo img {
  width: 100px;
  height: 100px;
}

/* MENÚ DESKTOP */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 17px;
  padding: 8px 12px;
  border-radius: 6px;
}

/* HOVER */
nav ul li a:hover {
  background: rgba(255, 255, 255, 0);
}

/* OCULTOS POR DEFECTO */
.menu-btn,
.close-btn {
  display: none;
}

/* ================== MÓVIL ================== */
@media (max-width: 900px) {

  .header {
    justify-content: center;
  }

  /* HAMBURGUESA IZQUIERDA */
  .menu-btn {
    display: block;
    position: absolute;
    left: 15px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  /* LOGO CENTRADO */
  .logo img {
    width: 90px;
  }

  /* MENÚ OCULTO ARRIBA */
nav ul {
  position: fixed;
  inset: 0;
  height: 100dvh; /* IMPORTANTE */
  background: linear-gradient(45deg, #000000, #1f1e1e, #616161, #616161d0, #616161b8);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.4s ease;
  transform: translateY(-100%);
  pointer-events: none;
  z-index: 999;
}


nav ul.show {
  transform: translateY(0);
  pointer-events: auto;
}


  /* BOTÓN CERRAR */
  .close-btn {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 34px;
    color: white;
    cursor: pointer;
  }

  nav ul li a {
    font-size: 22px;
  }
}

/* ================== TELÉFONOS PEQUEÑOS ================== */
@media (max-width: 360px) {

  .menu-btn {
    font-size: 26px;
  }

  .logo img {
    width: 80px;
  }

  nav ul li a {
    font-size: 20px;
  }
}




/*titulo*/
.hero-text {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 50px 0 70px;
}

.split-text-container {
  display: flex;
  font-size: 4.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  overflow: hidden;
  gap: 20px;
}

.text-part {
  display: inline-block;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.text-part.left {
  transform: translateX(-200%);
  animation-name: slide-in-left;
}

.text-part.right {
  transform: translateX(200%);
  animation-name: slide-in-right;
}
@keyframes slide-in-left {
  to { transform: translateX(0); }
}

@keyframes slide-in-right {
  to { transform: translateX(0); }
}


@media (max-width: 768px) {
  .hero-video {
    height: 60vh;
  }

  .hero-video video {
    width: 95%;
  }

  .split-text-container {
    font-size: 2.8rem;
    flex-direction: column;
    text-align: center;
  }
}




/* MARCO */
.marco {
  aspect-ratio: 3 / 2;
  border: 4px solid;
  background-color: #fff;
  position: relative;
  transition: 0.15s ease;
  cursor: pointer;
  padding: 5% 5% 15% 5%;
  
}

.marco::before,
.marco::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid;
  background-color: #fff;
  z-index: -1;
  transition: 0.15s ease;
}

.marco::before {
  transform: translateY(-2%) rotate(-6deg);
}

.marco::after {
  transform: translateY(2%) rotate(6deg);
}

/* IMAGEN */
.image {
  width: 100%;
  height: 100%;
  border: 4px solid;
  background-color: #eee;
  aspect-ratio: 1 / 1;
}

/* WARNING */
.browser-warning {
  margin-bottom: 4rem;
}

@supports (aspect-ratio: 1 / 1) {
  .browser-warning {
    display: none;
  }
}

@media (max-width: 768px) {
  .stack-container {
    flex-direction: column;
    align-items: center;
  }

  .stack {
    width: 90%;
    max-width: 320px;
  }
}




/* TARJETA BRUTALISTA */
.brutalist-section{
width:100%;
padding:140px 20px;
display:flex;
justify-content:center;
}

.brutalist-card {
  width: 320px;
  border: 2px solid #52bec0b7;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 2px 1px 0 #52bec0b7;
  font-family: 'Gotham', sans-serif;
}

.brutalist-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #52bec0b7;
  padding-bottom: 1rem;
}

.brutalist-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #52bec0b7;
  padding: 0.5rem;
}

.brutalist-card__icon svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: #fff;
}

.brutalist-card__alert {
  font-weight: 900;
  color: #000;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.brutalist-card__message {
  margin-top: 1rem;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 2px solid #52bec0b7;
  padding-bottom: 1rem;
  font-weight: 600;
}

.brutalist-card__actions {
  margin-top: 1rem;
}

.brutalist-card__button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid #52bec0b7;
  background-color: #fff;
  color: #000;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 5px 5px 0 #52bec0b7;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 1rem;
}

.brutalist-card__button--read {
  background-color: #000;
  color: #fff;
}

.brutalist-card__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s;
}

.brutalist-card__button:hover::before {
  left: 100%;
}

.brutalist-card__button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.brutalist-card__button--mark:hover {
  background-color: #52BEC0;
  border-color: #52BEC0;
  color: #fff;
  box-shadow: 7px 7px 0 #000000;
}

.brutalist-card__button:active {
  transform: translate(5px, 5px);
  box-shadow: none;
}
.brutalist-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .brutalist-grid {
    flex-direction: column;
    align-items: center;
  }
}




/*insta*/

.instagram-feed{
width:100%;
max-width:1400px;
margin:120px auto;
padding:0 40px;
}

.instagram-header{
text-align:center;
margin-bottom:50px;
}

.instagram-header h2{
font-size:40px;
font-weight:800;
}

.instagram-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.instagram-post{
border-radius:12px;
overflow:hidden;
}

.instagram-post img,
.instagram-post video{
width:100%;
height:100%;
object-fit:cover;
transition:.3s;
}

.instagram-post:hover img{
transform:scale(1.05);
}



/* =========================
SECCION DE NOTICIAS CARRUSEL
========================= */

.seccion_de_noticias{
width:100%;
background:#eeeded9d;
padding:120px 0;
}

.seccion_de_noticias_container{
position:relative;
max-width:1200px;
margin:auto;
}

/* FLECHAS LIMPIAS (SIN FONDO) */

.seccion_de_noticias_arrow_right,
.seccion_de_noticias_arrow_left{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:40px;
color:#878686;
cursor:pointer;
z-index:20;
user-select:none;

/* 🔥 quitamos todo esto */
background:none;
padding:0;
border-radius:0;

transition:0.3s;
}

.seccion_de_noticias_arrow_right:hover,
.seccion_de_noticias_arrow_left:hover{
color:#000; /* opcional: efecto hover */
}

.seccion_de_noticias_arrow_right{
right:10px;
}

.seccion_de_noticias_arrow_left{
left:10px;
}

/* carrusel */

.seccion_de_noticias_items{
position:relative;
height:420px;
overflow:hidden;
cursor:grab;
}

.seccion_de_noticias_item{
position:absolute;
height:80%;
display:none;
transition:all .8s ease;
}

/* posiciones */

.img_left{
display:block!important;
left:50%;
opacity:.4;
transform:translateX(-100%) scale(.9);
z-index:0;
}

.img_right{
display:block!important;
left:50%;
opacity:.4;
transform:translateX(0%) scale(.9);
z-index:0;
}

.img_center{
display:block!important;
left:50%;
transform:translateX(-50%) scale(1);
z-index:10;
}

/* hover PRO */

.img_center:hover{
transform:translateX(-50%) scale(1.05);
}

/* responsive */

@media(max-width:900px){
.seccion_de_noticias_items{
height:300px;
}
}

@media(max-width:600px){
.seccion_de_noticias_items{
height:200px;
}
}





/* =========================
EVENTOS PRÓXIMOS
========================= */
.eventos_proximos_section{
width:100%;
padding:160px 0;
position:relative;
background:#ffffff;
}

.eventos_proximos_contenedor{
margin-top:120px;
position:relative;
width:100%;
display:flex;
justify-content:center;
min-height:600px;
overflow:visible;
font-family:Arial;
}

/* CARD */

.eventos_proximos_card{
width:320px;
border-radius:20px;
overflow:hidden;
background:#fff;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
position:absolute;
transition:.5s;
}

/* IMAGEN */

.eventos_proximos_card_image{
display:flex;
justify-content:center;
align-items:center;
height:220px;
padding:0;
overflow:hidden;
background:none;
}

.eventos_proximos_card_image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.35s;
}

.eventos_proximos_card_image img:hover{
transform:scale(1.05);
}

/* CONTENIDO */

.eventos_proximos_card_content{
padding:25px;
display:grid;
grid-template-rows:auto auto 1fr auto;
min-height:240px;
}

/* FECHA */

.evento_fecha{
display:block;
font-size:14px;
font-weight:600;
color:#666;
margin-bottom:10px;
}

/* UBICACIÓN */

.location{
font-size:14px;
margin-top:10px;
color:#444;
}

/* BOTÓN UNIRME */

.eventos_proximos_join_button{
display:block;
margin-top:20px;
margin-bottom:25px;
padding:12px 16px;
background:#52BEC0;
color:#fff;
text-align:center;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.eventos_proximos_join_button:hover{
background:#3aa5a7;
}

/* NAVEGACIÓN */

.eventos_proximos_card_navigation{
display:flex;
justify-content:space-between;
align-items:center;
}

/* DOTS */

.eventos_proximos_dot{
height:10px;
width:10px;
background:#bbb;
border-radius:5px;
margin:0 5px;
display:inline-block;
}

.active-dot{
background:#333;
width:30px;
}

/* BOTONES */

.eventos_proximos_buttons{
display:flex;
gap:20px;
}

.eventos_proximos_next_button,
.eventos_proximos_previous_button{
border-radius:50%;
width:42px;
height:42px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
z-index:20;
}

.eventos_proximos_next_button{
background:#272727;
color:#fff;
border:none;
}

.eventos_proximos_previous_button{
background:#fff;
border:1px solid #272727;
}

/* =========================
POSICIONES DEL CARRUSEL
========================= */

.eventos_proximos_principal{
left:calc(50% - 160px);
transform:scale(1);
z-index:10;
}

.eventos_proximos_siguiente{
left:calc(50% + 220px);
transform:scale(.85);
filter:blur(2px);
z-index:8;
}

.eventos_proximos_siguiente2{
left:calc(50% + 440px);
transform:scale(.7);
filter:blur(6px);
z-index:6;
}

.eventos_proximos_anterior{
left:calc(50% - 380px);
transform:scale(.85);
filter:blur(2px);
z-index:8;
}

.eventos_proximos_anterior2{
left:calc(50% - 600px);
transform:scale(.7);
filter:blur(6px);
z-index:6;
}

/* ZONAS CLICK */

#eventos_proximos_div_previous{
position:absolute;
width:260px;
height:100%;
right:calc(50% + 180px);
cursor:pointer;
}

#eventos_proximos_div_next{
position:absolute;
width:260px;
height:100%;
left:calc(50% + 180px);
cursor:pointer;
}

.eventos_proximos_ocultar{
display:none;
}


/* =========================
EVENTOS RESPONSIVE TABLET
========================= */

@media (max-width:1024px){

.eventos_proximos_contenedor{
min-height:520px;
}

.eventos_proximos_card{
width:300px;
}

.eventos_proximos_principal{
left:calc(50% - 150px);
}

.eventos_proximos_siguiente{
left:calc(50% + 180px);
transform:scale(.8);
}

.eventos_proximos_anterior{
left:calc(50% - 330px);
transform:scale(.8);
}

.eventos_proximos_siguiente2,
.eventos_proximos_anterior2{
display:none;
}

}


/* =========================
EVENTOS RESPONSIVE MOBILE
========================= */

@media (max-width:768px){

.eventos_proximos_contenedor{
margin-top:80px;
min-height:auto;
padding:0 20px;
}

.eventos_proximos_card{
position:relative;
width:100%;
max-width:360px;
margin:auto;
}

.eventos_proximos_principal{
left:auto;
transform:none;
}

.eventos_proximos_siguiente,
.eventos_proximos_siguiente2,
.eventos_proximos_anterior,
.eventos_proximos_anterior2{
display:none;
}

#eventos_proximos_div_previous,
#eventos_proximos_div_next{
display:none;
}

.eventos_proximos_card_image{
height:200px;
}

.eventos_proximos_card_content{
padding:20px;
}

.eventos_proximos_buttons{
justify-content:center;
width:100%;
}

.eventos_proximos_next_button,
.eventos_proximos_previous_button{
width:46px;
height:46px;
}

}






/*contenido*/
.card {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  line-height: 1.6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);

  
}


.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px;
  border-radius: 22px;
  color: #ffffff;
  overflow: hidden;
  background: #52BEC0;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  
}

.content::before {
  position: absolute;
  content: "";
  top: -4%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%);
  background: #ced8ff;
  z-index: -1;
  transform-origin: bottom;


  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content::after {
  position: absolute;
  content: "";
  top: -8%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%);
  background: #e7ecff;
  z-index: -2;
  transform-origin: bottom;
  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);

}

.content svg {
  width: 48px;
  height: 48px;
}

.content .para {
  z-index: 1;
  opacity: 1;
  font-size: 18px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .link {
  z-index: 1;
  color: #fea000;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .link:hover {
  text-decoration: underline;
}

.card:hover {
  transform: translate(0px, -16px);
}

.card:hover .content::before {
  rotate: -8deg;
  top: 0;
  width: 100%;
  height: 100%;
}

.card:hover .content::after {
  rotate: 8deg;
  top: 0;
  width: 100%;
  height: 100%;
}
/* ===== SECCIÓN ÉXITOS ===== */
.exitos-section {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 20px;
}

/* FILA */
.exito-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}



/* INVERTIR ORDEN */
.exito-row.reverse {
  flex-direction: row-reverse;
}


.video-box {
  width: 100%;
  max-width: 4480px;   /* ligeramente menor que la card */
  height: 240px; 
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;

}





/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .exito-row,
  .exito-row.reverse {
    flex-direction: column;
  }

  .video-box,
  .exito-row .card {
    width: 100%;
  }

  .video-box video {
    height: 220px;
  }
}







/* =========================
 REDES SOCIALES
========================= */
.social-bar {
  position: fixed;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 999;
}

/* IZQUIERDA */
.social-left {
  left: 20px;
}

/* DERECHA */
.social-right {
  right: 20px;
}

/* ICONOS */
.social-icon {
  width: 25px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;   /* ✅ totalmente transparente */
  border-radius: 0;           /* opcional: elimina forma circular */
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: none;           /* ✅ elimina halo/blanco */
}


.social-icon img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

/* HOVER */
.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.social-icon:hover img {
  transform: scale(1.15);
}

/* 🎵 TIKTOK – fondo blanco */
.social-icon.tiktok {
  background: transparent;
  box-shadow: none;
}

/* =========================
   WHATSAPP FLOTANTE
========================= */
.floating_btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* BOTÓN */
.contact_icon {
  background-color: #52BEC0;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  box-shadow: 0 0 0 0 #52BEC0;
  animation: pulsing 1.4s infinite;
  transition: transform 0.3s ease;
}

.contact_icon:hover {
  transform: scale(1.12);
}

/* TEXTO */
.text_icon {
  margin-top: 8px;
  color: #555555;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Gotham', sans-serif;
}

/* ANIMACIÓN PULSO */
@keyframes pulsing {
  0% {
    box-shadow: 0 0 0 0 #52BEC0;
  }
  70% {
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 768px) {
  .floating_btn {
    bottom: 30px;
    right: 20px;
  }

  .contact_icon {
    width: 56px;
    height: 56px;
    font-size: 30px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .floating_btn {
    bottom: 25px;
    right: 15px;
  }

  .contact_icon {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .text_icon {
    font-size: 12px;
  }
}


/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 768px) {
  .social-bar {
    bottom: 30px;
    gap: 14px;
  }

  .social-left {
    left: 18px;
  }

  .social-right {
    right: 18px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 46px;
    height: 46px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .social-bar {
    bottom: 25px;
    gap: 10px;
  }

  .social-left {
    left: 12px;
  }

  .social-right {
    right: 12px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon img {
    width: 44px;
    height: 44px;
  }
}

/* Celulares pequeños */
@media (max-width: 360px) {
  .social-icon {
    width: 34px;
    height: 44px;
  }

  .social-icon img {
    width: 42px;
    height: 42px;
  }
}


/* =========================
NOTICIAS INTERNAS
========================= */

.noticias_internas_section{
  background:#111;
  padding:120px 0;
}

.noticias_internas_wrapper{
  position:relative;
  max-width:1200px;
  margin:auto;
}

.noticias_internas_carrusel{
  display:flex;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:20px;
  gap:20px;
  scrollbar-width:none;
}

.noticias_internas_carrusel::-webkit-scrollbar{
  display:none;
}

/* CARD */

.noticias_internas_card{
  min-width:320px;
  background:#fff;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  cursor:pointer;
  transition:0.3s;
  overflow:hidden;
}

.noticias_internas_card:hover{
  transform:translateY(-10px) scale(1.02);
}

.noticias_internas_card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.noticia_contenido{
  padding:20px;
}

.noticia_contenido p{
  font-size:0.95rem;
  color:#333;
  line-height:1.6;
}

/* FLECHAS */

.noticias_internas_arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  font-size:40px;
  cursor:pointer;
  z-index:10;
}

#noticias_internas_left{ left:-30px; }
#noticias_internas_right{ right:-30px; }

/* POPUP */

.noticias_internas_popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
  padding:20px;
}

.noticias_internas_popup_content{
  position:relative;
  max-width:900px;
  width:100%;
}

.noticias_internas_popup img{
  width:100%;
  max-height:80vh;
  object-fit:contain;
  border-radius:15px;
}

/* BOTONES */

.popup_botones{
  display:flex;
  justify-content:space-between;
  margin-top:15px;
}

#descargar_img{
  background:#fff;
  color:#000;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-weight:bold;
}

#noticias_internas_close{
  background:#fff;
  color:#000;
  padding:10px 20px;
  border-radius:25px;
  cursor:pointer;
  font-weight:bold;
}

/* RESPONSIVE */

@media (max-width:768px){

  .noticias_internas_card{
    min-width:80%;
  }

  #noticias_internas_left{ left:5px; }
  #noticias_internas_right{ right:5px; }

}









/* =========================
SUBTÍTULOS DE SECCIÓN
========================= */

.section-header{
text-align:center;
margin-bottom:60px;
padding:0 20px;
}

.section-header h2{
font-size:2.5rem;
font-weight:800;
color:#52BEC0;
margin-bottom:10px;
letter-spacing:1px;
}

.section-header p{
font-size:1.1rem;
color:#555;
max-width:600px;
margin:auto;
line-height:1.6;
}

/* versión para fondos oscuros */

.section-header.dark h2{
color:#fff;
}

.section-header.dark p{
color:#ccc;
}

/* responsive */

@media(max-width:768px){

.section-header h2{
font-size:2rem;
}

.section-header p{
font-size:1rem;
}

}








/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 25px 0 15px;
  font-family: 'Gotham', sans-serif;
}

/* CONTENEDOR */
.footer-contenido {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* COLUMNAS */
.footer-col {
  width: 260px;
  font-size: 14px;
}

/* ===== BRAND ===== */
.footer-brand img {
  width: 85px;
  margin-bottom: 10px;
  border-radius: 10%;
}

.footer-brand h3 {
  font-size: 18px;
  margin: 0;
}

.footer-brand .slogan {
  display: block;
  font-size: 13px;
  color: #00FFFF;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
}

/* TITULOS */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 6px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* CONTACTO */
.footer-col p {
  margin: 6px 0;
  color: #ccc;
}

/* COPY */
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-contenido {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-brand img {
    margin: auto;
  }
}




/* ESPACIO GENERAL PARA TODAS LAS SECCIONES */
section{
padding-top:120px;
padding-bottom:120px;
}

/* HERO VIDEO (anula el padding del section) */
.hero-video{
padding-top:0;
padding-bottom:0;

width:100%;
height:75vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

/* VIDEO */
.hero-video video{
width:100%;
max-width:1200px;
height:100%;
object-fit:contain;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}