/* public/styles.css */

/* ---- RESET ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ---- PALETA SPA ---- */
:root {
  --color-bg: #f6f5f2; /* beige cálido */
  --color-primary: #708a81; /* verde olivo suave */
  --color-accent: #9eb2a3; /* verde grisáceo */
  --color-highlight: #c3a97a; /* dorado tenue */
  --color-text: #3f3a34; /* marrón gris oscuro */
  --color-light: #ffffff;
  --color-muted: #827b73;
}

/* ---- BODY ---- */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* ---- HEADER ---- */
.shs-header {
  background: var(--color-light);
  width: 100%;
  padding: 1.2rem 2rem;
  border-bottom: 2px solid rgba(112, 138, 129, 0.2);
  display: flex;
  justify-content: center;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.shs-logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shs-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-right: 12px;
}

.shs-header h1 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.shs-header p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ---- MAIN ---- */
.shs-main {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  width: 100%;
}

/* ---- CARD ---- */
.shs-card {
  background: var(--color-light);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(112, 138, 129, 0.1);
  transition: 0.3s ease;
}

.shs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.shs-card h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.shs-sub {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

/* ---- FORM SECTIONS ---- */
.shs-step {
  margin-bottom: 1.8rem;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

.shs-step h3 {
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* ---- LABELS & INPUTS ---- */
label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

input,
select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  background-color: #fafafa;
  transition: border 0.3s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
}

/* ---- BUTTON ---- */
.shs-btn {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shs-btn:hover {
  background-color: var(--color-accent);
}

/* ---- FORM MESSAGE ---- */
.shs-message {
  text-align: center;
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ---- THANK YOU SECTION ---- */
.shs-thankyou {
  text-align: center;
  padding: 2rem 1rem;
}

.shs-thankyou h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.shs-thankyou p {
  color: var(--color-text);
  margin-bottom: 0.8rem;
}

/* ---- SMALL DETAILS ---- */
.shs-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

strong {
  color: var(--color-highlight);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .shs-card {
    padding: 1.5rem;
  }

  .shs-header h1 {
    font-size: 1.3rem;
  }

  .shs-step {
    border-left-width: 3px;
  }
}
