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

:root {
  --c-navy: #0F172A;
  --c-magenta: #E91263;
  --c-magenta-soft: #FFF0F6;
  --c-text-main: #1E293B;
  --c-text-muted: #64748B;
  --c-border: #E2E8F0;
  --c-bg: #F8FAFC;

  --font-main: 'Raleway', sans-serif;
  --font-display: 'Raleway', sans-serif;

  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

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

body, h1, h2, h3, h4, h5, h6, p, a, span, button, input, textarea, select, li {
  font-family: var(--font-main) !important;
}

/* Proteccion para Iconos FontAwesome */
.fas, .fab, .far, .fa-solid, .fa-brands, i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Accounts for fixed navbar */
  overflow-x: hidden;
}

body {
  background: white;
  color: var(--c-text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 80px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.text-hero {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-navy);
  letter-spacing: -0.04em;
}

@media (max-width: 768px) {
  .text-hero {
    font-size: 2.5rem;
  }
}

.text-h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .text-h2 {
    font-size: 2rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--c-magenta), #FF4D94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--c-magenta);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 27, 92, 0.2);
}

.btn-secondary {
  background: var(--c-navy);
  color: white;
}

.btn-ghost {
  color: var(--c-navy);
  border: 1px solid var(--c-border);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.badge-magenta {
  background: var(--c-magenta-soft);
  color: var(--c-magenta);
}
/* --- GLOBAL RESPONSIVE OVERRIDES --- */
@media (max-width: 768px) {
  :root {
    --radius-md: 12px;
    --radius-lg: 16px;
  }

  .section {
    padding: 40px 0;
  }

  .text-hero {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .text-h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .text-lead {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
