/*
 * style-marcas.css — Nerilan S.A.
 * CSS para páginas de marcas (Milka, Oreo, Tang, etc.)
 * Contiene: preloader, header, navbar, footer + estilos propios
 * NO contiene reglas globales del style.css que rompen layouts
 */

/* ============================================================
   DEL STYLE.CSS ORIGINAL: preloader, header, navbar, footer
   ============================================================ */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #418ebb;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #1B213B;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #418ebb;
}

#header .logo img {
  max-height: 40px;
}


/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #418ebb;
}

.get-started-btn:hover {
  background: #418ebb;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #418ebb;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #418ebb;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #418ebb;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #418ebb;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:#161e38;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background:#1B213B;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #418ebb;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #418ebb;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #418ebb;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #418ebb;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  color: white;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #418ebb;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}



.social img {
 width: 25%;
 margin: 5px;
}




.imgAbout img{
  border-radius: 5px;
  
}

@media (max-width: 575px) {
  .row .sacarMargenForm {
    margin-top: -100px;
  }
}


.row .sacarMargenFormGde{
  margin-top: -50px;
}

@media (max-width: 767px) {
  .sacarPieChiquito {
    font-size: 12PX;
  }
}

@media (max-width: 532px) {
  .sacarPieChiquito {
    font-size: 10PX;
  }
}

@media (max-width: 617px) {
  .sacarMargenZona {
    margin-top: -35px !important;
  }
}

.cta .cta-btn-sorteo {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: rgb(192, 54, 54);
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.float {
  position: fixed; bottom: 30px; right: 30px;
  width: 54px; height: 54px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 999;
  transition: transform .2s; text-decoration: none;
}
.float:hover { transform: scale(1.1); }
.my-float { font-size: 26px; color: #fff; line-height: 1; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root { --mp: #6b2fa0; --mp-light: #8b45c8; --mp-pale: #f3eafa; }

/* Reset seguro — SOLO dentro de .marca-page */
.marca-page * { box-sizing: border-box; }
.marca-page img {
  max-height: none !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  border-radius: 0 !important;
  width: auto !important;
}

/* ============================================================
   HERO
   ============================================================ */
.marca-hero {
  margin-top: 74px;
  padding: 70px 0 80px;
  text-align: center;
  overflow: hidden;
}
.marca-hero .breadcrumb-nav {
  font-size: .82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.marca-hero .breadcrumb-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.marca-hero .breadcrumb-nav a:hover { color: #fff; }
.marca-hero .logo-marca {
  display: block;
  margin: 0 auto 24px;
  max-height: 90px !important;
  max-width: 220px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
}
.marca-hero h1 {
  color: #fff !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
}
.marca-hero p {
  color: rgba(255,255,255,.88) !important;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
}
.marca-hero .badge-oficial {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 7px 22px;
  font-size: .85rem;
}

/* ============================================================
   SECCIÓN PRODUCTOS
   ============================================================ */
.mp-section {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  overflow: visible !important;
}
.mp-section .section-title h2 {
  text-transform: none !important; font-size: 2rem !important;
  font-weight: 700 !important; color: #1a1a2e !important;
  letter-spacing: 0 !important; line-height: 1.2 !important;
  padding: 0 !important; margin-bottom: 10px !important;
}
.mp-section .section-title h2 span { color: var(--mp) !important; }
.mp-section .section-title { text-align: center !important; }
.mp-section .section-title p { color: #777 !important; font-size: 1rem !important; text-align: center !important; }

/* ============================================================
   BUSCADOR Y FILTROS
   ============================================================ */
.mp-search-wrap { position: relative; max-width: 400px; margin: 0 auto 24px; }
.mp-search-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #aaa; }
.mp-search-wrap input {
  width: 100%; padding: 10px 16px 10px 38px;
  border: 1.5px solid #ddd; border-radius: 30px;
  font-size: .92rem; outline: none; font-family: 'Poppins', sans-serif;
  background: #fff; color: #333;
}
.mp-search-wrap input:focus { border-color: var(--mp); }
.mp-filtros { text-align: center; margin-bottom: 36px; }
.mp-filter-btn {
  display: inline-block !important; padding: 7px 20px; margin: 4px;
  border: 1.5px solid #ddd !important; border-radius: 30px;
  background: #fff !important; color: #555 !important; font-size: .88rem;
  cursor: pointer; transition: all .2s; font-family: 'Poppins', sans-serif;
}
.mp-filter-btn:hover, .mp-filter-btn.active {
  background: var(--mp) !important; color: #fff !important; border-color: var(--mp) !important;
}

/* ============================================================
   CARDS
   ============================================================ */
.mp-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  overflow: hidden; transition: transform .25s, box-shadow .25s; height: 100%;
}
.mp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(107,47,160,.15); }
.mp-card .mp-img-wrap {
  background: var(--mp-pale) !important; padding: 24px 16px;
  min-height: 190px; display: flex !important;
  align-items: center !important; justify-content: center !important;
  cursor: zoom-in; overflow: hidden;
}
.mp-card .mp-img-wrap img {
  max-height: 150px !important; max-width: 100% !important;
  width: auto !important; height: auto !important;
  object-fit: contain !important; opacity: 1 !important;
  filter: none !important; transform: none !important;
  border-radius: 0 !important; transition: transform .3s;
}
.mp-card:hover .mp-img-wrap img { transform: scale(1.05) !important; }
.mp-card .mp-card-body { padding: 16px; }
.mp-badge {
  display: inline-block; background: var(--mp-pale); color: var(--mp);
  font-size: .72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 8px; text-transform: uppercase;
}
.mp-card h5 { font-size: .95rem !important; font-weight: 600 !important; color: #1a1a2e !important; margin-bottom: 4px; }
.mp-card p  { font-size: .82rem !important; color: #777 !important; margin: 0; }
.mp-no-results { display: none; text-align: center; padding: 60px 0; width: 100%; color: #aaa; }
.mp-no-results i { font-size: 3rem; color: #ddd; display: block; margin-bottom: 12px; }

/* ============================================================
   STATS
   ============================================================ */
.mp-stats { padding: 50px 0; margin-top: 50px; }
.mp-stat-item { text-align: center; color: #fff; }
.mp-stat-item .stat-num { font-size: 2.4rem !important; font-weight: 700; color: #fff !important; }
.mp-stat-item .stat-label { font-size: .88rem; opacity: .85; color: #fff !important; }

/* ============================================================
   INFO SEO
   ============================================================ */
.mp-info { padding: 70px 0; background: #f8f9fa; }
.mp-info h2 { color: #1a1a2e !important; font-weight: 700 !important; margin-bottom: 20px; font-size: 1.8rem !important; }
.mp-info p  { color: #555 !important; line-height: 1.8; }
.mp-info-img { background: var(--mp-pale); border-radius: 12px; height: 320px; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   CTA Y OTRAS MARCAS
   ============================================================ */
.mp-cta { padding: 60px 0; background: #fff; text-align: center; }
.mp-cta h2 { color: #1a1a2e !important; font-weight: 700 !important; font-size: 1.8rem !important; margin-bottom: 12px; }
.mp-cta p  { color: #777 !important; margin-bottom: 28px; }
.btn-mp { background: var(--mp); color: #fff !important; padding: 12px 32px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: background .2s; display: inline-block; }
.btn-mp:hover { background: var(--mp-light); color: #fff !important; }
.btn-mp-outline { border: 2px solid var(--mp); color: var(--mp) !important; padding: 11px 32px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: all .2s; display: inline-block; }
.btn-mp-outline:hover { background: var(--mp); color: #fff !important; }
.mp-otras { padding: 50px 0; background: #f8f9fa; text-align: center; }
.mp-otras h3 { color: #1a1a2e !important; font-weight: 700; margin-bottom: 24px; }
.mp-marca-chip {
  display: inline-block; padding: 8px 22px; margin: 6px;
  border: 1.5px solid #ddd; border-radius: 30px; color: #555;
  text-decoration: none; font-size: .88rem; transition: all .2s;
}
.mp-marca-chip:hover { border-color: var(--mp); color: var(--mp); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 95px; right: 80px; width: 40px; height: 40px;
  background: var(--mp); color: #fff; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  z-index: 998; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s; text-decoration: none;
}
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover  { background: var(--mp-light); color: #fff; }
.back-to-top i { color: #fff !important; font-size: 1rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#mp-lb {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92); z-index: 99999;
  align-items: center; justify-content: center;
}
#mp-lb.open { display: flex !important; }
#mp-lb > img {
  max-width: 88vw !important; max-height: 82vh !important;
  width: auto !important; height: auto !important;
  object-fit: contain !important; border-radius: 8px !important;
  opacity: 1 !important; filter: none !important;
  transform: none !important; display: block !important;
}
#mp-lb-x {
  position: fixed !important; top: 18px !important; right: 22px !important;
  font-size: 2rem !important; color: #fff !important; cursor: pointer;
  background: rgba(255,255,255,0.2) !important;
  width: 44px !important; height: 44px !important; border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  z-index: 100000 !important; line-height: 1 !important;
}
#mp-lb-x:hover { background: rgba(255,255,255,0.35) !important; }
#mp-lb-prev, #mp-lb-next {
  position: fixed !important; top: 50% !important; transform: translateY(-50%) !important;
  font-size: 2.5rem !important; color: #fff !important; cursor: pointer;
  background: rgba(255,255,255,0.15) !important;
  width: 50px !important; height: 50px !important; border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  z-index: 100000 !important; user-select: none;
}
#mp-lb-prev { left: 14px !important; right: auto !important; }
#mp-lb-next { right: 14px !important; left: auto !important; }
#mp-lb-caption {
  position: fixed !important; bottom: 20px !important;
  left: 50% !important; transform: translateX(-50%) !important;
  color: rgba(255,255,255,0.85) !important; font-size: .9rem !important;
  font-family: 'Poppins', sans-serif; white-space: nowrap; z-index: 100000 !important;
}
#mp-lb-counter {
  position: fixed !important; top: 22px !important;
  left: 50% !important; transform: translateX(-50%) !important;
  color: rgba(255,255,255,0.6) !important; font-size: .8rem !important;
  font-family: 'Poppins', sans-serif; z-index: 100000 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .marca-hero h1 { font-size: 1.8rem !important; }
  .mp-stat-item .stat-num { font-size: 1.8rem !important; }
  #mp-lb-prev { left: 6px !important; }
  #mp-lb-next { right: 6px !important; }
}


/* ============================================================
   FOOTER + BODY FULL WIDTH FIX
   ============================================================ */
html {
  overflow-x: hidden !important;
}
body {
  overflow-x: hidden !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  position: relative !important;
  box-sizing: border-box !important;
}
#footer .footer-top {
  width: 100% !important;
}

/* AOS fix — evitar que las animaciones creen espacio visual en el inicio */
[data-aos] { opacity: 1 !important; transform: none !important; }
.marca-hero { margin-bottom: 0 !important; }
.mp-section { margin-top: 0 !important; }

/* ============================================================
   FOOTER FIXES — tipografía, links, fondo pegado
   ============================================================ */
body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
html {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#footer,
#footer .footer-top,
#footer > div:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* Tipografía Raleway en todo el footer */
#footer,
#footer * {
  font-family: "Raleway", sans-serif !important;
}
/* Sin subrayado en links del footer */
#footer a,
#footer a:hover {
  text-decoration: none !important;
}
/* Viñetas footer */
#footer .footer-links ul li {
  display: flex !important;
  align-items: center !important;
  padding: 8px 0 !important;
}
#footer .footer-links ul li i {
  padding-right: 6px !important;
  color: #418ebb !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: inline-block !important;
}

/* Eliminar bullets nativos del browser en footer */
#footer .footer-links ul {
  list-style: none !important;
  padding-left: 0 !important;
}
#footer .footer-links ul li::before {
  display: none !important;
}

/* Footer padding-top para separar de las cards */
#footer {
  margin-top: 40px !important;
}

/* Flecha › de las viñetas */
#footer .footer-links ul li .footer-arrow {
  font-size: 20px !important;
  color: #418ebb !important;
  margin-right: 6px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}


#footer .footer-info .sacarPieChiquito { color: #fff !important; }
#footer .credits a { color: #418ebb !important; }
