/* GENERAL */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR HORIZONTAL */
.navbar {
  background-color: #00BDFF;
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 20px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-left img.logo-text-img {
  height: 300px; 
  object-fit: contain;
  padding: 10px 0 0 0;
  margin-left: 0;
  display: flex;
  align-items: center;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-right {
  display: flex;
  gap: 30px;
}

.navbar-right a {
  font-size: 15px;
  font-weight: 500;
  color: #EBF7FE;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.navbar-right a:hover {
  color: #333;
}

/* DROPDOWN IDIOMA */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #EBF7FE;
  cursor: pointer;
  padding: 0;
}

.dropbtn i.fa-globe {
  margin-right: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  font-size: 14px;
  color: #222;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* FIRMA PNG */
.firma-sello {
  position: fixed;
  bottom: 60px;
  right: 5px;
  height: 90px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 5;
}

/* FOOTER */
footer {
  background-color: rgba(0,0,0,0.3);
  color: white;
  font-size: 16px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: normal;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .navbar-left img.logo-text-img {
    height: 80px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
