/* =============================================
   ÚnicoNET - Gestão da Internet Empresarial
   Stylesheet Principal
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2744;
  --primary-light: #2a5a8c;
  --accent: #00bcd4;
  --accent-hover: #0097a7;
  --orange: #ff6f00;
  --orange-hover: #e65100;
  --green: #4caf50;
  --text-dark: #333;
  --text-light: #fff;
  --text-muted: #777;
  --bg-light: #f5f7fa;
  --bg-dark: #1a2332;
  --bg-section: #eef2f7;
  --border: #ddd;
  --shadow: 0 2px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
  --header-height: 80px;
  --max-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--primary-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(60, 60, 60, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(45, 45, 45, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 65px;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link { display: flex; align-items: center; }
.logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}
.site-header.scrolled .logo { height: 40px; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav .nav-list > li > a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  display: block;
}

.main-nav .nav-list > li > a:hover,
.main-nav .nav-list > li > a.router-link-active {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  overflow: hidden;
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--bg-light);
  color: var(--accent);
  padding-left: 25px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15,39,68,0.92), rgba(26,58,92,0.85)),
              url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0,188,212,0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero .subtitle {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,188,212,0.4);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255,111,0,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

/* --- Sections --- */
.section {
  padding: 80px 20px;
}

.section-alt {
  background: var(--bg-section);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Feature Row (2 cols) --- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0;
}

.feature-row.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; }
.feature-image { flex: 1; text-align: center; }
.feature-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 400px;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.feature-text ul {
  margin: 15px 0;
}

.feature-text ul li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-muted);
}

.feature-text ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--green);
}

/* --- Tools Grid (Produto page) --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.tool-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--orange);
}

.tool-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-card h3 i {
  color: var(--accent);
  font-size: 1.2rem;
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table thead th {
  background: var(--primary);
  color: #fff;
  padding: 18px 15px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td {
  padding: 14px 15px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table .check { color: var(--green); font-size: 1.2rem; }
.comparison-table .cross { color: #e53935; font-size: 1.2rem; }

/* --- Contact Form --- */
.contact-section {
  display: flex;
  gap: 50px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: flex-start;
}

.contact-form-wrap {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-info-wrap {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,188,212,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Info Box --- */
.info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.info-box p {
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff;
  padding: 140px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Page --- */
.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.9;
}

.content-page h2 {
  font-size: 1.6rem;
  margin: 30px 0 15px;
  color: var(--primary);
}

.content-page h3 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
}

.content-page p {
  margin-bottom: 15px;
  color: #555;
}

/* --- Hardware Cards --- */
.hw-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: var(--max-width);
  margin: 30px auto;
}

.hw-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--accent);
}

.hw-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.hw-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid #f0f0f0;
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.video-card .video-thumb {
  width: 100%;
  height: 200px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
}

.video-card .video-info {
  padding: 20px;
}

.video-card .video-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.video-card .video-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card .blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
}

.blog-card .blog-info {
  padding: 25px;
}

.blog-card .blog-info .date {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card .blog-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card .blog-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  transition: var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Login Box (Parceiro) --- */
.login-box {
  max-width: 450px;
  margin: 60px auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 50px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 10px;
}

.login-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-item .label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.3));
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: #ccc;
}

.footer-top {
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 0 300px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  opacity: 0.9;
}

.footer-slogan {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-contact-info p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-info i {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.footer-contact-info small {
  color: #999;
  font-size: 0.8rem;
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col { min-width: 150px; }

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: #888;
}

/* --- Serie Badges --- */
.serie-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.serie-badge.descontinuada {
  background: #ffcdd2;
  color: #c62828;
}

.serie-badge.ativa {
  background: #c8e6c9;
  color: #2e7d32;
}

/* --- Report List --- */
.report-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.report-list li::before {
  content: '\f200';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .feature-row {
    flex-direction: column;
    gap: 30px;
  }
  .feature-row.reverse { flex-direction: column; }

  .contact-section {
    flex-direction: column;
  }

  .footer-brand { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .mobile-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
    padding: 20px;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .main-nav .nav-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav .nav-list > li > a {
    padding: 15px 20px;
    font-size: 16px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown li a {
    color: #ccc;
    border-bottom-color: rgba(255,255,255,0.05);
    padding-left: 40px;
  }

  .dropdown li a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent);
  }

  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1.1rem; }
  .hero p { font-size: 0.95rem; }

  .section { padding: 50px 15px; }
  .section-header h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 1.8rem; }
  .page-header { padding: 120px 20px 40px; }

  .cards-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .hw-cards { grid-template-columns: 1fr; }

  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 8px;
  }

  .login-box { margin: 30px 15px; padding: 30px 25px; }

  .stats-row { gap: 30px; }
  .stat-item .number { font-size: 2rem; }

  .footer-links { gap: 25px; }
  .footer-col { min-width: 130px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 12px 28px; font-size: 13px; }
  .comparison-table { font-size: 0.75rem; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Scroll top --- */
main {
  margin-top: var(--header-height);
}

.page-header + .section,
.page-header + .content-page {
  margin-top: 0;
}

main > div:first-child .page-header {
  margin-top: calc(-1 * var(--header-height));
  padding-top: calc(var(--header-height) + 60px);
}

main > div:first-child .hero {
  margin-top: calc(-1 * var(--header-height));
}

/* Alert success */
.alert-success {
  background: #c8e6c9;
  color: #2e7d32;
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-top: 15px;
  font-weight: 600;
}
