/* =======================
   Identidad Marpatech
   ======================= */
:root {
  --brand-dark: #333;

  --brand-primary: #0b2e4e;
  --brand-accent: #ffd700;
  --brand-accent-soft: rgba(255, 215, 0, 0.3);

  --brand-text: #ccc;
  --brand-text-soft: #999;

  --radius: 8px;
  --transition: 0.3s ease;
}
html,
body {
  height: 100%;
}
main,
.brand-main {
  flex: 1;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: #f8f9fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  transition: color var(--transition);
}

/* ===== Hero ===== */
.brand-hero {
  position: sticky;
  width: 100%;
  background: linear-gradient(90deg, #0b2c5d, #1c4f9c); /* azul corporativo */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}
.cover-image img {
  width: 100%;
  height: 110px; /* altura del banner */
  object-fit: cover; /* evita deformación */
  display: block;
}
/* Imagen full width */
.brand-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.header-inner {
  margin: 0 auto;
  min-height: 60px; /* altura mínima elegante */
}
/* ===== Banderas ===== */
.brand-flags {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.dropdown-toggle {
  cursor: pointer;
}

.brand-flags img {
  width: 42px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: white;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.brand-flags a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .brand-flags {
    top: 0.5rem;
    right: 0.5rem;
  }

  .brand-flags img {
    width: 34px;
  }
}
/* ===== Header ===== */
.brand-header {
  background: linear-gradient(180deg, var(--brand-dark-2), var(--brand-dark));
  border-bottom: 2px solid var(--brand-accent);
}
/* NAV INTERNO */
.nav-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}
/* =======================
   Navegación principal
   ======================= */
.brand-nav {
  background: linear-gradient(180deg, #061a50, #050b1b);
  border-bottom: 2px solid var(--brand-accent);
}

.brand-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 5px 14px;
  transition: all 0.25s ease;
}
.brand-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 40%;
  width: 0%;
  height: 3px;
  transition: width .25s ease;
}
.brand-nav .nav-link:hover::after {
  width: 100%;
}
.brand-nav .nav-link.active::after {
  width: 100%;
}

.brand-nav .nav-link:hover {
  color: var(--brand-accent) !important;
}

/* ===== Mega wrapper ===== */
.brand-mega-wrapper {
  position: relative;
}

/* Dropdown oculto */
.brand-mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

/* Mostrar mega menú */
.brand-mega-wrapper:hover .brand-mega-dropdown {
  display: block;
}

/* ===== Nivel 1 (Países) ===== */
.brand-menu > li {
  display: inline-block;
  position: relative;
}

.brand-menu > li > a {
  color: #0b2e4e;
  font-weight: 600;
  padding: 1rem;
  display: block;
}

/* ===== Nivel 2 (Categorías) ===== */
.brand-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f9fafb;
  min-width: 260px;
}

/* Mostrar categorías */
.brand-menu > li:hover > ul {
  display: block;
}

/* ===== Nivel 3 (Marcas) ===== */
.brand-menu li ul li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  min-width: 300px;
}

/* Mostrar marcas */
.brand-menu li ul li:hover > ul {
  display: block;
}

/* =======================
   Navegación principal
   ======================= */
nav.nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

nav.nav-link:hover {
  color: #ffd700; /* Dorado al pasar el mouse */
}

/* =======================
   Dropdowns
   ======================= */
.dropdown-menu {
  min-width: 260px;
  background-color: #130f49;
}

