:root {
  --primary: #071224;
  --primary-soft: #0b1931;
  --secondary: #0e223f;
  --accent: #d4af37;
  --accent-soft: #f4d980;
  --text: #f8fafc;
  --muted: #9caac0;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --card: rgba(255, 255, 255, 0.035);
  --green-wa: #25d366;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%),
    linear-gradient(180deg, #05101f 0%, #071224 50%, #06101d 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
.header-glass {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5, 16, 31, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.header-glass.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  background: rgba(5, 16, 31, 0.94);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: #dde6f4;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: var(--accent-soft);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-nav {
  text-decoration: none;
  color: #071224;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: 0.25s ease;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.18);
}

.btn-nav:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 10rem 0 6rem;
  display: flex;
  align-items: center;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 999px;
}

.hero-text h1 {
  margin: 1.6rem 0 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.hero-text h1 span {
  color: var(--accent-soft);
}

.hero-text p {
  max-width: 650px;
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-main,
.btn-sub {
  text-decoration: none;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-main {
  color: #071224;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 14px 26px rgba(212, 175, 55, 0.18);
}

.btn-main:hover {
  transform: translateY(-3px);
}

.btn-sub {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.btn-sub:hover {
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--accent-soft);
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.12);
  top: 120px;
  right: 10%;
}

.hero-bg-glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(53, 93, 175, 0.18);
  bottom: 120px;
  left: 5%;
}

/* TRUST */
.trust-strip {
  padding: 1.2rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: #dfe7f3;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.trust-item i {
  color: var(--accent-soft);
  width: 20px;
  height: 20px;
}

/* HEADINGS */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}

.section-heading h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 0.7rem;
}

.section-heading p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ABOUT */
.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.about-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 700px;
}

.about-highlights {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.about-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}

.about-highlight i {
  color: var(--accent-soft);
  width: 24px;
  height: 24px;
  margin-top: 0.2rem;
}

.about-highlight h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.about-highlight p {
  margin: 0;
  font-size: 0.94rem;
}

.about-card {
  height: 100%;
}

.about-card-inner {
  height: 100%;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-mini-label {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-card-inner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-card-inner p {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-list li {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: #eef3fb;
}

/* PARTNERS */
.partners-section {
  padding: 6rem 0;
  background: #06101d;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.partners-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partnerScroll 34s linear infinite;
}

.partner-item {
  width: 220px;
  min-width: 220px;
  height: 110px;
  margin: 0 0.75rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.partner-item img {
  max-width: 130px;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.25s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SOLUTIONS */
.solutions-section {
  padding: 6rem 0;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 2rem;
  transition: 0.3s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.25);
}

.card i {
  color: var(--accent-soft);
  width: 34px;
  height: 34px;
  margin-bottom: 1.3rem;
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* CTA */
.cta-section {
  padding: 0 0 6rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212,175,55,0.13), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55,0.18);
}

.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.cta-box p {
  color: var(--muted);
  max-width: 650px;
}

/* CONTACT */
.contact-section {
  padding: 0 0 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.form-card,
.faq-container,
.mini-contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-card {
  padding: 2.2rem;
}

.form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.55rem;
}

.form-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem;
  background: #081323;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: 0.2s ease;
  margin-bottom: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.96rem;
  color: #06101d;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  transition: 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

.contact-info {
  display: grid;
  gap: 1.3rem;
}

.faq-container {
  padding: 2rem;
}

.faq-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}

.faq-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-contact-card {
  padding: 1.5rem;
}

.mini-contact-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.mini-contact-card p {
  color: var(--muted);
  margin-bottom: 0.45rem;
}

/* FOOTER */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.14);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-content h3 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.25rem;
}

.footer-content p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dce5f1;
  text-decoration: none;
}

/* WHATS */
.whats-floating {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.whats-tooltip {
  background: #0d1a2e;
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateX(15px);
  transition: 0.28s ease;
  pointer-events: none;
}

.whats-tooltip span {
  display: block;
  font-size: 0.72rem;
  color: #aab8cd;
}

.whats-tooltip strong {
  color: #fff;
  font-size: 0.9rem;
}

.whats-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 34px rgba(37, 211, 102, 0.24),
    0 0 0 8px rgba(37, 211, 102, 0.08);
  transition: 0.25s ease;
}

.whats-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.whats-floating:hover .whats-circle {
  transform: scale(1.08);
}

.whats-floating:hover .whats-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .nav-menu,
  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem 1.2rem;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #dce5f1;
    font-weight: 500;
  }

  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-section {
    min-height: auto;
    padding: 8.5rem 0 4.5rem;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-heading h2,
  .about-content h2,
  .cta-box h2,
  .form-card h3 {
    font-size: 1.8rem;
  }

  .grid-cards,
  .trust-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .partner-item {
    width: 180px;
    min-width: 180px;
    height: 90px;
  }

  .partner-item img {
    max-width: 110px;
    max-height: 38px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-img {
    height: 46px;
  }

  .whats-tooltip {
    display: none;
  }

  .whats-circle {
    width: 58px;
    height: 58px;
  }

  .whats-icon {
    width: 28px;
    height: 28px;
  }
}