/* =========================================================
   HEADER PRINCIPAL — CALLES DE ORO
   ========================================================= */

.cdo-site-header {
  min-height: 76px;
  padding: 10px 0;
  background-color: #485d83 !important;
  box-shadow: 0 4px 18px rgba(12, 38, 78, 0.2);
}

.cdo-site-header .cdo-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.cdo-flags {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  margin-right: 18px;
}

.cdo-flags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.cdo-flags img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.cdo-flags img:hover {
  transform: translateY(-2px);
}

.cdo-site-header .navbar {
  flex: 1;
  justify-content: flex-end;
}

.cdo-site-header .navbar > ul {
  align-items: center;
}

.cdo-site-header .navbar > ul > li > a {
  white-space: nowrap;
}

.cdo-site-header .navbar a {
  font-size: 14px;
}

.cdo-site-header .navbar .dropdown ul a {
  white-space: normal;
  line-height: 1.35;
}

.cdo-donate-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-left: 7px;
  padding: 10px 17px !important;

  border-radius: 0 54px 54px 54px !important;
  background: #ff9800 !important;
  color: #ffffff !important;

  font-size: 15px !important;
  font-weight: 700 !important;
  white-space: nowrap;

  box-shadow: -7px 7px 5px -4px rgba(0, 0, 0, 0.55);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cdo-donate-link:hover,
.cdo-donate-link:focus {
  background: #ffb000 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: -7px 9px 8px -4px rgba(0, 0, 0, 0.48);
}

.cdo-donate-link i {
  color: #ffffff;
  font-size: 19px;
}

.cdo-menu-icon {
  margin-right: 7px;
  color: #ff9800;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 991px) {
  .cdo-site-header {
    min-height: 70px;
    padding: 7px 0;
  }

  .cdo-site-header .cdo-header-container {
    min-height: 56px;
  }

  .cdo-flags {
    margin-right: 0;
  }

  .cdo-site-header .navbar-mobile .cdo-donate-link {
    width: calc(100% - 30px);
    margin: 12px 15px 18px;
    padding: 13px 17px !important;
    border-radius: 10px !important;
  }

  .cdo-site-header .navbar-mobile > ul > li > a {
    white-space: normal;
  }
}

@media (max-width: 575px) {
  .cdo-flags {
    gap: 7px;
  }

  .cdo-flags img {
    width: 27px;
    height: 27px;
  }
}