:root {
  --color-brand-dark: #cb8f0a;
  --color-brand: #f6be39;
  --color-heading: #125d96;
  --color-text: #455964;
  --color-text-dark: #4d575c;
  --color-bg: #f8f9fa;
  --color-white: #ffffff;
  --color-video-placeholder: #888888;
  --font-family: "Inter", sans-serif;
  --color-header-bg: #f2f2f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--color-bg);
  min-height: 100vh;
  color: var(--color-text);
}

.landing-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header común */
.landing-header {
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow:
    0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.landing-header .logo img,
.landing-header .logo svg {
  height: 34px;
  width: auto;
  display: block;
}

.landing-header .center-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 20px 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-header .center-badge img,
.landing-header .center-badge svg,
.landing-header .center-badge video {
  width: 140px;
  height: auto;
  display: block;
}

/* Footer común */
.landing-footer {
  background: var(--color-header-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.landing-footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-footer .footer-brand {
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
}

.landing-footer .footer-copy {
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 12px;
}

.landing-footer .footer-right {
  display: flex;
  gap: 24px;
}

.landing-footer .footer-right a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: opacity 0.2s;
}

.landing-footer .footer-right a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .landing-header {
    padding: 0 20px;
  }

  .landing-header .center-badge {
    display: none;
  }

  .landing-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}
