@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Títulos más grandes y dramáticos */
h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

/* Textos más bold */
.font-bold {
  font-weight: 800 !important;
}

.font-semibold {
  font-weight: 700 !important;
}

.text-4xl {
  font-size: 2.5rem;
  font-weight: 900;
}

.text-5xl {
  font-size: 3rem;
  font-weight: 900;
}

.text-6xl {
  font-size: 3.75rem;
  font-weight: 900;
}

.text-7xl {
  font-size: 4.5rem;
  font-weight: 900;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.animate-bounce { animation: bounce 2s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-float { animation: float 3s ease-in-out infinite; }

.hero-bg {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(12, 74, 110, 0.75) 50%, rgba(14, 116, 144, 0.85) 100%),
              url('../Panama-city-2026.png') center/cover no-repeat;
}

@keyframes caribbean {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background: linear-gradient(-45deg, #2dd4bf, #fb923c, #60a5fa, #ffffff, #f87171);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  animation: caribbean 4s ease infinite;
}

.gradient-text-panama {
  background: linear-gradient(-45deg, #34d399, #fb923c, #60a5fa, #ffffff, #f87171);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  animation: caribbean 3s ease infinite;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(52, 211, 153, 0.4);
}

.scale-hover:hover { transform: scale(1.05); }
.scale-tap:active { transform: scale(0.95); }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideLeft 0.6s ease forwards;
}

@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  animation: slideRight 0.6s ease forwards;
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

.stars { color: #fbbf24; }

.shadow-hover { transition: all 0.3s ease; }
.shadow-hover:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Navbar styles */
#navbar {
  background-color: transparent !important;
}

#navbar .nav-brand img {
  filter: brightness(0) invert(1);
}

#navbar.scrolled .nav-brand img {
  filter: brightness(1) invert(0);
}

#navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

#navbar.scrolled .nav-brand {
  color: #111827 !important;
}

#navbar.scrolled .nav-text .nav-link {
  color: #374151 !important;
}

#navbar.scrolled .nav-text .nav-link:hover {
  color: #2563eb !important;
}

#navbar.scrolled .nav-icon {
  color: #374151 !important;
}

#navbar.scrolled .lang-active {
  color: #2563eb !important;
}

#navbar.scrolled .mobile-nav-link {
  color: #374151 !important;
}

#navbar.scrolled .mobile-nav-link:hover {
  color: #2563eb !important;
}

/* Default navbar text colors */
.nav-brand {
  color: #ffffff !important;
}

.nav-text .nav-link {
  color: #ffffff !important;
}

.nav-text .nav-link:hover {
  color: #22d3ee !important;
}

.nav-icon {
  color: #ffffff !important;
}

.lang-active {
  color: #22d3ee !important;
  font-weight: bold;
}

.mobile-nav-link {
  color: #374151;
}

.mobile-nav-link:hover {
  color: #22d3ee;
}

/* Location card */
.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.location-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.country-flag {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Text colors */
.text-white { color: #ffffff !important; }
.text-blue-100 { color: #dbeafe !important; }
.text-blue-600 { color: #2563eb !important; }
.text-gray-900 { color: #111827 !important; }
.text-gray-600 { color: #4b5563 !important; }
.text-gray-500 { color: #6b7280 !important; }
.text-gray-400 { color: #9ca3af !important; }

/* Backgrounds */
.bg-transparent { background-color: transparent !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-white { background-color: #ffffff !important; }
.bg-gray-800 { background-color: #1f2937 !important; }
.bg-gray-900 { background-color: #111827 !important; }
