/* =============================================
   ALFAGEK TECNOLOGIA — LANDING PAGE v2
   Branco & Preto + Verde #04442C + Dourado #C9943A
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --green-dark: #022d1d;
  --green-primary: #04442C;
  --green-mid: #065c3a;
  --green-light: #0a7a4e;
  --gold-primary: #C9943A;
  --gold-light: #D4A84B;
  --gold-dim: #b07e28;

  /* Sem fundo colorido — puro branco/preto */
  --bg-white: #ffffff;
  --bg-black: #0a0a0a;
  --bg-card-white: #f8f8f8;
  --bg-card-black: rgba(255, 255, 255, 0.05);
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f4;
  --bg-card: #f8f8f8;
  --bg-card-hover: #f0f0f0;

  /* Gradients */
  --grad-green: linear-gradient(135deg, #04442C, #0a7a4e);
  --grad-gold: linear-gradient(135deg, #C9943A, #D4A84B);
  --grad-green-gold: linear-gradient(135deg, #04442C 0%, #C9943A 100%);
  --accent-gradient: linear-gradient(135deg, #04442C, #0a7a4e);
  --accent-gradient-full: linear-gradient(135deg, #04442C 0%, #0a7a4e 100%);

  /* Text — seções claras */
  --text-primary: #0a0a0a;
  --text-secondary: #444444;
  --text-muted: #888888;
  /* Text — seções escuras */
  --text-dark-primary: #ffffff;
  --text-dark-secondary: #cccccc;
  --text-dark-muted: #888888;

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-green: rgba(4, 68, 44, 0.3);
  --border-gold: rgba(201, 148, 58, 0.4);
  /* Aliases usados internamente */
  --border-glass: rgba(0, 0, 0, 0.1);
  --border-accent: rgba(4, 68, 44, 0.3);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-dark: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(4, 68, 44, 0.15);
  --shadow-btn-green: 0 4px 20px rgba(4, 68, 44, 0.4);
  --shadow-btn-gold: 0 4px 20px rgba(201, 148, 58, 0.4);
  --shadow-btn: 0 4px 20px rgba(4, 68, 44, 0.4);

  /* Shapes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: #ffffff;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--green-primary);
  border-radius: 3px;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Seções alternadas: branco e preto
   ============================================ */
.section-white {
  background: #ffffff;
  color: #0a0a0a;
}

.section-black {
  background: #0a0a0a;
  color: #ffffff;
}

.section-black .section-title {
  color: #ffffff;
}

.section-black .section-desc {
  color: #cccccc;
}

.section-black .gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-black .section-tag {
  background: rgba(201, 148, 58, 0.15);
  border-color: rgba(201, 148, 58, 0.4);
  color: var(--gold-primary);
}

.section-black .text-muted {
  color: #888;
}

/* --- Utility pills / tags --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(4, 68, 44, 0.07);
  border: 1px solid rgba(4, 68, 44, 0.25);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0a0a0a;
}

/* Títulos brancos (seções pretas) são sobrescritos por .section-black */

.gradient-text {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dourado para .gradient-gold */
.gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(4, 68, 44, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 1.5px solid var(--border-accent);
}

.btn-outline:hover {
  background: rgba(4, 68, 44, 0.06);
  border-color: var(--green-mid);
  color: var(--green-mid);
}

/* Botão outline dentro da banda verde (Rocketbot) */
.partner-hero-band .btn-outline {
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.partner-hero-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

#navbar.scrolled {
  background: #000000;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(201, 148, 58, 0.25));
}

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--green-mid);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  background: #000000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(4, 68, 44, 0.08);
  top: -120px;
  right: -80px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(4, 68, 44, 0.06);
  bottom: -80px;
  left: -60px;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(201, 148, 58, 0.05);
  top: 40%;
  left: 45%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  animation: pulse 2s infinite;
}

/* No hero (fundo preto), gradient-text fica dourado */
#hero .gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2.5s infinite;
}

.scroll-indicator svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dim);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* =============================================
   SERVICES
   ============================================= */
#services {
  padding: 110px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Large modern service icons */
.service-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}

.service-icon-wrap svg {
  width: 72px;
  height: 72px;
}

.service-icon-wrap.bi {
  background: rgba(201, 148, 58, 0.08);
  border: 1.5px solid rgba(201, 148, 58, 0.2);
}

.service-icon-wrap.rpa {
  background: rgba(201, 148, 58, 0.08);
  border: 1.5px solid rgba(201, 148, 58, 0.2);
}

.service-icon-wrap.ti {
  background: rgba(239, 222, 156, 0.1);
  border: 1px solid rgba(239, 222, 156, 0.2);
}

.service-icon-wrap.infra {
  background: rgba(201, 164, 95, 0.12);
  border: 1px solid rgba(201, 164, 95, 0.2);
}

.service-icon-wrap svg {
  width: 44px;
  height: 44px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-primary);
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.service-link:hover {
  gap: 12px;
  color: var(--green-mid);
}

/* =============================================
   METRICS
   ============================================= */
#metrics {
  padding: 90px 0;
  background: #0a0a0a;
  border-top: none;
  border-bottom: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.metric-item {
  text-align: center;
  padding: 24px;
}

.metric-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(201, 148, 58, 0.12);
  border: 1px solid rgba(201, 148, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.metric-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  display: block;
}

.metric-label {
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-top: 8px;
  font-weight: 600;
}

/* =============================================
   WHY ALFAGEK
   ============================================= */
#why {
  padding: 110px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-text .section-title {
  text-align: left;
}

.why-text .section-desc {
  text-align: left;
  margin: 0 0 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(4, 68, 44, 0.06);
}

.why-feature:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(4, 68, 44, 0.08);
  border: 1px solid rgba(4, 68, 44, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.feature-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.visual-card {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 32px rgba(4, 68, 44, 0.08);
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-glass);
}

.visual-dots {
  display: flex;
  gap: 6px;
}

.visual-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.visual-dots span:nth-child(1) {
  background: #ff5f57;
}

.visual-dots span:nth-child(2) {
  background: #febc2e;
}

.visual-dots span:nth-child(3) {
  background: #28c840;
}

.visual-title-bar {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 160px;
  margin-bottom: 20px;
}

.bar-item {
  flex: 1;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(224, 186, 124, 0.15);
  min-height: 20px;
  overflow: hidden;
}

.bar-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0.65;
}

