:root {
  --wa-green: #25D366;
  --wa-teal: #128C7E;
  --wa-dark: #075E54;
  --wa-light: #DCF8C6;
  --wa-bg: #ECE5DD;
  --wa-white: #ffffff;
  --wa-black: #111b21;
  --wa-gray: #667781;
  --wa-green-glow: rgba(37, 211, 102, 0.35);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--wa-black);
  background: var(--wa-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(165deg, var(--wa-dark) 0%, #0a4d44 25%, var(--wa-teal) 55%, var(--wa-green) 100%);
  overflow: hidden;
  padding: 72px 24px 100px;
}

.hero__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 380px);
    gap: 48px;
    align-items: center;
    text-align: left;
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 18s infinite ease-in-out;
}

.hero__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 12px; height: 12px; }
.hero__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: -3s; width: 6px; height: 6px; }
.hero__particles span:nth-child(3) { left: 45%; top: 15%; animation-delay: -6s; width: 10px; height: 10px; }
.hero__particles span:nth-child(4) { left: 65%; top: 70%; animation-delay: -9s; width: 14px; height: 14px; }
.hero__particles span:nth-child(5) { left: 80%; top: 30%; animation-delay: -2s; width: 8px; height: 8px; }
.hero__particles span:nth-child(6) { left: 15%; top: 80%; animation-delay: -5s; width: 10px; height: 10px; }
.hero__particles span:nth-child(7) { left: 55%; top: 45%; animation-delay: -8s; width: 6px; height: 6px; }
.hero__particles span:nth-child(8) { left: 90%; top: 55%; animation-delay: -1s; width: 12px; height: 12px; }
.hero__particles span:nth-child(9) { left: 35%; top: 85%; animation-delay: -7s; width: 8px; height: 8px; }
.hero__particles span:nth-child(10) { left: 70%; top: 10%; animation-delay: -4s; width: 10px; height: 10px; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
  25% { transform: translateY(-40px) translateX(20px) scale(1.2); opacity: 0.7; }
  50% { transform: translateY(-80px) translateX(-10px) scale(0.8); opacity: 0.3; }
  75% { transform: translateY(-30px) translateX(30px) scale(1.1); opacity: 0.6; }
}

/* ===================== CHAT ANIMATION (WhatsApp mockup reference) ===================== */

.wa-mockup-ref {
  --a-bg: #111B21;
  --a-hdr: #1F2C34;
  --a-text: #E9EDEF;
  --a-text2: #8696A0;
  --a-icon: #AEBAC1;
  --a-sep: #233239;
}

.hero__chat {
  pointer-events: none;
  order: 2;
}

@media (max-width: 1023px) {
  .hero__chat {
    margin-top: 40px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .hero__chat {
    justify-self: end;
  }
}

.chat__phone {
  width: 280px;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  background: var(--a-bg);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 2px #2a2a2a, 0 0 0 8px #1a1a1a;
  opacity: 0;
  transform: translateY(20px);
  animation: phoneAppear 0.8s 0.5s forwards ease-out;
}

@keyframes phoneAppear {
  to { opacity: 0.92; transform: translateY(0); }
}

.chat__statusbar {
  height: 26px;
  background: var(--a-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.chat__statusbar-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}

.chat__statusbar-right svg {
  display: block;
  color: inherit;
}

.chat__app {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--a-bg);
}

.chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--a-hdr);
  flex-shrink: 0;
  height: 50px;
}

.chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--wa-white);
  flex-shrink: 0;
}

.chat__avatar--icon .chat__avatar-img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.chat__avatar--icon {
  background: transparent;
}

.chat__header-info {
  display: flex;
  flex-direction: column;
}

.chat__header-name {
  color: var(--a-text);
  font-size: 15px;
  font-weight: 500;
}

.chat__header-status {
  color: var(--a-text2);
  font-size: 11px;
}

.chat__messages {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background: #0B141A;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chat__bubble {
  max-width: 85%;
  padding: 6px 10px 4px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
  position: relative;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  animation: msgAppear 0.4s forwards ease-out;
}

.chat__bubble--in {
  align-self: flex-start;
  max-width: 92%;
  background: transparent;
  color: var(--a-text);
  padding: 0;
}

.chat__bubble-inner {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.chat__avatar--bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #1F2C34;
}

