@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap");

:root {
  --accent: #38bdf8;
  --accent-rgb: 132, 204, 22;
  --accent-dim: rgba(132, 204, 22, 0.08);
}

:root {
  --bg: #0a0e14;
  --bg2: #111620;
  --bg3: #181e2a;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e8edf5;
  --muted: #7a8599;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: rgba(5, 10, 15, 0.75);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);
}

.nav-container {
  width: 100%;
  max-width: 1280px;

  margin: auto;
  padding: 18px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo img {
  height: 42px;
  display: block;
}

/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;

  list-style: none;
}

.nav-links li {
  position: relative;
}

/* LINKS */
.nav-links a,
.dropdown-toggle {
  color: var(--muted);

  background: none;
  border: none;

  cursor: pointer;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  text-decoration: none;

  transition: 0.25s ease;

  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--white);
}

.dropdown-toggle span {
  transition: transform 0.25s ease;
}

.dropdown.active .dropdown-toggle span {
  transform: rotate(45deg);
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;

  min-width: 220px;

  background: rgba(10, 16, 25, 0.96);

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 12px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.25s ease;

  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 12px 14px;

  border-radius: 10px;

  font-size: 12px;
  letter-spacing: 0.04em;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* CTA */
.nav-cta {
  background: var(--accent);
  color: #071018;

  padding: 14px 22px;

  border-radius: 12px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* MOBILE BUTTON */
.mobile-toggle {
  display: none;

  width: 46px;
  height: 46px;

  background: none;
  border: none;

  cursor: pointer;

  position: relative;
}

.mobile-toggle span {
  position: absolute;
  left: 10px;

  width: 26px;
  height: 2px;

  background: #fff;

  transition: 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
  top: 14px;
}

.mobile-toggle span:nth-child(2) {
  top: 22px;
}

.mobile-toggle span:nth-child(3) {
  top: 30px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: #081018;

    border-bottom: 1px solid var(--border);

    padding: 24px;

    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    width: 100%;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: relative;

    top: 10px;

    width: 100%;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    var(--accent-dim) 0%,
    transparent 60%
  );
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-badge {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 24px;
  z-index: 1;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-badge-inner {
  animation: counter-rotate 30s linear infinite;
}

@keyframes counter-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.hero-badge .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* SECTIONS */
section {
  padding: 100px 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 60px;
}

/* OVERVIEW */
.overview {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.overview-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-card {
  background: var(--bg3);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.stat-card:first-child {
  border-top-left-radius: 8px;
}

.stat-card:nth-child(2) {
  border-top-right-radius: 8px;
}

.stat-card:nth-child(3) {
  border-bottom-left-radius: 8px;
}

.stat-card:last-child {
  border-bottom-right-radius: 8px;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* CHALLENGES */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.challenge-card {
  background: var(--bg2);
  padding: 36px 30px;
  transition: background 0.2s;
}

.challenge-card:hover {
  background: var(--bg3);
}

.challenge-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.challenge-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.challenge-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* SERVICES */
.services {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  border-left: 4px solid var(--accent);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  padding: 4px 10px;
  border-radius: 3px;
}

/* NORMS */
.norms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.norm-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  border-top: 3px solid var(--accent);
  transition: transform 0.2s;
}

.norm-card:hover {
  transform: translateY(-3px);
}

.norm-card .norm-id {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.norm-card .norm-name {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* PROCESS */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.process-step h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    var(--accent-dim) 0%,
    transparent 70%
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 44px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .copy {
  font-size: 13px;
  color: var(--muted);
}

footer .back-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  section {
    padding: 60px 24px;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-badge {
    display: none;
  }

  .overview-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .norms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ########## 
    NEWS
########## */

.news-page {
  padding-top: 180px;
  padding-bottom: 100px;
}

.news-header {
  margin-bottom: 60px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--bg2);

  border: 1px solid var(--border);

  border-radius: 10px;

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
}

.news-thumb {
  display: block;
  aspect-ratio: 16/10;

  overflow: hidden;

  background: var(--bg3);
}

.news-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-content {
  padding: 28px;
}

.news-date {
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--accent);

  margin-bottom: 16px;
}

.news-card h2 {
  margin-bottom: 16px;
}

.news-card h2 a {
  font-family: "Barlow Condensed", sans-serif;

  font-size: 30px;
  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  color: var(--white);

  text-decoration: none;

  transition: color 0.25s ease;
}

.news-card h2 a:hover {
  color: var(--accent);
}

.news-card p {
  font-size: 15px;
  line-height: 1.7;

  color: var(--muted);

  margin-bottom: 24px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--accent);

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.news-link:hover::after {
  transform: translateX(4px);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .news-page {
    padding-top: 140px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card h2 a {
    font-size: 24px;
  }
}

/* =========================
   SINGLE NEWS
========================= */

.single-news-page {
  padding-top: 180px;
  padding-bottom: 100px;
}

.single-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

/* CONTENT */
.single-news-content {
  min-width: 0;
}

.single-news-head {
  margin-bottom: 36px;
}

.single-news-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--accent);

  margin-bottom: 24px;
}

.single-news-date::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.single-news-head h1 {
  font-family: "Barlow Condensed", sans-serif;

  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;

  line-height: 0.95;

  text-transform: uppercase;

  color: var(--white);

  max-width: 900px;
}

.single-news-image {
  border-radius: 12px;
  overflow: hidden;

  border: 1px solid var(--border);

  margin-bottom: 42px;
}

.single-news-image img {
  width: 100%;
  display: block;
}

/* BODY */
.single-news-body {
  color: var(--text);
  line-height: 1.9;
  font-size: 17px;
}

.single-news-body p {
  margin-bottom: 28px;
}

.single-news-body h2,
.single-news-body h3,
.single-news-body h4 {
  font-family: "Barlow Condensed", sans-serif;

  text-transform: uppercase;

  color: var(--white);

  margin-top: 48px;
  margin-bottom: 18px;

  line-height: 1;
}

.single-news-body h2 {
  font-size: 40px;
}

.single-news-body h3 {
  font-size: 32px;
}

.single-news-body img {
  width: 100%;
  border-radius: 10px;
  margin: 32px 0;
}

.single-news-body ul,
.single-news-body ol {
  padding-left: 24px;
  margin-bottom: 28px;
}

.single-news-body li {
  margin-bottom: 10px;
}

.single-news-body a {
  color: var(--accent);
}

.single-news-body blockquote {
  border-left: 3px solid var(--accent);

  padding-left: 24px;
  margin: 36px 0;

  color: var(--muted);

  font-size: 20px;
  font-style: italic;
}

/* SIDEBAR */
.single-news-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--bg2);

  border: 1px solid var(--border);

  border-radius: 12px;

  padding: 28px;
}

.sidebar-card h3 {
  font-family: "Barlow Condensed", sans-serif;

  font-size: 24px;
  font-weight: 700;

  text-transform: uppercase;

  color: var(--white);

  margin-bottom: 28px;
}

.sidebar-news {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;

  text-decoration: none;

  padding-bottom: 20px;
  margin-bottom: 20px;

  border-bottom: 1px solid var(--border);
}

.sidebar-news:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-news img {
  width: 100%;
  aspect-ratio: 1/1;

  object-fit: cover;

  border-radius: 8px;
}

.sidebar-news span {
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--accent);
}

.sidebar-news h4 {
  margin-top: 8px;

  font-size: 18px;
  font-weight: 600;

  line-height: 1.3;

  color: var(--white);

  transition: color 0.25s ease;
}

.sidebar-news:hover h4 {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .single-news-grid {
    grid-template-columns: 1fr;
  }

  .single-news-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 700px) {
  .single-news-page {
    padding-top: 140px;
  }

  .single-news-head h1 {
    font-size: 42px;
  }

  .sidebar-news {
    grid-template-columns: 80px 1fr;
  }
}

/* CONTACT PAGE */
.contact-page {
  padding-top: 180px;
  padding-bottom: 100px;
}

.contact-header {
  margin-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg2);

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 28px;
}

.contact-label {
  display: block;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--accent);

  margin-bottom: 14px;
}

.contact-card a,
.contact-card p {
  color: var(--text);

  text-decoration: none;

  font-size: 16px;
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--accent);
}

/* FORM */
.contact-form-wrap {
  background: var(--bg2);

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;

  background: var(--bg3);

  border: 1px solid var(--border);

  border-radius: 12px;

  padding: 16px 18px;

  color: var(--white);

  font-size: 15px;

  font-family: "Barlow", sans-serif;

  transition: 0.25s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 180px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--accent);

  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-page {
    padding-top: 140px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
