:root {
  --bg: #eef2f7;
  --card: rgba(255, 255, 255, 0.78);
  --card-border: rgba(11, 42, 92, 0.08);
  --text: #0f172a;
  --muted: #475569;
  --blue: #0f57c3;
  --blue-dark: #0b4191;
  --red: #e3343c;
  --red-dark: #bf1f27;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 87, 195, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(227, 52, 60, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.landing-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-card {
  width: min(1280px, 100%);
  min-height: calc(100vh - 48px);
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.hero-left {
  padding: 56px 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--blue);
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--blue);
}

.tagline {
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  max-width: 30ch;
}

.intro {
  margin: 0 0 24px;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.quick-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.point i {
  color: var(--red);
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #47df81);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.btn-email {
  background: linear-gradient(135deg, var(--blue), #2f7af1);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 87, 195, 0.22);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1rem;
}

.icon.phone {
  background: linear-gradient(135deg, var(--red), #ff636b);
}

.icon.email {
  background: linear-gradient(135deg, var(--blue), #4d8df5);
}

.contact-item small {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.social-link {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.tiktok {
  background: linear-gradient(135deg, #111111, #25f4ee);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #4e8df7);
}

.social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #ff5757);
}

.social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}

.footer-note {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-note a {
  color: var(--blue);
  font-weight: 800;
}

.hero-right {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #f1f5fb 0%, #e7eef9 100%);
}

.image-panel {
  position: absolute;
  inset: 0 0 0 22%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.hero-image {
  position: relative;
  z-index: 2;
  max-height: 94vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(15, 23, 42, 0.18));
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 1100px) {
  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    min-height: 520px;
    order: -1;
  }

  .image-panel {
    inset: 0 0 0 38%;
  }

  .hero-image {
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .landing-shell {
    padding: 14px;
  }

  .hero-card {
    border-radius: 24px;
    min-height: auto;
  }

  .hero-left {
    padding: 28px 22px 24px;
  }

  .hero-right {
    min-height: 360px;
  }

  .image-panel {
    inset: 0 0 0 35%;
  }

  .hero-image {
    max-height: 360px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .tagline {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero-right {
    min-height: 300px;
  }

  .hero-image {
    max-height: 300px;
  }

  .social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-item strong {
    font-size: 0.9rem;
  }
}