body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #4EE788, #44DFCE);
  color: #1f1f1f;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  width: 50px;
}

.nav a {
  margin-left: 1.5rem;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
}



.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7rem 2rem 5rem;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero__text {
  flex: 1;
  min-width: 360px;
  max-width: 520px;
}

.hero__text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__text p {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__buttons a {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  border: 2px solid #6b21a8;
  color: #6b21a8;
  transition: all 0.3s ease;
}

.hero__buttons a:hover {
  background-color: #6b21a8;
  color: white !important;
}

.hero__buttons a.primary {
  background-color: #6b21a8;
  color: white !important;
}

.hero__images {
  flex: 1;
  display: flex;
  gap: 2rem;
  justify-content: center;
  min-width: 320px;
}

.hero__images img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 1.5rem;
}



.section {
  padding: 6rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.15rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 1rem 1rem 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0 1rem 1.5rem;
  color: #555;
  font-size: 0.95rem;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.step {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
}

.step__number {
  display: inline-block;
  background: #6B21A8;
  color: white !important;
  width: 2rem;
  height: 2rem;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-weight: bold;
}

ul.diferente {
  list-style: none;
  padding-left: 0;
  margin-top: 2.5rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

ul.diferente li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.white {
  background: white;
  border-radius: 2rem;
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.form-waitlist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.form-waitlist input, .form-waitlist button {
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: 100%;
}

.form-waitlist button {
  background: #7C3AED;
  color: white !important;
  border: none;
  font-weight: bold;
}

.footer {
  background: #0F172A;
  padding: 2rem;
  color: white !important;
  text-align: center;
  margin-top: 4rem;
}

.footer img {
  width: 40px;
  margin-bottom: 1rem;
}

.footer nav a {
  color: white !important;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}


/* Botón morado como en la captura */
.btn-primary {
  background-color: #6c2bd9;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #5823b3;
}

/* Imágenes ladeadas */
.hero__images img.tilted-left {
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.hero__images img.tilted-right {
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}


.footer {
  background-color: #0c1222;
  text-align: center;
  padding: 2rem 1rem;
  color: #ccc;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__title {
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav a {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
}

.footer__nav a:hover {
  color: white;
}

.footer__copyright {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
}


/* Ajustes de espaciado entre secciones */
section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#como-funciona,
#diferenciadores,
#formulario {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

section h2 {
  margin-bottom: 1rem;
}


/* Espaciado compacto */
.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section h2 {
  margin-bottom: 1rem;
}


/* Ajustes para compactar la parte superior */
.hero {
  padding-top: 2rem;
  margin-top: 0;
}

.header {
  padding-bottom: 0.5rem;
}


/* Compactar ¿Qué es Friends2Go? y Actividades */
.section p {
  margin-bottom: 0.5rem;
}

.section + .section h2 {
  margin-top: 1rem;
}


/* Scroll suave para navegación interna */
html {
  scroll-behavior: smooth;
}


/* Branding en el header */
.branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: black;
}
