/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all 0.25s ease;
}

body {
  background: #f7f7f9;
  color: #1f2933;
}

/* CONTENEDOR */
.container {
  max-width: 720px;
  margin: auto;
  padding: 24px;
}

/* =========================
   HERO
   ========================= */
.hero {
  text-align: center;
  margin-bottom: 48px;
}

.logo {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
}

.logo span {
  color: #2563eb;
}

/* EYEBROW DESTACADO SOLO CON TIPOGRAFÍA */
.hero-eyebrow {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
}

/* TITULO PRINCIPAL */
.hero h1 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1 span {
  color: #2563eb;
}

/* SUBTITULO */
.hero-sub {
  font-size: 17px;
  color: #4b5563;
  margin-bottom: 12px;
}

/* CLAIM */
.hero-claim {
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
}

/* =========================
   CARD
   ========================= */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   ACORDEÓN
   ========================= */
.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
  cursor: pointer;
  padding: 16px 8px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.accordion-header:hover {
  background: #f1f5f9;
  border-radius: 8px;
  padding-left: 16px;
}

.accordion-header span {
  font-size: 22px;
  color: #2563eb;
}

.accordion-content {
  display: none;
  padding: 0 8px 16px;
  font-size: 14px;
  color: #374151;
  animation: fadeSlide 0.3s ease;
}

.accordion-content.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   FORMULARIO PROTAGONISTA
   ========================= */
.form-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(37,99,235,0.35);
  color: #ffffff;
  margin-top: 40px;
}

.form-kicker {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.form-hero h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* INPUTS */
.form-hero input,
.form-hero select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  margin-bottom: 14px;
  font-size: 14px;
}

/* BOTÓN */
.form-hero button {
  width: 100%;
  padding: 16px;
  background: #22c55e;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
}

.form-hero button:hover {
  background: #16a34a;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin: 32px 0 12px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .form-hero h2 {
    font-size: 22px;
  }
}

/* =========================
   Acceso a negocio existente
   ========================= */

.access-business {
  padding: 24px;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-radius: 14px;
  max-width: 420px;
}

.access-business h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
}

.access-business p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.access-business form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  font-size: 15px;
}

.access-business form button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   HERO + ACCESO LAYOUT
   ========================= */

.hero-layout {
  display: block;
}

/* Desktop */
@media (min-width: 900px) {
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
  }

  .hero {
    text-align: left;
    margin-bottom: 0;
  }

  .access-business {
    margin: 0;
  }
}

/* Mobile */
@media (max-width: 899px) {
  .access-business {
    margin: 24px auto;
  }
}
/* =========================
   HEADER BAR (Acceso negocio)
   ========================= */

.header-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.header-left {
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
}

/* Acceso inline */
.access-inline {
  display: flex;
  gap: 8px;
  align-items: center;
}

.access-inline input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  width: 180px;
}

.access-inline button {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.access-inline button:hover {
  background: #1e40af;
}

/* Mobile */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    align-items: center;
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  .access-inline {
    width: 100%;
  }

  .access-inline input {
    flex: 1;
    width: 100%;
  }
}
