:root {
  --white: #fff;
  --purple: #341a34;
  --black: #000;
  --color-blue: #183348;
  --blue: #193348;

  --blue-gray: #eceff8;

  --violet: #2563eb;
  --indigo: #4f46e5;
  --blue-dark: #111827;

  --font-h1: 84px;
  --font-h2: 64px;
  --font-h3: 48px;
  --font-h4: 40px;

  --size-6px: 0.375rem;
  --size-8px: 0.5rem;
  --size-12px: 0.75rem;
  --size-16px: 1rem;
  --size-20px: 1.25rem;
  --size-24px: 1.5rem;
  --size-32px: 2rem;
  --size-40px: 2.5rem;

  --gradient-primary: linear-gradient(to bottom right, #2563eb, #4f46e5);
  --gradient-secondary: linear-gradient(135deg, #2563eb, #6366f1);
  --gradient-background: radial-gradient(circle, #f370631a 38%, #3a7bae1a);
  --gradient-background-2: linear-gradient(
    to bottom right,
    #f370631a 35%,
    #3a7bae1a
  );

  --foreground-light: #111827;
  --text-primary: #111827;

  /* Custom colors for badges and buttons */
  --badge-bg: #5048e5;
  --cta-white-bg: #f6f7f9;
  --cta-white-border: #dadee7;
  --btn-blue-bg: #2563eb;
  --primary: #2563eb;
  --secondary: #6366f1;
  --background-light: #f7f8f9;
  --card-light: #ffffff;
  --muted-light: #e8eaed;
  --border-light: #dde0e4;

  --background-dark: #111827;
  --foreground-dark: #f7f8f9;
  --card-dark: #1a202c;
  --muted-dark: #1f2937;
  --border-dark: #1f2937;

  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-white: #ffffff;
  --text-dark-primary: #f7f8f9;
  --text-dark-secondary: #9ca3af;
  --destructive: #e74c3c;
  --gradient-primary: linear-gradient(135deg, #2563eb, #6366f1);

  --foreground: #021236;
}

* {
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-family: "Red Hat Display", sans-serif;
  font-family: "Urbanist", sans-serif;
  font-family: "Inter", sans-serif;
  list-style: none;
}

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

p {
  margin: 0;
}
body {
  box-sizing: border-box;
  padding: 0;
  top: 0;
  margin: 0;
  list-style-type: none;
  /* background-color: #F4F0F3; */
  background-color: var(--blue-gray);
  background-image: radial-gradient(circle, #f370631a 38%, #3a7bae1a);
  scroll-behavior: smooth;
}

.logo {
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--size-6px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-image: var(--gradient-primary);
  font-weight: 600;
}
header {
  width: 95%;
  padding: 10px;
  margin: 12px auto;
  background-color: var(--white);
  position: fixed;
  background-color: var(--white);
  border-radius: 0px 0px var(--size-12px) var(--size-12px);
  border-radius: var(--size-12px);
  box-shadow: 0 10px 30px #46474a1a;
  gap: 20px;
  left: 2.5%;
}
.navbar {
  display: flex;
  gap: 20px;

  align-items: center;
  text-align: center;
  flex-wrap: nowrap;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--size-12px);
}

.navbar-title {
  font-size: var(--size-16px);
  font-weight: 700;
  line-height: 1.75rem;
  color: var(--text-primary);
}

.navbar-logo {
  flex-grow: 1;
}

.navbar-items {
  display: flex;
  flex-grow: 2;
  gap: 20px;
  justify-content: flex-end;
  list-style-type: none;
  text-decoration: none;
}
.navbar-items .nav-link {
  font-size: var(--size-16px);
  text-decoration: none;
  font-weight: 500;
  line-height: var(--size-24px);
  color: var(--color-blue);
}

.nav-link:hover {
  color: var(--blue-dark);
}

.nav-link:hover {
  color: var(--purple);
  transition: ease-in 3s;
}
.navbar-actions {
  display: flex;
  justify-content: space-between;
}

.hero-home {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--blue);
}

.hero-home-centered {
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-cta-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .home-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

.hero-home .home-h1 {
  font-size: var(--font-h1);
  font-weight: bold;
  margin-bottom: 0;
  padding-top: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-home .home-subheading {
  font-size: 30px;
  font-weight: 600;
  margin: 0px;
}

.hero-home .home-description {
  margin: 0;
}

.hero-home .home-cta {
  width: auto;
  min-width: 180px;
  padding: var(--size-12px) var(--size-24px);
  font-size: 1.1rem;
  /* Asegura que ambos botones tengan el mismo tamaño */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  box-sizing: border-box;
}

.hero-home .hero-image {
  width: 100%;
  height: auto;
  background-size: contain;
}

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cta {
  border: none;
  border-radius: var(--size-8px);
  padding: var(--size-12px) var(--size-32px);
  background-color: var(--purple);
  font-weight: bold;
  color: var(--white);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--background-dark) ;
  background-color: var(--white);
  color: var(--background-dark);
  border-radius: var(--size-8px);
  font-weight: 600;
  padding: var(--size-12px) var(--size-24px);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px #46474a1a;
  transition: none;
}

.btn-blue {
  background: #2563eb;
  background-color: #2463eb;
  color: #fff;
  border: none;
  background-image: none;
  box-shadow: 0 2px 8px #46474a1a;
  cursor: pointer;
}
.btn-blue:hover {
  background-color: #2463ebe7;
}

.title-m {
  font-size: var(--font-h4);
  line-height: 56px;
  font-weight: bold;
}

.text-foreground {
  color: var(--text-primary);
}

.max-w-l {
  max-width: 60rem;
  margin: auto;
}

.section-container {
  padding: 5rem 2.5rem;
}


h1 {
  color: var(--color-blue);
  font-size: var(--font-h1);
  line-height: 100px;
}
h2 {
  color: var(--color-blue);
  font-size: 64px;
  line-height: 76px;
}

h3 {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
}

.image-full-size {
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.section-row {
  display: flex;
}

.half-section {
  min-height: 50vh;
  height: auto;
}

.cta-container {
  width: 80%;
  margin: auto;
  padding: 20px;
  text-align: center;
  border-radius: 14px;
  border: var(--purple);
  background-image: var(--gradient-secondary);
  color: var(--white);
}

.align-center {
  text-align: center;
  align-items: center;
}

.features {
  width: 60%;
  margin: auto;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  flex-wrap: wrap;
}

.feature {
  background-color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
  box-shadow: 0 10px 30px #46474a1a;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 320px;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.feature-title {
  margin: 0;
}
.features .feature:hover {
  transform: scale(1.045);
  z-index: 2;
}

.detail {
  width: 60%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.item-container {
  display: flex;
  padding: 0.75rem;
  align-items: center;
  border: 1px solid #e5e7eb;
  border:0.5px solid var(--card-dark);
  background-color: transparent;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.item-container > .item-indicator {

  background-color: var(--blue);
  color: var(--white);
  font-weight: bold;
  width: var(--size-40px);
  height: var(--size-40px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 15px;
  min-width: 40px;
  min-height: 40px;
}

.item-container > .item-detail {
  text-align: left;
}

.item-detail > .detail-title {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

.item-detail .detail-text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-blue);
  max-width: 95%;
}

.detail-span{
  color: var(--secondary);
  font-weight: 500;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: var(--size-8px);
  text-decoration: none;
  display: inline-block;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-instagram {
  /* background-color: #E1306C; */
  background-image: linear-gradient(to right, #e1306c, #833ab4);
  color: var(--white);
}

.badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  min-height: 90px;
}

.badge {
  display: inline-block;
  padding: var(--size-8px) var(--size-16px);
  font-size: var(--size-16px);
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--badge-bg);
  margin: 0.25rem;
  text-transform: capitalize;
}

.badge:hover {
  background-color: var(--purple);
  cursor: pointer;
  transition: ease-in 0.3s;
}

.rounde-pill {
  border-radius: 9999px;
}

.temp-tag{
  background-color: var(--gradient-primary);
  background-color: rgba(216, 183, 231, 0.2);
  color: var(--white);
  display: inline-block;
  font-weight: 600;
  margin-bottom: 16px;
   padding: var(--size-8px) var(--size-16px);
  font-size: var(--size-16px);
  line-height: 1.5rem;
  border: 1px solid #ffffff4d;
}

footer {
  justify-content: space-between;
  padding: 15px 40px;
  border-radius: 12px 12px 0px 0px;
  background-color: var(--white);
  color: var(--purple);
}

.footer-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
  max-width: 90%;
  margin: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .footer-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.footer-logo p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-blue);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 15px 0px;
  flex-wrap: wrap;
}

.footer-legal a {
  text-decoration: none;
  color: var(--color-blue);
}

/* Sección pasión cards */
.passion-section {
  text-align: center;
}

.passion-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  padding: 0;
  flex-direction: row;
}

.passion-card {
  background: rgba(255, 0, 0, 0.05);
  background-color: rgba(239, 68, 68, 0.05);
  border: 1px solid #e74c3c;
  /* color: var(--text-primary); */
  color: #e74c3c;
  border-radius: 16px;
  box-shadow: 0 4px 16px #46474a1a;
  padding: var(--size-32px) var(--size-24px);
  font-size: 1.1rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--size-16px);
  /* align-items: center; */
  /* justify-content: center; */
}

.card-title {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .passion-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .passion-card {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* Unificar color de h2 */
h2,
.title-m {
  color: var(--color-blue);
}

/* Features con icono */
.feature-icon-container {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: var(--size-6px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  margin: 0;
}

.feature-icon {
  width: var(--size-18px);
  height: var(--size-18px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-18px);
}

/* Botón después de pasos */
.steps-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Badges flexibles en dos líneas */
.badge-container-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin: 32px auto 0 auto;
  min-height: 90px;
}

@media (min-width: 769px) {
  .badge-container-flex {
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    height: 110px;
    max-width: 700px;
  }
  .badge-container-flex .badge {
    flex: 1 1 30%;
    min-width: 180px;
    max-width: 220px;
  }
}

/* CTA blanco con flecha y espaciado */
.cta-white {
  background: var(--white);
  background-color: var(--cta-white-bg);
  color: var(--violet);
  border: 1px solid var(--cta-white-border);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* transition: background 0.2s, color 0.2s; */
}

.cta-white:hover {
  background: var(--white);
  color: var(--color-blue);
}

.cta-arrow {
  font-size: 1.2em;
  margin-left: 6px;
}

.cta-btn-spacer {
  height: 24px;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* responsive styles */
@media (max-width: 768px) {
    .navbar{
        justify-content: space-between;
    }

    .navbar-title{
        display: none;
    }
  .section-row {
    display: flex;
    flex-direction: column;
  }

  .section-container {
    padding: 20px 20px;
  }

  .features {
    flex-direction: column;
    width: 100%;
  }

  .item-container {
    width: 100%;
  }

  .item-container > .item-indicator {
    margin-bottom: 10px;
  }

  .detail {
    width: 100%;
  }
  .hero-home .home-h1 {
    padding-top: 5rem;
    margin: 20px 0;
    font-size: 55px;
    line-height: 56px;
  }
  .hero-home .home-cta {
    width: 100%;
  }
  .navbar-items {
    display: none;
  }
  .navbar-actions {
    width: auto;
    gap: 10px;
  }

  .home-subheading {
    margin-bottom: 20px;
  }

  .features {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .feature{
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  h2 {
    font-size: 36px;
    line-height: 40px;
  }

  h3 {
    font-size: 32px;
    line-height: 36px;
  }

  .cta-container {
    width: 100%;
    padding: 15px;
  }

  footer {
    padding: 15px 20px;
  }

  .footer-information {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
}
