:root {
  --primary-color: #1e64f2;
  --secondary-color: #edf2fa;
  --accent-color: #3da9fc;
  --text-color: #1a1a2e;
  --background-color: #f5faff;
  --light-blue: #f0f6ff;
  --white: #ffffff;
  --shadow-color: rgba(61, 169, 252, 0.1);
  --glass-blur: blur(12px);
  --contrast-dark: #0a0a0a;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-color);
  background: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar */
.topbar {
  background: rgba(255, 255, 255, 0.842);
  color: var(--contrast-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .logo img {
  height: 46px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.topbar .logo:hover img {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--contrast-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.topbar nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.topbar nav a {
  text-decoration: none;
  color: var(--contrast-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.topbar nav a:hover,
.topbar nav a:focus {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: 0 0 10px var(--accent-color);
  outline: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .topbar nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 0;
    border-radius: 0 0 20px 20px;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    z-index: 999;
  }

  .topbar nav ul.active {
    display: flex;
  }

  .topbar nav ul li {
    margin: 1rem 0;
  }

  .topbar nav ul li a {
    font-size: 1.15rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  background: url(nuvem3.jpg) no-repeat center center / cover;
  padding: 6rem 1rem;
  text-align: center;
  color: var(--white);
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 19, 0.55);
  z-index: -1;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

/* Botão */
.btn {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(61, 169, 252, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover,
.btn:focus {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(61, 169, 252, 0.5);
  outline: none;
}

/* Seção Serviços */
.servicos {
  background: var(--white);
  padding: 3rem 1.5rem;
  border-radius: 36px;
  box-shadow: 0 8px 28px var(--shadow-color);
  margin: 4rem 0;
}

.cards {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--light-blue);
  padding: 2.5rem;
  border-radius: 28px;
  box-shadow: 6px 6px 16px #cce3ff, -6px -6px 16px #fff;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 24px var(--accent-color), -8px -8px 24px #d0e6ff;
}

.card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* Seção Sobre */
.sobre {
  background: #e4efff;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 36px;
  margin: 4rem 0;
}

.sobre h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 2rem;
}

.sobre p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-color);
  line-height: 1.85;
}

/* Seção Contato */
.contato {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 4rem 1.5rem;
  color: var(--white);
  border-radius: 36px;
  text-align: center;
  margin: 4rem 0;
}

.contato h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contato p {
  font-size: 1.3rem;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

.contato .btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 1.1rem 3rem;
  font-weight: 700;
}

.contato .btn:hover,
.contato .btn:focus {
  background: var(--accent-color);
  color: var(--white);
}

/* Nuvem */
.nuvem-horas {
  padding: 4rem 1.5rem;
  background-color: #f1f5fb;
  border-radius: 32px;
}

.nuvem-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.nuvem-conteudo,
.nuvem-beneficios {
  flex: 1;
  min-width: 300px;
}

.nuvem-conteudo h2 {
  font-size: 2.2rem;
  color: #00397a;
  margin-bottom: 1rem;
}

.nuvem-conteudo p {
  color: #444;
}

.btn-azul {
  background-color: #0047FF;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-azul:hover {
  background-color: #002d99;
}

.nuvem-beneficios h4 {
  background-color: #0047FF;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: inline-block;
}

.barra {
  margin-bottom: 1rem;
}

.barra p {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.barra-cinza {
  width: 100%;
  height: 8px;
  background-color: #dcdcdc;
  border-radius: 4px;
  overflow: hidden;
}

.barra-azul {
  height: 100%;
  background-color: #0047FF;
}

/* Nuvem */
.nuvem-horas {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  border-top: 4px solid var(--accent-color);
}

.nuvem-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.nuvem-conteudo {
  text-align: left;
}

.nuvem-conteudo h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.nuvem-conteudo p {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-azul {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(61, 169, 252, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-azul:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.nuvem-beneficios {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nuvem-beneficios h4 {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(30, 100, 242, 0.4);
}

.barra {
  margin-bottom: 0.5rem;
}

.barra p {
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-color);
}

.barra-cinza {
  width: 100%;
  height: 12px;
  background-color: #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.06);
}

.barra-azul {
  height: 100%;
  background: linear-gradient(to right, #3da9fc, #1e64f2);
  border-radius: 6px 0 0 6px;
  transition: width 0.5s ease;
}

.dashboard-metricas {
  background: #0102038c;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.dashboard-metricas .intro h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.dashboard-metricas .intro p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
}

.metrics-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.metric {
  background: #1e293b;
  padding: 2rem;
  border-radius: 1rem;
  width: 200px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.metric h3 {
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
  color: #38bdf8;
}

.metric p {
  font-size: 1rem;
  color: #94a3b8;
}


body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.footer {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f6 100%);
  color: #1a1a1a;
  padding: 100px 40px 60px;
  font-family: 'Inter', sans-serif;
  border-top: 5px solid #0057d9;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto 60px auto;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #003d99;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
  text-transform: none; /* Mantém apenas a primeira letra maiúscula */
  border-left: 4px solid #0057d9;
  padding-left: 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-section ul li a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0057d9;
  transform: translateX(6px);
}

.footer-section address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.footer-social {
  text-align: center;
  margin-bottom: 50px;
}

.footer-social p {
  font-size: 16px;
  color: #2c2c2c;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-social a {
  margin: 0 10px;
  font-size: 24px;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #0057d9;
  transform: scale(1.2);
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 60px 0;
  opacity: 0.3;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 16px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #000;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.map-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}




