/**
 * Style.css — Landing Page de Avaliação Pós-Estadia
 * Chalé Toca do Esquilo
 * 
 * Mobile-first, elegante, acolhedor.
 */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Sora, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(900px 420px at 10% -5%, rgba(185, 145, 71, 0.15), transparent 60%),
    radial-gradient(800px 340px at 110% 4%, rgba(53, 86, 67, 0.1), transparent 55%),
    linear-gradient(180deg, #f8f2e8 0%, #f4efe6 28%, #f7f3eb 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #f4efe6;
  --bg-soft: #fbf8f2;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --surface-dark: #244233;
  --text: #1f2b22;
  --text-soft: #5f665f;
  --text-inverse: #f8f5ee;
  --line: rgba(31, 43, 34, 0.11);
  --line-strong: rgba(31, 43, 34, 0.18);
  --accent: #b99147;
  --accent-deep: #8a6730;
  --accent-soft: #efe3c8;
  --green: #355643;
  --green-soft: #e5ede6;
  --whatsapp: #25d366;
  --error: #c0392b;
  --error-soft: #fdecea;
  --shadow-sm: 0 8px 24px rgba(37, 41, 34, 0.07);
  --shadow-md: 0 16px 40px rgba(37, 41, 34, 0.1);
  --shadow-lg: 0 24px 60px rgba(28, 35, 28, 0.14);
  --shadow-xl: 0 32px 80px rgba(28, 35, 28, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 680px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.skip-link:focus {
  left: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 20px 50px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.65) saturate(1.1);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 43, 34, 0.1) 0%, rgba(31, 43, 34, 0.4) 55%, rgba(31, 43, 34, 0.82) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 35%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  padding: 0 10px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-inverse);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-inverse);
  margin-bottom: 14px;
}

.hero__subtitle {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(248, 245, 238, 0.82);
  max-width: 480px;
  margin: 0 auto;
}

/* Decorative floating elements */
.hero__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
}

.hero__deco--1 {
  top: 12%;
  left: 6%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(185, 145, 71, 0.22) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero__deco--2 {
  top: 22%;
  right: 10%;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(53, 86, 67, 0.18) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

/* ===== MAIN CONTENT ===== */
.main {
  position: relative;
  z-index: 1;
  margin-top: -36px;
  padding: 0 20px 60px;
}

.card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: fadeInUp 0.7s var(--ease) 0.15s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CARD HEADER ===== */
.card__header {
  padding: 40px 36px 0;
  text-align: center;
}

.card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(185, 145, 71, 0.12);
  border: 1px solid rgba(185, 145, 71, 0.18);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-soft), rgba(229, 237, 230, 0.45));
  border: 1px solid rgba(53, 86, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(53, 86, 67, 0.08);
  position: relative;
}

.card__icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53, 86, 67, 0.06), transparent);
  z-index: -1;
}

.card__icon svg {
  width: 38px;
  height: 38px;
  color: var(--green);
}

.card__title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}

.card__tagline {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

/* ===== STARS ===== */
.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 36px 0;
}

.stars__item {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.stars__item svg {
  width: 26px;
  height: 26px;
  color: var(--text-soft);
  opacity: 0.35;
  transition: all 0.2s var(--ease);
}

.stars__item:hover {
  border-color: var(--accent);
  transform: scale(1.06);
}

.stars__item:hover svg {
  opacity: 0.6;
  color: var(--accent);
}

.stars__item.is-active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft), rgba(239, 227, 200, 0.6));
  box-shadow: 0 4px 14px rgba(185, 145, 71, 0.18);
}

.stars__item.is-active svg {
  color: var(--accent);
  opacity: 1;
}

@keyframes starPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.stars__item.is-active {
  animation: starPop 0.3s var(--ease);
}

.stars__label {
  text-align: center;
  padding: 14px 36px 0;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
  min-height: 24px;
  transition: color 0.2s var(--ease);
}

.selection-summary {
  margin: 14px 36px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 43, 34, 0.08);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.selection-summary.is-positive {
  background: rgba(229, 237, 230, 0.88);
  border-color: rgba(53, 86, 67, 0.16);
  color: var(--green);
}

.selection-summary.is-negative {
  background: rgba(239, 227, 200, 0.88);
  border-color: rgba(185, 145, 71, 0.2);
  color: var(--accent-deep);
}

.stars__label.is-positive {
  color: var(--green);
}

.stars__label.is-negative {
  color: var(--error);
}

/* ===== FORM ===== */
.form {
  padding: 24px 36px 0;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.6;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(53, 86, 67, 0.1);
  background: var(--surface-strong);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}

.form__char-count {
  text-align: right;
  font-size: 12px;
  color: var(--text-soft);
  opacity: 0.6;
  margin-top: 6px;
}