.dropdown-menu h6 {
  border-bottom: 1px solid var(--brand-accent-soft);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.dropdown-menu a.dropdown-item {
  color: #fff;
  padding: 8px 15px;
  transition:
    background 0.3s,
    color 0.3s;
}

.dropdown-menu a.dropdown-item:hover {
  background-color: #576fb1;
  color: #ffd700;
}

/* =======================
   Separación entre dropdowns
   ======================= */
nav > .dropdown {
  margin-right: 20px; /* Espacio horizontal entre países */
}

/* =======================
   Títulos de columnas dentro del dropdown
   ======================= */
.dropdown-menu h6 {
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 10px;
}
.dropdown-menu h6:hover {
  background-color: #576fb1;
  color: var(--brand-accent);
}

/* =======================
   Responsive: que no se vea aplastado
   ======================= */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  nav > .dropdown {
    margin-right: 0;
  }

  .dropdown-menu {
    background-color: var(--brand-dark-3);
    border-radius: var(--radius);
    border: 1px solid var(--brand-accent-soft);
    box-shadow: 0 10px 30px rgba(27, 21, 111, 0.708);
  }
  .dropdown-menu .dropdown-item {
    color: var(--brand-text);
    padding: 8px 16px;
  }

  .dropdown-menu .dropdown-item:hover {
    background-color: #576fb1;
    color: var(--brand-accent);
  }

  /* Separación países */
  nav > .dropdown {
    margin-right: 20px;
  }
}
.brand-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--brand-accent);
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .brand-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brand-section .row {
    gap: 20px 0;
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 16px 12px;
  }

  /* Sidebar arriba */
  .brand-section .col-lg-3 {
    order: 1;
    width: 100%;
  }

  /* Contenido abajo */
  .brand-section .col-lg-9 {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .brand-section {
    padding: 12px 8px;
  }
}

.brand-section h2,
.brand-section h3 {
  color: var(--brand-primary);
}
.btn-brand {
  background-color: var(--brand-accent);
  color: #000;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  padding: 8px 18px;
}

.btn-brand:hover {
  color: #000;
}

/* =======================
   Footer Marpatech
   ======================= */