.bar-labels {
  display: flex;
  gap: 10px;
}

.bar-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.visual-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.kpi-item {
  background: rgba(4, 68, 44, 0.05);
  border: 1px solid rgba(4, 68, 44, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.kpi-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-primary);
}

.kpi-name {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  padding: 110px 0;
  background: #0a0a0a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 148, 58, 0.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.quote-icon {
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.93rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.author-company {
  font-size: 0.78rem;
  color: #888888;
  margin-top: 2px;
}

.stars {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

/* =============================================
   ROCKETBOT PARTNER — Seção de Destaque Total
   ============================================= */
#partner {
  padding: 0 0 100px;
}

.partner-hero-band {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-mid) 50%, var(--green-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.partner-hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 30px,
      rgba(224, 186, 124, 0.03) 30px,
      rgba(224, 186, 124, 0.03) 60px);
}

.partner-hero-band::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(224, 186, 124, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.partner-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}

.partner-rocket-icon {
  width: 100px;
  height: 100px;
  background: rgba(224, 186, 124, 0.15);
  border: 2px solid rgba(224, 186, 124, 0.4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.partner-rocket-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(224, 186, 124, 0.15);
  border-radius: 30px;
}

.partner-rocket-icon svg {
  width: 56px;
  height: 56px;
}

.partner-band-text {
  min-width: 0;
}

.partner-official-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(224, 186, 124, 0.2);
  border: 1px solid rgba(224, 186, 124, 0.5);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.partner-band-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.partner-band-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-band-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.7;
}

.partner-band-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.partner-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.partner-feature-card {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(4, 68, 44, 0.06);
}

.partner-feature-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.pfcard-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(224, 186, 124, 0.1);
  border: 1px solid rgba(224, 186, 124, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pfcard-icon svg {
  width: 30px;
  height: 30px;
}

.pfcard-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pfcard-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(4, 68, 44, 0.05) 0%, rgba(4, 68, 44, 0.02) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: inherit;
  box-shadow: 0 2px 12px rgba(4, 68, 44, 0.06);
}

.contact-item:hover {
  border-color: var(--border-accent);
  transform: translateX(5px);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(224, 186, 124, 0.1);
  border: 1px solid rgba(224, 186, 124, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 26px;
  height: 26px;
}

.contact-item-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 4px 24px rgba(4, 68, 44, 0.08);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(4, 68, 44, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: #f7f5f0;
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-glass);
  background: var(--green-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(224, 186, 124, 0.2));
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Form success */
.form-success {
  display: none;
  padding: 16px;
  background: rgba(4, 68, 44, 0.08);
  border: 1px solid rgba(4, 68, 44, 0.25);
  border-radius: var(--radius-sm);
  color: var(--green-primary);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wpulse 2s infinite;
}

@keyframes wpulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 68, 44, 0.2), transparent);
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partner-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-band-ctas {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-divider {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .partner-features-grid {
    grid-template-columns: 1fr;
  }
}