.chat__avatar--bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat__bubble-content {
  background: #1F2C34;
  color: var(--a-text);
  padding: 6px 10px 4px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.chat__bubble--out {
  align-self: flex-end;
  background: #005C4B;
  color: #E9EDEF;
  border-top-right-radius: 2px;
}

.chat__bubble--1 { animation-delay: 1.2s; }
.chat__bubble--2 { animation-delay: 2.2s; }
.chat__bubble--3 { animation-delay: 3.4s; }
.chat__bubble--4 { animation-delay: 4.6s; }
.chat__bubble--5 { animation-delay: 5.8s; }

@keyframes msgAppear {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat__author {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.chat__navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  height: 28px;
  background: var(--a-bg);
  flex-shrink: 0;
}

.chat__nav-sq {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  border: 1.8px solid var(--a-icon);
}

.chat__nav-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.8px solid var(--a-icon);
}

.chat__nav-tri {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 9px solid var(--a-icon);
}

.chat__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 0.6rem;
  opacity: 0.5;
  margin-top: 2px;
  white-space: nowrap;
}

.chat__check {
  color: #53bdeb;
  flex-shrink: 0;
}

.chat__typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
}

.chat__typing span {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.chat__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.hero__content {
  position: relative;
  order: 1;
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--wa-white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.hero__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
}

@media (max-width: 1023px) {
  .hero__disclaimer {
    text-align: center;
  }
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--wa-white);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero__highlight {
  background: linear-gradient(135deg, var(--wa-light), rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px;
  line-height: 1.7;
}

.hero__subtitle strong {
  color: var(--wa-white);
  font-weight: 700;
}

@media (max-width: 1023px) {
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }
}

.hero__cta {
  margin-bottom: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__stat strong {
  color: var(--wa-white);
  font-weight: 700;
}

@media (max-width: 1023px) {
  .hero__stats {
    justify-content: center;
  }
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn--primary {
  background: var(--wa-white);
  color: var(--wa-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
  padding: 18px 36px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--wa-dark), var(--wa-teal));
  color: var(--wa-white);
  box-shadow: 0 4px 24px var(--wa-green-glow);
}

.btn--full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--wa-green-glow);
}

.btn--full:active {
  transform: translateY(0);
}

.btn--success {
  background: var(--wa-green) !important;
  color: var(--wa-white) !important;
}

/* ===================== SCROLL INDICATOR ===================== */

.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-indicator span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
}

.hero__scroll-indicator span::after {
  content: "";
  display: block;
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ===================== SECTION COMMON ===================== */

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  color: var(--wa-black);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section__subtitle {
  text-align: center;
  color: var(--wa-gray);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* ===================== ABOUT ===================== */

.about {
  padding: 100px 0;
  background: var(--wa-white);
  position: relative;
  overflow: visible;
}

.about#sobre {
  scroll-margin-top: 1rem;
}

.about .container {
  position: relative;
}

/* Circular layout: circle rotates like a wheel; cards stay fixed */
.about__circle-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 700px;
  margin: 0 auto 60px;
  overflow: visible;
  min-height: 700px;
}

@keyframes aboutCircleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes aboutCounterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.about__wheel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about__circle-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--wa-teal);
  pointer-events: none;
}

.about__cross-lines line {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-opacity: 0.35;
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  animation: aboutDashFlow 1.2s linear infinite;
}

.about__cross-lines line:nth-child(2) { animation-delay: -0.15s; }
.about__cross-lines line:nth-child(3) { animation-delay: -0.3s; }
.about__cross-lines line:nth-child(4) { animation-delay: -0.45s; }
.about__cross-lines line:nth-child(5) { animation-delay: -0.6s; }
.about__cross-lines line:nth-child(6) { animation-delay: -0.1s; }
.about__cross-lines line:nth-child(7) { animation-delay: -0.25s; }
.about__cross-lines line:nth-child(8) { animation-delay: -0.5s; }
.about__cross-lines line:nth-child(9) { animation-delay: -0.35s; }
.about__cross-lines line:nth-child(10) { animation-delay: -0.2s; }
.about__cross-lines line:nth-child(11) { animation-delay: -0.55s; }

@keyframes aboutDashFlow {
  to { stroke-dashoffset: -24; }
}

.about__circle-wrap .about__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  margin-left: -140px;
  margin-top: -44px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(18, 140, 126, 0.08));
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(7, 94, 84, 0.06);
}

.about__card__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

