body {
  font-family: 'Poppins', sans-serif;
  background-color: #F2F2F2;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* CONTENEDOR INTERNO */
.container-header {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  height: 100%;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 45px;
  display: block;
}

/* MENÚ */
.menu {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Línea animada debajo */
.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #b51817;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #b51817;
}

.flecha {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  margin-left: 6px;
  font-size: 15px;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  padding: 15px 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.dropdown li {
  padding: 8px 20px;
}

.dropdown li a {
  font-size: 14px;
  color: #333;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* EFECTO AL HACER SCROLL */
.scrolled {
  height: 65px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

/* Efecto active */
.menu a {
  position: relative;
  color: #000; /* color por defecto */
  text-decoration: none;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #b51817;
  transition: width 0.3s ease;
}

/* Hover normal */
.menu a:hover::after {
  width: 100%;
}
.menu a:hover {
  color: #b51817;
}

/* Estilo para la página activa */
.menu a.active::after {
  width: 100%;
}
.menu a.active {
  color: #b51817;
}

/* ===== Footer ===== */
.site-footer {
  background: #F2F2F2;
  color: #000;
  padding: 70px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

/* FILA SUPERIOR */
.footer-top {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* COLUMNAS */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-item img {
  width: 28px;
  height: 28px;
}

.footer-title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-info {
  font-size: 15px;
  color: #ccc;
}

.footer-info a {
  color: #000;
  text-decoration: none;
}

.footer-info a:hover {
  color: #b51817;
}

.container-rrss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.container-rrss a img {
  width: 50px;
  transition: all .3s ease;
}

.container-rrss a img:hover {
  transform: translateY(-5px);
}

.circle {
  border-radius: 50%;
}

/* LOGO ABAJO */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.footer-bottom img {
  height: 45px;
  opacity: 0.9;
}

.credits p {
  text-align: center;
}

/* Traducciones */
.skiptranslate iframe {
  display: none !important;
}

#goog-gt-tt {
  display: none !important;
}

#google_translate_element .goog-te-gadget {
  color: transparent !important;
}

#main {
  padding-top: 30px;
}

#google_translate_element {
  text-align: center;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 22;
}

.goog-te-combo {
  color: white;
  background-color: black;
  border: 2px solid white;
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none;
}

@media (max-width: 1500px) {
  #google_translate_element {
    position: fixed;
    bottom: 20px;
    left: 20px;
    top: auto;
    right: auto;
    z-index: 22;
  }
}
