
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --bg: #f5f8ff;
  --bg-2: #ffffff;
  --card: #ffffff;
  --primary: #006dff;
  --secondary: #00b8d9;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 109, 255, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 184, 217, 0.10), transparent 32%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, #050816, #0b1024);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo img{
  height: 130px;
  width: auto;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 109, 255, 0.22);
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d7e2ff;
  font-size: 15px;
  font-weight: 600;
}

.menu a:hover,
.menu a.active {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 35px rgba(0, 109, 255, 0.22);
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 109, 255, 0.28);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid rgba(0, 109, 255, 0.25);
  box-shadow: none;
}

.mobile-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.page-space {
  padding-top: 120px;
}

.hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 45px;
}

.badge {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(0, 109, 255, 0.08);
  border: 1px solid rgba(0, 109, 255, 0.14);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 22px;
}

h1 {
  color: var(--dark);
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.03;
  margin-bottom: 22px;
  letter-spacing: -1.4px;
}

h1 span,
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p,
.page-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.stat strong {
  display: block;
  font-size: 26px;
  color: var(--primary);
}

.stat small {
  color: var(--muted);
}

.hero-card {
  min-height: 520px;
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(15, 23, 42, 0.12)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.62));
}

.floating-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.floating-card h3 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 8px;
}

.floating-card p {
  color: var(--muted);
  line-height: 1.6;
}

section {
  padding: 95px 0;
}

.page-intro {
  text-align: center;
  max-width: 850px;
  margin: auto;
  padding: 60px 0 35px;
}

.page-intro h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-title h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-title p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.about-img {
  height: 460px;
  border-radius: 30px;
  background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-content {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-content h3 {
  color: var(--dark);
  font-size: 32px;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-list div {
  color: var(--text);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  transition: 0.3s;
  min-height: 245px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,109,255,0.28);
  box-shadow: 0 22px 55px rgba(0, 109, 255, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 109, 255, 0.08);
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  border-radius: 34px;
  padding: 55px;
  background: linear-gradient(135deg, rgba(0,109,255,0.08), rgba(0,184,217,0.10));
  border: 1px solid rgba(0, 109, 255, 0.14);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: var(--dark);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.cta p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-info,
.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info h3,
.form-card h3 {
  color: var(--dark);
  font-size: 28px;
  margin-bottom: 18px;
}

.info-item {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.6;
}

form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 15px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--dark);
  outline: none;
  font-size: 15px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.10);
}

footer {
  padding: 34px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #ffffff;
}

@media (max-width: 900px) {
  .mobile-btn {
    display: block;
  }

  .menu {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    padding: 24px;
    background: #0b1024;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .menu.active {
    left: 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 115px;
    min-height: auto;
  }

  .stats,
  .services-grid,
  .input-row {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 32px;
  }

  .contact-info,
  .form-card,
  .about-content {
    padding: 24px;
  }

  h1 {
    letter-spacing: -0.7px;
  }

  .hero-card {
    min-height: 350px;
  }
}


/* Correção fundo cinza no celular */
@media (max-width: 768px){

  body{
    background:#ffffff !important;
  }

  body::before{
    background:none !important;
  }

  .hero,
  section,
  footer{
    background:#ffffff !important;
  }

}