/* Cards pushed further out (1.4× radius) so card + text stay outside polygon */
.about__circle-wrap .about__card--1 { transform: translate(0, -336px); }
.about__circle-wrap .about__card--2 { transform: translate(262px, -210px); }
.about__circle-wrap .about__card--3 { transform: translate(328px, 76px); }
.about__circle-wrap .about__card--4 { transform: translate(146px, 302px); }
.about__circle-wrap .about__card--5 { transform: translate(-141px, 305px); }
.about__circle-wrap .about__card--6 { transform: translate(-328px, 76px); }
.about__circle-wrap .about__card--7 { transform: translate(-262px, -210px); }

.about__circle-wrap .about__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--wa-green), var(--wa-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__circle-wrap .about__card:hover::before {
  transform: scaleX(1);
}

.about__circle-wrap .about__card:hover {
  box-shadow: 0 12px 40px rgba(7, 94, 84, 0.12);
  border-color: rgba(37, 211, 102, 0.28);
  z-index: 2;
}

.about__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  border-radius: 9px;
  color: var(--wa-white);
}

.about__icon svg {
  width: 20px;
  height: 20px;
}

.about__card__inner .about__icon {
  margin-bottom: 0;
}

.about__card__text {
  min-width: 0;
  flex: 1;
  max-width: 100%;
}

.about__card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--wa-black);
}

.about__card p {
  color: var(--wa-gray);
  font-size: 0.8rem;
  line-height: 1.45;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* ===================== TESTIMONIALS LOGOS CAROUSEL ===================== */

.testimonials-logos {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--wa-dark) 0%, #0a4d44 100%);
  position: relative;
}

.testimonials-logos__title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.testimonials-logos__wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.testimonials-logos__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.testimonials-logos__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--wa-dark) 0%, transparent 100%);
}

.testimonials-logos__fade--right {
  right: 0;
  left: auto;
  background: linear-gradient(to left, var(--wa-dark) 0%, transparent 100%);
}

.testimonials-logos__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: testimonialsLogosScroll 45s linear infinite;
  padding: 0 24px;
}

.testimonials-logos__track:hover {
  animation-play-state: paused;
}

@keyframes testimonialsLogosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials-logos__item {
  flex-shrink: 0;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.testimonials-logos__item img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.testimonials-logos__item--light img {
  filter: invert(1);
}

.testimonials-logos__item:hover {
  opacity: 0.85;
  filter: grayscale(0.6);
}

@media (max-width: 768px) {
  .testimonials-logos {
    padding: 40px 0;
  }
  .testimonials-logos__title {
    margin-bottom: 24px;
    font-size: 0.85rem;
  }
  .testimonials-logos__item img {
    height: 32px;
  }
}

/* ===================== PARTNERS ===================== */

.partners {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(37, 211, 102, 0.1);
}

.partners__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--wa-black);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  width: 100%;
}

.partners__title-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners__title-logo .meta-logo {
  width: 32px;
  height: 32px;
  display: block;
}

.partners__subtitle {
  text-align: center;
  color: var(--wa-gray);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partners__card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--wa-white);
  border: 1px solid #eef0f2;
  transition: all var(--transition);
  position: relative;
}

.partners__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(7, 94, 84, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
}

.partners__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--wa-white);
}

.partners__icon--tech {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.partners__icon--solution {
  background: linear-gradient(135deg, var(--wa-teal), var(--wa-green));
}

.partners__icon--business {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.partners__icon--agent {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.partners__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wa-black);
  margin-bottom: 8px;
}

.partners__card p {
  font-size: 0.85rem;
  color: var(--wa-gray);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners__grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== FORM SECTION ===================== */

.apply {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fdf9 0%, var(--wa-white) 100%);
}

.apply__requisitos {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: rgba(7, 94, 84, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--wa-teal);
}

.apply__requisitos-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wa-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.apply__requisitos-text {
  font-size: 0.95rem;
  color: var(--wa-black);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.apply__form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--wa-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 40px rgba(7, 94, 84, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.1);
  transition: all var(--transition);
}

.apply__form:hover {
  box-shadow: 0 8px 48px rgba(7, 94, 84, 0.12);
}

.form__group {
  margin-bottom: 20px;
  flex: 1;
}

.form__row {
  display: flex;
  gap: 16px;
}

.form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wa-black);
  margin-bottom: 8px;
}

