saveinmed/website/static/styles.css
2025-12-17 15:40:23 -03:00

440 lines
7.2 KiB
CSS

:root {
--blue: #0f4c81;
--blue-dark: #0c3c66;
--ice: #f4f8fd;
--card: #ffffff;
--text: #0f1b2c;
--muted: #425066;
--border: #d7e3f4;
--radius-lg: 18px;
--radius-md: 12px;
--shadow-soft: 0 10px 40px rgba(15, 76, 129, 0.08);
--shadow-strong: 0 16px 60px rgba(15, 76, 129, 0.12);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
sans-serif;
background: var(--ice);
color: var(--text);
min-height: 100%;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
line-height: 1.6;
}
img,
svg {
display: block;
}
.page-wrapper {
min-height: 100vh;
background: radial-gradient(circle at 20% 20%, #e2edfa, transparent 25%),
radial-gradient(circle at 80% 10%, #d7eafa, transparent 28%),
linear-gradient(180deg, #f7fbff 0%, #eef4fb 50%, #f9fbff 100%);
}
.container {
width: min(1180px, 92vw);
margin: 0 auto;
padding: 0 1rem;
}
.section {
padding: 4rem 0;
}
.section-header {
display: flex;
flex-direction: column;
gap: 0.5rem;
max-width: 780px;
margin-bottom: 2rem;
}
.section-kicker {
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--blue);
}
.section-title {
font-size: clamp(1.9rem, 1.4rem + 1vw, 2.4rem);
font-weight: 700;
color: var(--text);
}
.section-description {
color: var(--muted);
font-size: 1rem;
}
.hero {
padding: 4.5rem 0 3.5rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
align-items: center;
}
.hero-card {
background: var(--card);
border: 1px solid var(--border);
box-shadow: var(--shadow-soft);
border-radius: var(--radius-lg);
padding: 1.5rem;
display: grid;
gap: 1rem;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.85rem;
border-radius: 999px;
background: rgba(15, 76, 129, 0.08);
color: var(--blue);
font-weight: 600;
font-size: 0.9rem;
}
.hero-title {
font-size: clamp(2rem, 1.2rem + 2vw, 2.9rem);
font-weight: 800;
line-height: 1.2;
}
.hero-subtitle {
color: var(--muted);
font-size: 1.05rem;
}
.hero-grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.metric-card {
background: linear-gradient(135deg, #0f4c81 0%, #1f6aa8 100%);
color: #fff;
padding: 1.25rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-soft);
}
.metric-card p {
color: rgba(255, 255, 255, 0.9);
}
.badge-list {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
}
.badge {
padding: 0.35rem 0.65rem;
border-radius: 999px;
background: #e7f0fb;
color: var(--blue);
font-weight: 600;
font-size: 0.9rem;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}
.button-primary,
.button-secondary {
border-radius: 12px;
padding: 0.85rem 1.2rem;
font-weight: 700;
border: 1px solid transparent;
transition: transform 150ms ease, box-shadow 200ms ease;
}
.button-primary {
background: linear-gradient(135deg, #0f4c81, #0c3c66);
color: #fff;
box-shadow: var(--shadow-soft);
}
.button-primary:hover {
transform: translateY(-1px);
box-shadow: var(--shadow-strong);
}
.button-secondary {
background: #ffffff;
border-color: var(--border);
color: var(--blue);
}
.button-secondary:hover {
transform: translateY(-1px);
box-shadow: var(--shadow-soft);
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.4rem;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-soft);
padding: 1.4rem;
display: grid;
gap: 0.6rem;
position: relative;
overflow: hidden;
}
.card:before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(15, 76, 129, 0.06), transparent 55%);
opacity: 0;
transition: opacity 200ms ease;
}
.card:hover:before {
opacity: 1;
}
.card h3 {
font-size: 1.05rem;
color: var(--blue-dark);
}
.card p {
color: var(--muted);
}
.pill {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.25rem 0.55rem;
border-radius: 10px;
background: rgba(15, 76, 129, 0.08);
color: var(--blue);
font-weight: 600;
font-size: 0.85rem;
}
.split-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
align-items: start;
}
.highlight-box {
background: #0f4c81;
color: white;
border-radius: var(--radius-lg);
padding: 1.5rem;
display: grid;
gap: 0.8rem;
box-shadow: var(--shadow-strong);
}
.highlight-box p {
color: rgba(255, 255, 255, 0.9);
}
.list {
display: grid;
gap: 0.7rem;
}
.list li {
display: flex;
align-items: flex-start;
gap: 0.6rem;
color: var(--muted);
}
.list li strong {
color: var(--text);
}
.integration-flow {
display: grid;
gap: 1rem;
background: #f8fbff;
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 1.25rem;
}
.form-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.5rem;
box-shadow: var(--shadow-soft);
}
.form-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 0.9rem;
margin-bottom: 0.9rem;
}
label {
display: grid;
gap: 0.35rem;
font-weight: 600;
color: var(--text);
font-size: 0.95rem;
}
input,
textarea,
select {
width: 100%;
padding: 0.75rem 0.8rem;
border-radius: 10px;
border: 1px solid var(--border);
background: #fdfefe;
color: var(--text);
transition: border-color 150ms ease, box-shadow 150ms ease;
}
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--blue);
box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}
textarea {
resize: vertical;
min-height: 120px;
}
.notice {
padding: 0.9rem 1rem;
background: rgba(15, 76, 129, 0.08);
border-radius: 12px;
color: var(--blue-dark);
font-weight: 600;
border: 1px solid rgba(15, 76, 129, 0.15);
}
.chip-row {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.chip {
background: #eef3fb;
color: var(--blue-dark);
padding: 0.45rem 0.7rem;
border-radius: 12px;
font-weight: 600;
font-size: 0.9rem;
}
.footer {
padding: 2rem 0 3rem;
color: var(--muted);
text-align: center;
}
.island-shell {
position: relative;
}
.pulse {
animation: pulse 1.7s ease-in-out infinite;
}
@keyframes pulse {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-3px);
}
100% {
transform: translateY(0);
}
}
.ticker {
display: grid;
gap: 0.35rem;
}
.ticker-step {
display: flex;
gap: 0.65rem;
align-items: flex-start;
padding: 0.8rem 0.85rem;
border-radius: 12px;
border: 1px dashed rgba(15, 76, 129, 0.25);
background: #fff;
box-shadow: 0 4px 10px rgba(15, 76, 129, 0.06);
}
.ticker-step.active {
border-color: var(--blue);
background: rgba(15, 76, 129, 0.08);
}
.ticker-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--blue);
margin-top: 0.2rem;
}
.ticker-step p {
margin: 0;
color: var(--muted);
}
@media (max-width: 720px) {
.hero {
padding-top: 3.5rem;
}
.section {
padding: 3.2rem 0;
}
}