@import url('https://solargentinotv.com.ar/assets/fonts/Gilroy/Gilroy.css');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Google Sans';
}

:root {
  --bg: #fff7fb;
  --card: rgba(255, 255, 255, 0.92);
  --card-2: #fff1f7;
  --line: #efd0df;
  --line-2: #f5dce8;
  --ink: #ef008a;
  --text: #482138;
  --muted: #77586a;
  --soft: #a78999;
  --pink: #ef008a;
  --pink-2: #ff4ea6;
  --hot: #c90070;
  --danger: #d93065;
  --ok: #15936d;
  --shadow: 0 14px 34px rgba(128, 28, 78, 0.1);
  --shadow-2: 0 8px 18px rgba(128, 28, 78, 0.07);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --sidebar: 264px;
  --rightbar: 330px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--pink);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 120, 188, 0.17),
      transparent 28rem
    ),
    radial-gradient(
      circle at 100% 5%,
      rgba(255, 218, 235, 0.55),
      transparent 28rem
    ),
    linear-gradient(180deg, #fff8fc 0%, #fff 55%, #fff8fc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
img,
video {
  display: block;
  max-width: 100%;
}
input,
textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
textarea {
  resize: vertical;
  min-height: 120px;
}

.hidden {
  display: none !important;
}
.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.stack {
  display: grid;
  gap: 12px;
}
.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  gap: 10px;
}
.toast {
  width: min(360px, calc(100vw - 36px));
  padding: 13px 14px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
.toast small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