.form__required {
  color: var(--wa-green);
  font-weight: 700;
}

.form__group input,
.form__group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  background: var(--wa-white);
  color: var(--wa-black);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23667781' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form__group input::placeholder {
  color: #b0b8bf;
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--wa-green);
  box-shadow: 0 0 0 4px var(--wa-green-glow);
}

.form__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #667781;
}

.form__error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #c53030;
  font-weight: 500;
}

.form__group input.form__input--show-error {
  border-color: #c53030;
}

.form--success .form__group input,
.form--success .form__group select {
  border-color: var(--wa-green);
}

/* ===================== THANK YOU PAGE ===================== */

.thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, #f7fdf9 0%, var(--wa-white) 100%);
}

.thankyou__card {
  max-width: 480px;
  text-align: center;
  background: var(--wa-white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(7, 94, 84, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.12);
}

.thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  color: var(--wa-white);
  margin-bottom: 24px;
}

.thankyou__title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--wa-black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.thankyou__text {
  color: var(--wa-gray);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ===================== FOOTER ===================== */

.footer {
  padding: 40px 0;
  background: var(--wa-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wa-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 768px) {
  .about__circle-wrap {
    max-width: 520px;
    height: 520px;
  }

  .about__circle-wrap .about__card {
    width: 220px;
    margin-left: -110px;
    margin-top: -36px;
    padding: 12px 14px;
  }

  .about__circle-wrap .about__card--1 { transform: translate(0, -250px); }
  .about__circle-wrap .about__card--2 { transform: translate(195px, -155px); }
  .about__circle-wrap .about__card--3 { transform: translate(244px, 56px); }
  .about__circle-wrap .about__card--4 { transform: translate(107px, 224px); }
  .about__circle-wrap .about__card--5 { transform: translate(-105px, 226px); }
  .about__circle-wrap .about__card--6 { transform: translate(-244px, 56px); }
  .about__circle-wrap .about__card--7 { transform: translate(-195px, -155px); }
  .about__circle-wrap .about__card h3 { font-size: 0.88rem; }
  .about__circle-wrap .about__card p { font-size: 0.75rem; }

  .form__row {
    flex-direction: column;
    gap: 0;
  }

  .apply__form {
    padding: 28px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .chat__phone {
    width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 580px) {
  .about__circle-wrap {
    max-width: 380px;
    height: 380px;
  }

  .about__circle-wrap .about__card {
    width: 180px;
    margin-left: -90px;
    margin-top: -34px;
    padding: 10px 12px;
  }

  .about__circle-wrap .about__card--1 { transform: translate(0, -182px); }
  .about__circle-wrap .about__card--2 { transform: translate(142px, -114px); }
  .about__circle-wrap .about__card--3 { transform: translate(178px, 41px); }
  .about__circle-wrap .about__card--4 { transform: translate(78px, 163px); }
  .about__circle-wrap .about__card--5 { transform: translate(-76px, 165px); }
  .about__circle-wrap .about__card--6 { transform: translate(-178px, 41px); }
  .about__circle-wrap .about__card--7 { transform: translate(-142px, -114px); }
  .about__circle-wrap .about__card h3 { font-size: 0.82rem; }
  .about__circle-wrap .about__card p { font-size: 0.7rem; }
}

/* Mobile: drop heptagon, stack cards vertically */
@media (max-width: 640px) {
  .about__circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    max-width: none;
    min-height: 0;
    margin-bottom: 48px;
  }

  .about__circle-wrap .about__wheel,
  .about__circle-wrap .about__circle-lines {
    display: none;
  }

  .about__circle-wrap .about__card {
    position: static;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 16px;
    margin-left: auto;
    margin-top: 0;
    transform: none;
    padding: 16px 18px;
  }

  .about__circle-wrap .about__card:last-child {
    margin-bottom: 0;
  }

  .about__circle-wrap .about__card h3 {
    font-size: 1rem;
  }

  .about__circle-wrap .about__card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 16px 72px;
  }

  .hero__chat {
    display: none;
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-height: 48px;
    min-width: 44px;
  }

  .btn--full {
    padding: 16px 28px;
  }

  .about {
    padding: 60px 0 80px;
  }

  .apply {
    padding: 60px 0 80px;
  }

  .apply__form {
    padding: 24px 20px;
  }

  .form__group input,
  .form__group select {
    min-height: 48px;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .section__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
