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

body {
  font-family: 'Montserrat', sans-serif;
  color: #1a2e6e;
  background-color: #fff;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5c800;
  padding: 0 2rem;
  height: 72px;
  border-bottom: 2px solid #e0b400;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 2rem;
}

.logo-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1a2e6e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero-section {
  width: 100%;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: calc(100vh - 72px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 46, 110, 0.72) 0%, rgba(26, 46, 110, 0.18) 60%, transparent 100%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 500px;
  width: 88%;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #f5c800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background-color: rgba(245, 200, 0, 0.15);
  border: 1px solid #f5c800;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.hero-title span {
  color: #f5c800;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
  line-height: 1.5;
  max-width: 360px;
}

.hero-divider {
  display: none;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #f5c800;
  color: #1a2e6e;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(245, 200, 0, 0.35);
}

.hero-btn:hover {
  background-color: #ffe033;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 200, 0, 0.5);
}

/* FOOTER TRANSPARENTE */
.site-footer-transparent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 0.75rem 2rem;
  z-index: 10;
  pointer-events: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  pointer-events: auto;
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f5c800;
}

.footer-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 860px;
  background: #1a2e6e;
  border: 1.5px solid rgba(245, 200, 0, 0.35);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.32);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

.cookie-text a {
  color: #f5c800;
  text-decoration: none;
  font-weight: 700;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-primary {
  background: #f5c800;
  color: #1a2e6e;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cookie-btn-primary:hover {
  background: #ffe033;
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 0.65rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header {
    justify-content: center;
  }

  .header-logo {
    position: static;
  }

  .header-title {
    display: none;
  }

  .logo-icon {
    height: 52px;
  }

  .hero-image {
    height: 100svh;
    object-position: 70% center;
  }

  .hero-image-wrapper {
    min-height: calc(100svh - 72px);
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(26, 46, 110, 0.65) 0%, rgba(26, 46, 110, 0.45) 100%);
  }

  .hero-card {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 92%;
    width: 92%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn {
    justify-content: center;
  }
}