.form__helper {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

.form__footnote {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Consent checkbox */
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.form__consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.form__consent label {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  cursor: pointer;
}

/* Submit button */
.form__submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--green), #476c57);
  box-shadow: 0 12px 32px rgba(53, 86, 67, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(53, 86, 67, 0.28);
}

.form__submit:hover:not(:disabled)::before {
  opacity: 1;
}

.form__submit:active:not(:disabled) {
  transform: translateY(0);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__submit.is-loading {
  pointer-events: none;
}

.form__submit.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 999px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== RESULT SCREENS ===== */
.result {
  display: none;
  padding: 40px 36px;
  text-align: center;
  animation: fadeInUp 0.5s var(--ease);
}

.result.is-visible {
  display: block;
}

.result__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result__icon svg {
  width: 36px;
  height: 36px;
}

.result__icon--positive {
  background: linear-gradient(135deg, var(--green-soft), rgba(229, 237, 230, 0.45));
  border: 1px solid rgba(53, 86, 67, 0.1);
  color: var(--green);
}

.result__icon--private {
  background: linear-gradient(135deg, var(--accent-soft), rgba(239, 227, 200, 0.45));
  border: 1px solid rgba(185, 145, 71, 0.12);
  color: var(--accent);
}

.result__icon--error {
  background: linear-gradient(135deg, var(--error-soft), rgba(253, 236, 234, 0.45));
  border: 1px solid rgba(192, 57, 43, 0.12);
  color: var(--error);
}

.result__title {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.result__success-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  border: 1px solid rgba(53, 86, 67, 0.08);
}

.result__message {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 24px;
}

/* CTA button for positive flow */
.result__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--green), #476c57);
  box-shadow: 0 14px 34px rgba(53, 86, 67, 0.24);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  margin-bottom: 12px;
}

.result__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(53, 86, 67, 0.3);
}

.result__cta svg {
  width: 18px;
  height: 18px;
}

.result__note {
  font-size: 13px;
  color: var(--text-soft);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.result__note svg {
  width: 14px;
  height: 14px;
}

/* Private feedback form */
.private__form {
  margin-top: 24px;
  text-align: left;
}

.private__form .form__textarea {
  min-height: 120px;
}

.private__submit {
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 30px rgba(185, 145, 71, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  margin-top: 12px;
}

.private__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(185, 145, 71, 0.28);
}

.private__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.private__thankyou {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  border: 1px solid rgba(53, 86, 67, 0.12);
}

.private__thankyou p {
  font-size: 14px;
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 8px;
}

.private__thankyou p:last-child {
  margin-bottom: 0;
}

.private__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #082012;
  background: linear-gradient(135deg, var(--whatsapp), #6ce29b);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
  text-decoration: none;
  margin-top: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.private__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.private__whatsapp svg {
  width: 18px;
  height: 18px;
}

/* Error state */
.result__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.result__retry {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--green), #476c57);
  box-shadow: 0 12px 30px rgba(53, 86, 67, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.result__retry:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(53, 86, 67, 0.28);
}

.result__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #082012;
  background: linear-gradient(135deg, var(--whatsapp), #6ce29b);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.result__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.result__whatsapp svg {
  width: 18px;
  height: 18px;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  margin: 0 36px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 36px 36px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(244, 239, 230, 0.35));
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.footer__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.footer__location {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer__location svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--accent);
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  transition: color 0.15s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: var(--accent-deep);
}

.footer__link svg {
  width: 14px;
  height: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .hero {
    min-height: 40vh;
    padding: 50px 16px 40px;
  }

  .main {
    padding: 0 16px 50px;
  }

  .card {
    border-radius: var(--radius);
  }

  .card__header,
  .form,
  .result,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .stars,
  .stars__label,
  .selection-summary {
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .divider {
    margin: 0 24px;
  }

  .stars__item {
    width: 48px;
    height: 48px;
  }

  .stars__item svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 36vh;
    padding: 40px 14px 36px;
  }

  .hero__title {
    font-size: 28px;
  }

  .main {
    padding: 0 14px 40px;
  }

  .card__header,
  .form,
  .result,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stars {
    padding-left: 20px;
    padding-right: 20px;
    gap: 8px;
  }

  .stars__label,
  .selection-summary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .divider {
    margin: 0 20px;
  }

  .stars__item {
    width: 44px;
    height: 44px;
  }

  .stars__item svg {
    width: 22px;
    height: 22px;
  }

  .form__submit,
  .result__cta,
  .result__retry {
    width: 100%;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero__deco {
    animation: none;
  }
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.stars__item:focus-visible {
  outline-offset: 4px;
}

/* ===== PRINT ===== */
@media print {
  .hero, .footer, .form__submit, .result__cta, .result__retry, .result__whatsapp, .private__whatsapp {
    display: none;
  }

  body {
    background: white;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