.footer-marpa {
  background: linear-gradient(180deg, #130c4e, #0c0935);
  color: #ccc;
  padding: 35px 0;
  border-top: 3px solid #ffd700;
  font-size: 14px;
}
.footer-title {
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-marpa strong {
  color: #ffd700;
}

/* Contador */
.visitor-counter {
  font-size: 0.85rem;
}

.counter-box {
  margin-top: 6px;
  padding: 6px 10px;
  background-color: #1a1a1a;
  display: inline-block;
  border-radius: 6px;
  box-shadow: inset 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Fecha */
.footer-date {
  color: #999;
  font-style: italic;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .footer-marpa {
    text-align: center;
    padding: 25px 15px;
  }

  .footer-marpa h6 {
    margin-bottom: 10px;
  }

  .footer-marpa p {
    margin-bottom: 8px;
  }
}

/* ===== EXTRA SMALL ===== */
@media (max-width: 480px) {
  .footer-marpa {
    font-size: 13px;
  }

  .footer-title {
    font-size: 14px;
  }
}

/* =========================
   Sidebar
   ========================= */
.country-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  position: sticky;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.country-sidebar a {
  display: block;
  padding: 8px 10px;
  margin-bottom: 6px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.country-sidebar a:hover {
  background: #f1f5f9;
  color: var(--brand-accent) !important;
}

.country-sidebar a.active {
  background: #0d6efd;
  color: #fff;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 14px;
}
.country-sidebar a:hover {
  background: #f1f5f9;
}

.country-sidebar a.active {
  background: #0d6efd;
  color: #fff;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  #sidebarCollapse {
    display: block !important;
  }
}
@media (max-width: 991px) {
  #sidebarCollapse {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .country-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar-title {
    width: 100%;
    text-align: center;
  }

  .country-sidebar a {
    flex: 1 1 45%;
    text-align: center;
    font-size: 13px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
  }

  .country-sidebar a.active {
    border: none;
  }

  .brochure-box {
    width: 100%;
    margin-top: 16px;
  }

  .brochure-box img {
    max-width: 160px;
  }
}
@media (max-width: 480px) {
  .country-sidebar a {
    flex: 1 1 100%;
  }
}
a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
/* =========================
   Cards País
   ========================= */
.country-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f0b400;
}
.country-card:hover {
  transform: translateY(-4px);
}

.country-card-wide {
  text-align: center;
}

.img-2 {
  max-width: 160px;
  margin-bottom: 15px;
}

.country-card h3 {
  margin: 10px 0 5px;
  color: #222;
  font-weight: 700;
}

.country-link {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0056b3;
  text-decoration: none;
}

.country-link:hover {
  text-decoration: underline;
}

/* =========================
   Listas (info)
   ========================= */
.country-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.country-card ul li {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.4;
}

.country-card ul li strong {
  color: #000;
}

/* =========================
   Brochure imágenes
   ========================= */
.country-card a img.img-rounded {
  max-width: 140px;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.country-card a img.img-rounded:hover {
  transform: scale(1.05);
}
.brochure img {
  max-width: 80px;
  border-radius: 10px;
}

/* Mobile ajustes */
@media (max-width: 768px) {
  .info-brochure {
    flex-direction: column;
  }

  .info-lists {
    font-size: 14px;
  }
}
/* =========================
   Responsive
   ========================= */
@media (max-width: 991px) {
  .country-sidebar {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .country-card {
    padding: 20px;
  }

  .country-card ul {
    font-size: 14px;
  }
}
/* Contenedor flex: listas + brochure */
.info-brochure {
  display: flex;
  align-items: flex-start; /* alinea arriba */
  gap: 20px;
}

/* Listas ocupan más espacio */
.info-lists {
  flex: 1;
}

/* Brochure ocupa su tamaño natural y un poco más abajo */
.brochure {
  flex: 0 0 auto;
  margin-top: 20px; /* ajusta la separación vertical */
}

/* Brochure responsive: debajo en móvil */
@media (max-width: 767px) {
  .info-brochure {
    flex-direction: column;
    align-items: center;
  }

  .brochure {
    margin-top: 15px;
  }
}
/* CSS para submenús desplegables */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
/* CONTENIDO PRINCIPAL */
.brand-content {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* PANTALLAS GRANDES */
@media (min-width: 1400px) {
  .nav-inner,
  .brand-content {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-inner,
  .brand-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.container.my-4.brand-content {
  margin-bottom: 0 !important;
}
/* ===== Layout Sticky Footer ===== */

.layout-marpa {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.brand-main {
  flex: 1 0 auto;
}

.footer-marpa {
  flex-shrink: 0;
}

/* =========================
   SIDEBAR
========================= */

.country-sidebar a {
  display: block;
  padding: 12px 14px;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.country-sidebar a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateX(4px);
}

/* =========================
   CONTENIDO DERECHO
========================= */
.span9 {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  background: #f1f3f5;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
}
@media (max-width: 576px) {
  .breadcrumb img.flag-mini {
    width: 26px;
  }
}

.breadcrumb .active {
  color: #555;
}

/* banderitas flotantes */
.flotante_01 img {
  width: 28px;
  margin-left: 6px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* =========================
   TITULO
========================= */
.span9 h3 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

/* =========================
   TEXTO
========================= */
.span9 p {
  line-height: 1.7;
  color: #444;
  font-size: 1rem;
  text-align: justify;
}

/* =========================
   IMAGENES INFERIORES
========================= */
.span9 img.img-rounded {
  border-radius: 12px;
  width: 48%;
  margin: 10px 1%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.span9 img.img-rounded:hover {
  transform: scale(1.03);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .country-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .span9 {
    padding: 20px;
  }

  .span9 img.img-rounded {
    width: 100%;
    margin: 10px 0;
  }
}

.img-somos-grande {
  width: 100%;
  max-width: 350px;
}

@media (min-width: 992px) {
  .img-somos-grande {
    max-width: 520px;
  }
}
/* CONTENEDOR GENERAL */
.contacto-section {
  margin-top: 30px;
  margin-bottom: 40px;
}

/* SIDEBAR */
.contacto-sidebar {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.contacto-sidebar table {
  margin-bottom: 0;
}

.contacto-sidebar a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.contacto-sidebar a:hover {
  color: #c00;
}

/* CARD FORM */
.contacto-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* FORM */
.contacto-card legend {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}

.contacto-card input,
.contacto-card textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
}

.contacto-card textarea {
  resize: vertical;
  min-height: 120px;
}

/* BOTONES */
.contacto-card .btn {
  border-radius: 8px;
  padding: 10px 18px;
  margin-top: 10px;
}

/* ALERTA */
.contacto-alert {
  border-radius: 10px;
  margin-bottom: 20px;
}

/* BREADCRUMB */
.contacto-breadcrumb {
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-card {
    padding: 15px;
  }
}
.peru-section {
  margin-top: 30px;
  margin-bottom: 40px;
}

/* BROCHURE */
.brochure-box img {
  max-width: 180px;
}

/* DIVISIONES */
.division-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  transition: 0.3s;
}

.division-box:hover {
  background: #e9f2ff;
  transform: translateY(-3px);
}

.division-box h5 {
  font-weight: bold;
}
.peru-section {
  margin-top: 30px;
  margin-bottom: 40px;
}

/* SIDEBAR */
.peru-sidebar {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.peru-sidebar a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.2s;
}

.peru-sidebar a:hover {
  background: #e9f2ff;
  color: #004aad;
}

/* BROCHURE */
.brochure-box img {
  max-width: 180px;
}

.brochure-link {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* CARD PRINCIPAL */
.peru-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  line-height: 1.7;
  border-top: 4px solid #f0b400;
  max-width: 100%;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
  .peru-card {
    padding: 40px;
  }
}

.footer-payments img {
  width: 70px;
  margin: 5px;
}
.flag-mini {
  width: 32px;
  border-radius: 4px;
  height: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  line-height: 1.6;
}

.contact-box strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}
.contact-box a {
  text-decoration: none;
  font-weight: 600;
  color: #0d6efd;
}

.footer-peru {
  background: linear-gradient(180deg, #130c4e, #0c0935);
  color: #ccc;
  border-top: 3px solid #ffd700;
}

.footer-peru h5 {
  letter-spacing: 1px;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: 0.2s;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-pay {
  width: 70px;
  height: auto;
  opacity: 0.9;
  transition: 0.3s;
}

.footer-pay:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-peru a.footer-link {
  color: #b5d2ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-peru a.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-peru h5,
.footer-peru h6 {
  color: #fff;
}

.footer-peru hr {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-peru .small {
  line-height: 1.6;
}

.footer-marpa .footer-link {
  color: #bbb;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.footer-marpa .footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.country-sidebar a {
  display: block;
  padding: 8px 10px;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.country-sidebar a:hover {
  background: #e9ecef;
}

.country-sidebar a.active {
  background: #0d6efd;
  color: #fff;
}

/* TITULOS */
.page-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.page-desc {
  color: #6c757d;
  margin-bottom: 30px;
}

/* DIVISIONES */
.division-block {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .division-block h4 {
    font-size: 18px;
  }
}

.division-block h4 {
  font-size: 20px;
  font-weight: 600;
  border-left: 4px solid #0d6efd;
  padding-left: 10px;
}

/* TABLAS */
.brand-table {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.brand-table tr:hover {
  background: #f5f7fa;
}

.logo-cell img {
  width: 110px;
  object-fit: contain;
}

.brand-name a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.brand-name a:hover {
  text-decoration: underline;
}

/* BREADCRUMB */
.breadcrumb-box {
  background: #f8f9fb;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
/* =========================
   TABLAS FABRICANTES RESPONSIVE
========================= */

.brand-table td,
.brand-table th {
  vertical-align: middle;
  font-size: 14px;
}

/* Tablet */
@media (max-width: 992px) {
  .brand-table td {
    font-size: 13px;
  }

  .logo-cell img {
    width: 90px;
  }
}

/* Móvil */
@media (max-width: 768px) {
  .brand-table,
  .brand-table tbody,
  .brand-table tr,
  .brand-table td {
    display: block;
    width: 100%;
  }

  .brand-table tr {
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .brand-table td {
    border: none;
    padding: 6px 0;
    text-align: left !important;
  }

  .logo-cell img {
    width: 120px;
    margin-bottom: 8px;
  }

  .brand-name a {
    font-size: 16px;
  }
}
/* BOTÓN FLOTANTE ARRIBA IZQUIERDA */
.sidebar-fab {
  position: fixed;
  top: 230px;
  left: 15px;
  z-index: 1055;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* SOLO QUITAMOS ESPACIOS, NO DISPLAY */
@media (max-width: 991px) {
  .sidebar-col {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ancho del lateral en móvil */
@media (max-width: 991px) {
  #sidebarCollapse {
    width: 260px;
  }
}
@media (max-width: 991px) {
  .sidebar-col {
    padding: 0 !important;
    margin: 0 !important;
    height: 0;
  }
}
.noticias-section h1 {
  font-size: 2.6rem;
}

.noticias-section .card {
  border-radius: 14px;
}

.noticias-section img {
  object-fit: cover;
}

.noticia-card img {
  height: 220px;
  object-fit: cover;
}

.noticia-card {
  transition: 0.3s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}
.country-card.small h6 {
  font-size: 14px;
}

.news-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.news-detail h1 {
  font-size: 2.2rem;
}
.video-slide {
  height: 420px !important; /* más grande que las imágenes */
}

.video-slide iframe {
  width: 100%;
  height: 100%;
}
