/*
Theme Name: Newsup Child
Template: newsup
*/




/*COLOR DE FONDO DEL ICONO CASA*/

.mobilehomebtn {
  background-color: transparent !important; /* o el color que quieras */
}

/* CAMBIO EL COLOR DE FONDO DE LOS ITEM DEL MENU*/
#navbar-wp .menu-item.current-menu-item,
#navbar-wp .menu-item.current-menu-item a,
#navbar-wp .menu-item.active,
#navbar-wp .menu-item.active a {
  background-color: transparent !important; /* o el color que prefieras */
}

/* Opcional: fondo al pasar el mouse */
/* Hover en el menú */
#navbar-wp .menu-item a:hover {
  background-color: #AEC1C6 !important;
}

/* Imagen del slider – mejor selección */
.mg-blog-post.back-img {
  background-position: top center !important;
  min-height: 600px !important;
}
.single-post .post-thumbnail {
  display: none !important;
}

/* sACAR ICONOS DEL SLIDER */
.mg-blog-post .post-form {
  display: none !important;
}
/* CAMBIAR FONDO DE ETIQUETA "CATEOGRIA" */
.newsup-categories.category-color-1 {
  background-color: #072736 !important; /* Cambiá este color por el que quieras */
  color: white !important;
}
/* CAMBIAR color del texto de la marquesina*/
.js-marquee a span {
  color: #072736 !important; /* Cambiá este color por el que desees */
}
/* CAMBIAR color de la flecha de la marquesin*/
.js-marquee a::before {
  content: "➤ "; /* Podés cambiarlo por cualquier símbolo */
  color: #072736 !important;
  font-weight: bold;
  margin-right: 8px;
}
/* CAMBIAR color de Latest Post*/

.bn_title {
  background-color: #072736 !important; }
/* CAMBIAR color del NAV*/
#navbar-wp {
  background-color: #072736 !important; /* Cambiá por el color que desees */
}
/* Saco la barra de arriba*/
.mg-head-detail {
  display: none !important;
}
/* Agrando tamaño del logo*/
.mg-nav-widget-area-back {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  min-height: 50px !important; /* Ajustá según tu gusto */
  background-size: cover !important; /* Asegura que la imagen de fondo escale bien */
}
/* Agrando tamaño del logo escritorio*/
@media (min-width: 992px) {
  .mg-nav-widget-area-back {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    min-height: 250px !important;
  }
}
/* Agrando tamaño del logo celular*/
@media (max-width: 767px) {
  .mg-nav-widget-area-back {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    
  }
}


/*NOTAS PEQUEÑAS*/

.mg-posts-sec-post {
  margin-bottom: 10px;
  padding: 10px 0;
}

.mg-post-thumb.md {
  height: 200px !important; /* Altura del thumbnail */
  min-height: 80px !important;
  background-size: cover !important;
  background-position: center !important;
}

.mg-sec-top-post .entry-title.title {
  font-size: 20px !important; /* Tamaño del título */
  line-height: 1.3 !important;
  margin-bottom: 4px;
}

.mg-sec-top-post .mg-blog-meta {
  font-size: 30px !important;
  color: #888;
}

.mg-sec-top-post p {
  font-size: 12px !important;
  line-height: 1.4 !important;
  margin: 0;
}
.mg-post-thumb .post-form {
  display: none !important;
}
.mg-post-thumb.md {
  background-size: cover !important;
  background-position: top center !important;
}
/*ocultamos ultimas noticias, popular y tendencia en celular*/
@media (max-width: 991px) {
  .top-right-area {
    display: none !important;
  }
}




/* Inserta logo como cabecera arriba del contenido */
body::before {
  content: "";
  display: block !important;
  background-image: url('https://www.portalatlanticosur.com/wp-content/uploads/2025/07/Atlantico-Sur-logo-2.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  height: 200px !important;
  background-color: #ffffff !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* Oculto cabecera Inicial */
.mg-nav-widget-area-back {
  background-image: none !important;
}
/* saco la cabecera inicial */
.mg-nav-widget-area-back {
  background-image: none !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}
/* saco triangulo de ultimas noticias */
.bn_title .title span {
  display: none !important;
}

.navbar.navbar-wp {
  background-color: #072736 !important;
}
/* OCULTAMOS COSAS */
a.homebtn {
  display: none !important;
}
.fa-bell {
  display: none !important;
}
.btn-bell {
  display: none !important;
}


/*CAMBIAR COLORES*/

.wp-block-heading {
  background-color: #072736 !important; /* Reemplazá con el color que quieras */
  padding: 10px;
  border-radius: 4px;
}


.wp-block-search__label{
    background-color: #072736 !important; /* Reemplazá con el color que quieras */
  padding: 10px;
  border-radius: 4px;
}


.mg-footer-copyright {
  background-color: #072736 !important; /* Fondo diferente o igual, como prefieras */
  color: white !important;
}

.mg-footer-copyright a {
  color: #cccccc !important; /* Enlaces más suaves, podés cambiar el color */
}



.simple-modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Fondo oscuro */
  display: flex;
  align-items: center;  /* CENTRAR VERTICAL */
  justify-content: center; /* CENTRAR HORIZONTAL */
}

.simple-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}


/*Stylo del modal*/

.simple-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.simple-modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  margin: auto;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.mg-footer-copyright {
  background-color: #072736;
  color: white;
}
