:root {
  --curve-red: #a50011;
  --curve-red-dark: #8a000e;
  --curve-red-accent: #c40014;
  --white: #ffffff;
  --font: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.landing-page {
  min-height: 100vh;
  background: var(--curve-red);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  position: relative;
}

.landing-bg-circle {
  position: fixed;
  top: -18vh;
  right: -12vw;
  width: min(72vw, 520px);
  height: min(72vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12) 70%);
  pointer-events: none;
  z-index: 0;
}

.landing-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.landing-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: clamp(2rem, 8vw, 5rem) clamp(1.5rem, 6vw, 4.5rem);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  max-width: 640px;
}

.landing-link:hover .landing-cta {
  transform: translateX(4px);
}

.landing-link:hover .cta-text {
  background: rgba(255, 255, 255, 0.95);
}

/* Brand / logo */
.landing-brand {
  margin-bottom: clamp(2.5rem, 8vh, 4.5rem);
}

.logo-slot {
  display: inline-block;
  background: var(--white);
  padding: 0.85rem 1.1rem 0.65rem;
  max-width: 280px;
}

.logo-img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.logo-tagline {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--curve-red);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.brand-inquilinos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-dash {
  display: inline-block;
  width: 1.25rem;
  height: 2px;
  background: var(--white);
}

/* Hero copy */
.landing-hero {
  margin-bottom: clamp(2.5rem, 7vh, 4rem);
}

.hero-welcome {
  margin: 0 0 0.15rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-title strong {
  font-weight: 900;
}

.hero-subtitle {
  margin: 0;
  display: inline-block;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 700;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--white);
  line-height: 1.3;
}

/* CTA bar */
.landing-cta {
  display: inline-flex;
  align-items: stretch;
  background: var(--white);
  transition: transform 0.2s ease;
  max-width: 100%;
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  color: var(--curve-red);
  border-right: 2px solid var(--curve-red);
  flex-shrink: 0;
}

.cta-text {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 700;
  color: var(--curve-red);
  border-bottom: 2px solid var(--curve-red);
  white-space: nowrap;
  transition: background 0.2s ease;
}

@media (max-width: 480px) {
  .cta-text {
    white-space: normal;
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
  }
}
