/*========== ROOT ==========*/
:root {

  font-family: "Segoe UI", Roboto, Arial, sans-serif;

  --accent-blue: #2563eb;
  --blue-light: #3b82f6;
  --bg1: #f8fafc;
  --dark: #0f172a;
  --gray: #64748b;
  --card-bg: rgba(17, 24, 39, 0.75);
  --primary: #ffeed6;
  --secondary: #f1d4aa;
  --white: #ffffff;
  --black: #000000;
  --border: rgba(255, 255, 255, 0.08);
  --bg: #020617;
  --banner-color-p: #cbd5e1;
  --dark-gray: #1e293b;
  --dark-gray-hover: #0f172a;
  --overlay: rgba(0, 0, 0, 0.6);
  --radius: 20px;
  --transition: 0.3s ease;
  --transition2: 0.5s ease;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow1: 0 -5px 20px rgba(0, 0, 0, 0.25);
  --glass: rgba(255, 255, 255, 0.06);
  --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #06b6d4 100%);

}

/*========== RESET ==========*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 30%), #070b11;
  color: var(--banner-color-p);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 90px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(92%, 1200px);
  margin-inline: auto;
}

/*========== SCROLLBAR ==========*/
html {
  scrollbar-width: thin;
  scrollbar-color: #22c55e #070b11;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-corner {
  background: #070b11;
}

/* ===== LOADING ===== */
.partner-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.partner-loading-content {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.partner-loading-content p {
  margin-top: 1rem;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
}

.partner-spinner {
  width: 55px;
  height: 55px;
  margin: auto;
  border: 5px solid #e5e5e5;
  border-top: 5px solid #22c55e;
  border-radius: 50%;
  animation: partnerSpin 0.8s linear infinite;
}

@keyframes partnerSpin {
  100% {
    transform: rotate(360deg);
  }
}

/*========== HEADER ==========*/
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
}

.navbar {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 14px;
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 14px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-link i {
  font-size: 0.95rem;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.nav-link.active {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
}

.logo {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img {
  object-fit: contain;
}

@media (max-width: 900px) {
  .navbar {
    padding: 10px;
    gap: 6px;
  }

  .nav-link {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    min-width: 62px;
    font-size: 0.72rem;
  }

  .nav-link i {
    font-size: 1rem;
  }

}

@media (max-width: 600px) {

  .header {
    top: auto;
    bottom: 12px;
    width: calc(100% - 20px);
  }

  .navbar {
    border-radius: 22px;
  }

  .nav-link span {
    display: none;
  }

  .nav-link {
    padding: 12px;
  }

}

/*========== HERO ==========*/
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 20px 100px;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.blur-1 {
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.18);
  top: -80px;
  left: -100px;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #4ade80;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  max-width: 620px;
  color: var(--banner-color-p);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 38px;
}

.hero-buttons {
  margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-4px);
}

.hero-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-card {
  min-width: 140px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, 0.25);
}

.hero-card strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.hero-card span {
  color: var(--banner-color-p);
  font-size: 0.95rem;
}

.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.hero-image-wrapper img {
  width: 100%;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*========== RESPONSIVO ==========*/
@media (max-width: 980px) {

  .hero {
    padding-top: 140px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-text p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-cards {
    justify-content: center;
  }

  .hero-img {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 420px;
  }

}

@media (max-width: 600px) {

  .hero {
    padding:
      40px 10px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    width: 100%;
  }

  .hero-image-wrapper {
    padding: 18px;
    border-radius: 28px;
  }
}

/*========== TOP ==========*/
.top-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
}

.top-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto auto 70px;
  text-align: center;
}

.top-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #4ade80;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.top-header h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.top-header h2 span {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-header p {
  color: #94a3b8;
  font-size: 1.08rem;
  line-height: 1.8;
}

.top-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.top-card {
  position: relative;
  padding: 38px 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.top-card:hover {
  transform: translateY(-10px);
  border-color: rgba(34, 197, 94, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.top-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.top-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.top-card-text h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.top-card-text p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 980px) {

  .top-container {
    grid-template-columns: 1fr;
  }

  .top-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {

  .top-section {
    padding:
      90px 18px;
  }

  .top-header {
    margin-bottom: 50px;
  }

  .top-header h2 {
    font-size: 2.3rem;
  }

  .top-header p {
    font-size: 1rem;
  }

  .top-card {
    border-radius: 24px;
  }

  .top-icon {
    width: 72px;
    height: 72px;
  }
}



/*========== SERVICES ==========*/
.services-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
}

.services-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto auto 70px;
  text-align: center;
}

.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #4ade80;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.services-header h2 {
  color: #fff;

  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;

  margin-bottom: 18px;
}

.services-header h2 span {
  background:
    linear-gradient(135deg,
      #4ade80,
      #22c55e);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-header p {
  color: #94a3b8;

  font-size: 1.08rem;
  line-height: 1.8;
}

/*========== GRID ==========*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/*========== CARD ==========*/
.service-card {
  position: relative;

  padding: 34px 28px;

  border-radius: 30px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);

  border-color: rgba(34, 197, 94, 0.22);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35);
}

/*========== ICON ==========*/
.service-icon {
  width: 78px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  border-radius: 24px;

  background:
    linear-gradient(145deg,
      rgba(34, 197, 94, 0.18),
      rgba(34, 197, 94, 0.06));

  border: 1px solid rgba(34, 197, 94, 0.15);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);

  box-shadow:
    0 12px 28px rgba(34, 197, 94, 0.2);
}

.service-icon i {
  color: #4ade80;
  font-size: 1.9rem;
}

/*========== TEXT ==========*/
.service-card h3 {
  color: #fff;

  font-size: 1.35rem;
  font-weight: 700;

  margin-bottom: 14px;
}

.service-card p {
  color: #94a3b8;

  line-height: 1.8;
  font-size: 1rem;
}

/*========== RESPONSIVO ==========*/
@media (max-width: 1100px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .services-section {
    padding:
      90px 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 24px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 1.7rem;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .services-header h2 {
    font-size: 2.3rem;
  }

  .services-header p {
    font-size: 1rem;
  }
}




/*========== FAQ ==========*/
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
}

.faq-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #4ade80;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.faq-header h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.faq-header h2 span {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-header p {
  color: #94a3b8;
  font-size: 1.08rem;
  line-height: 1.8;
}

.faq-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
  border-color: rgba(34, 197, 94, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-question div {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.faq-question div i {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 1.2rem;
}

.faq-question span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-toggle {
  color: #4ade80;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 28px 104px;
  color: #94a3b8;
  line-height: 1.9;
  font-size: 1rem;
}

@media (max-width: 700px) {

  .faq-section {
    padding:
      90px 18px;
  }

  .faq-header {
    margin-bottom: 50px;
  }

  .faq-header h2 {
    font-size: 2.3rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 22px 20px;
  }

  .faq-question div {
    gap: 14px;
  }

  .faq-question div i {
    width: 48px;
    height: 48px;

    border-radius: 16px;

    font-size: 1rem;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer p {
    padding:
      0 20px 24px 20px;
  }
}


/*========== FOOTER ==========*/
.footer {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
}

.footer-logo img {
  width: 100%;
  object-fit: contain;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-column a {
  display: block;
  margin-bottom: 14px;
  color: #94a3b8;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a:hover {
  color: #4ade80;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #64748b;

  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom strong {
  color: #fff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

@media (max-width: 980px) {

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 600px) {

  .footer {
    padding:
      80px 18px 100px;
  }

  .footer-top {
    gap: 50px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }
}