/* ========================================
   GEOSITE TELECOM - Styles (Figma Faithful)
   ======================================== */

/* Google Fonts loaded via <link> in HTML <head> for performance */

/* --- CSS Custom Properties --- */
:root {
  --primary: #662D91;
  --primary-dark: #4B316B;
  --primary-darker: #3C2756;
  --secondary: #5A3E92;
  --light-purple: #CEADF2;
  --bg-purple: #f4edf8;
  --pink: #F8F1FD;
  --black: #404A4E;
  --dark: #272A2F;
  --dark-hover: #1C1E21;
  --neutral: #515861;
  --neutral-normal: #6F7985;
  --neutral-light: #BEC3C8;
  --neutral-lighter: #A1A8B0;
  --neutral-bg: #F5F7F9;
  --white: #FFFFFF;
  --white-hover: #FCFDFD;
  --yellow: #FFCC00;
  --error: #ef4444;
  --green: #006334;
  --green-light: #028C51;
  --green-bg: #f0fdf4;
  --blue: #00489A;
  --blue-bg: #eff6ff;
  --red-dark: #761919;

  --shadow-card: 0 2px 5.6px rgba(0, 0, 0, 0.25);
  --shadow-button: 0 0 7px rgba(0, 0, 0, 0.19);
  --shadow-soft: 0 0 12px rgba(0, 0, 0, 0.06);

  --font: 'Poppins', sans-serif;
  --max-width: 1440px;
  --content-padding: 104px;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global focus-visible */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white-hover);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background-color: var(--primary);
  transform: translateY(-1px);
}

.btn-featured {
  background-color: var(--primary) !important;
}

.btn-outline {
  background-color: var(--neutral-bg);
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 16px;
  height: 40px;
}

.btn-lg {
  padding: 10px 40px;
  height: 52px;
  min-width: 229px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 30px 64px;
}

.header.scrolled {
  background-color: var(--neutral-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 64px;
}

.header__inner {
  max-width: 1313px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--neutral-bg);
  border-radius: 24px;
  padding: 24px 32px;
  height: 92px;
}

.header.scrolled .header__inner {
  background: var(--neutral-bg);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 38px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header__nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.header__nav-links a:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 18px;
}

.mobile-nav.open {
  display: flex;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: 160px;
  padding-bottom: 0;
  background-color: var(--white-hover);
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__content {
  flex: 0 0 713px;
  padding-top: 56px;
}

.hero__label {
  font-size: 24px;
  font-weight: 500;
  color: #353535;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__description {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-hover);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 557px;
}

.hero__actions {
  display: flex;
  gap: 17px;
}

.hero__image {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__circle {
  width: 505px;
  height: 505px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  overflow: hidden;
  position: relative;
}

.hero__person-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ========================================
   SISTEMAS / O QUE FAZEMOS
   ======================================== */
/* --- O QUE FAZEMOS / SISTEMAS --- */
.sistemas {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(206, 173, 242, 0.12) 0%, rgba(206, 173, 242, 0.05) 10%, #fff 25%);
}

/* Wave divider between sections */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -40px;
  margin-bottom: -2px;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.wave-divider__svg {
  width: 100%;
  height: 120px;
  display: block;
}

@media (max-width: 1024px) {
  .wave-divider__svg { height: 90px; }
}

@media (max-width: 768px) {
  .wave-divider__svg { height: 40px; }
}

.sistemas__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 80px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.sistemas__info {
  flex: 0 0 48%;
  padding-right: 0;
}

.sistemas__label {
  font-size: 20px;
  font-weight: 500;
  color: #353535;
  margin-bottom: 12px;
  line-height: 1.5;
}

.sistemas__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 24px;
}

.sistemas__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sistemas__text:last-of-type {
  margin-bottom: 32px;
}

.sistemas__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sistemas__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sistemas__feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.sistemas__feature span {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral);
}

.sistemas__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
}

.sistemas__tablet-img {
  width: 120%;
  max-width: none;
  height: auto;
  position: relative;
  right: -10%;
}

/* ========================================
   MÉTRICAS
   ======================================== */
.metricas {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  min-height: 432px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metricas__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/metricas-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.metricas__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.metricas__content {
  position: relative;
  z-index: 1;
  max-width: 982px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: var(--white);
}

.metricas__header {
  margin-bottom: 56px;
}

.metricas__title-text {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 32px;
}

.metricas__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.metricas__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.metricas__item {
  text-align: center;
}

.metricas__number {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.metricas__label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

/* ========================================
   BENEFÍCIOS
   ======================================== */
.beneficios {
  padding: 120px 0;
  background-color: var(--white-hover);
}

.beneficios__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 90px 0 90px;
  display: flex;
  gap: 91px;
  align-items: center;
}

.beneficios__visual {
  flex: 0 0 499px;
}

.beneficios__img {
  width: 499px;
  height: 506px;
  object-fit: cover;
  border-radius: 24px;
}

.beneficios__info {
  flex: 1;
  max-width: 610px;
}

.beneficios__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-purple);
  color: var(--primary-darker);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  height: 34px;
}

.beneficios__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 24px;
}

.beneficios__text {
  margin-bottom: 32px;
}

.beneficios__text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ========================================
   CLIENTES
   ======================================== */
.clientes {
  padding: 80px 0;
  background: var(--white-hover);
  overflow: hidden;
}

.clientes__title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 52px;
}

.clientes__carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clientes__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.clientes__track:hover {
  animation-play-state: paused;
}

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

.clientes__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 70px;
  padding: 0 10px;
}

.clientes__logo-img {
  height: 55px;
  width: auto;
  min-width: 100px;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.clientes__logo-img:hover {
  opacity: 0.8;
}

/* ========================================
   CONSEQUÊNCIAS
   ======================================== */
.consequencias {
  background-color: var(--white-hover);
  padding: 120px 0;
}

.consequencias__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 90px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.consequencias__content {
  flex: 0 0 609px;
}

.consequencias__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 24px;
}

.consequencias__title strong {
  font-weight: 700;
}

.consequencias__text {
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
}

.consequencias__text--lead {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px !important;
}

.consequencias__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consequencias__list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral);
  padding-left: 20px;
  position: relative;
}

.consequencias__list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #E53E3E;
  font-size: 14px;
  font-weight: 700;
  top: 1px;
}

.consequencias__highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 32px;
}

.consequencias__visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.consequencias__img {
  max-width: 552px;
  width: 100%;
  height: auto;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos {
  background-color: var(--white-hover);
  padding: 120px 0;
}

.depoimentos__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 105px;
}

.depoimentos__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.depoimentos__carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.depoimentos__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.depoimentos__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.depoimentos__arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--light-purple);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  color: var(--primary-dark);
}

.depoimentos__arrow:hover {
  background: #b88fe0;
}

.depoimentos__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.depoimentos__arrow svg {
  width: 24px;
  height: 24px;
}

.depoimentos__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-light);
  cursor: pointer;
  transition: background 0.3s;
}

.depoimentos__dot.active {
  background: var(--primary-dark);
}

.depoimento-card {
  background: var(--neutral-bg);
  border-radius: 24px;
  padding: 24px;
  flex: 0 0 453px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.depoimento-card__header {
  display: flex;
  gap: 13px;
  align-items: center;
}

.depoimento-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.depoimento-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.depoimento-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
}

.depoimento-card__role {
  font-size: 14px;
  font-weight: 300;
  color: #353535;
  line-height: 1.5;
}

.depoimento-card__stars {
  display: flex;
  gap: 4px;
  align-items: center;
}
.depoimento-card__stars svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.depoimento-card__text {
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  line-height: 1.5;
}

.depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

/* ========================================
   CALCULADORA DE ROI
   ======================================== */
.calculadora {
  background-color: var(--white);
  padding: 80px 0;
}

.calculadora__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.calculadora__header {
  text-align: center;
  margin-bottom: 48px;
}

.calculadora__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-purple);
  color: var(--primary-darker);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  height: 34px;
}

.calculadora__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 16px;
}

.calculadora__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--neutral);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.calculadora__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.calculadora__inputs {
  background-color: var(--neutral-bg);
  border-radius: 16px;
  padding: 32px;
}

.calculadora__panel-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.calculadora__results {
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.calculadora__results-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

/* Calc blocks */
.calc-block {
  margin-bottom: 28px;
}

.calc-block__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Slider groups */
.calc-slider {
  margin-bottom: 18px;
}

.calc-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.calc-slider__header label {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral);
}

.calc-slider__number-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.calc-slider__prefix,
.calc-slider__suffix {
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral);
}

.calc-slider__number {
  width: 80px;
  padding: 4px 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-align: right;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}

.calc-slider__number::-webkit-outer-spin-button,
.calc-slider__number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-slider__number:focus {
  border-color: var(--primary);
}

/* Range slider styling */
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  cursor: pointer;
}
.calc-range:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Partial result card */
.calc-partial {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  margin-top: 8px;
}

.calc-partial__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--red-dark);
  margin-bottom: 4px;
}

.calc-partial__desc {
  font-size: 13px;
  color: var(--neutral);
  line-height: 1.4;
}

.calc-partial__divider {
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0;
}

.calc-partial__values {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.calc-partial__values > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-partial__label {
  font-size: 12px;
  color: var(--neutral);
  font-weight: 400;
}

.calc-partial__amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--red-dark);
}

/* Result sections */
.calc-result-section {
  margin-bottom: 20px;
}

.calc-result-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.calc-result-desc {
  font-size: 13px;
  color: var(--neutral);
  margin-bottom: 12px;
  line-height: 1.4;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.calc-result-row > span:first-child {
  color: var(--neutral);
}

.calc-result-row > span:last-child {
  font-weight: 600;
  color: var(--dark);
}

.calc-plan-select {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: #f5f0fa;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.calc-plan-select:hover,
.calc-plan-select:focus {
  border-color: var(--primary-dark);
  background: #ece4f5;
}

/* ROI / Payback cards */
.calc-result-card {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.calc-result-card--green {
  background-color: var(--green-bg);
  border-left: 4px solid var(--green);
}

.calc-result-card--blue {
  background-color: var(--blue-bg);
  border-left: 4px solid var(--blue);
}

.calc-result-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.calc-result-card--green .calc-result-card__row span:last-child {
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.calc-result-card--blue .calc-result-card__row span:last-child {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
}

.calc-result-card__desc {
  font-size: 12px;
  color: var(--neutral);
  margin-top: 2px;
}

.calc-result-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}

/* Beneficio liquido bottom */
.calc-result-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.calc-result-bottom > span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.calc-result-bottom__value {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}

/* Warning */
.calc-result-warning {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
  margin: 12px 0;
}

/* CTAs */
.calc-result-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.calc-result-actions .btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
}

/* Calculadora Responsive */
@media (max-width: 768px) {
  .calculadora__body {
    grid-template-columns: 1fr;
  }

  .calculadora__title {
    font-size: 28px;
  }

  .calculadora__subtitle {
    font-size: 16px;
  }

  .calculadora__inputs,
  .calculadora__results {
    padding: 24px;
  }

  .calc-partial__values {
    flex-direction: column;
  }

  .calc-result-bottom__value {
    font-size: 24px;
  }

  .calc-result-actions {
    flex-direction: column;
  }

  .calc-result-actions .btn {
    min-width: unset;
  }
}

/* ========================================
   PRICING (Plans + Calculator)
   ======================================== */
.pricing {
  background-color: var(--white-hover);
  padding: 80px 0;
}

.pricing__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.pricing__header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--neutral);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Period Toggle */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing__toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-lighter);
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing__toggle-label--active {
  color: var(--primary);
  font-weight: 600;
}

.pricing__toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--neutral-light);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.pricing__toggle-switch.active {
  background: var(--primary);
}

.pricing__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.pricing__toggle-switch.active .pricing__toggle-knob {
  transform: translateX(24px);
}

.pricing__toggle-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-purple);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.pricing__toggle-badge.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Carousel */
.pricing__carousel {
  position: relative;
  margin-bottom: 24px;
}

.pricing__carousel-viewport {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 8px;
  margin-top: -20px;
}

.pricing__carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  touch-action: pan-y;
}

.pricing__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--neutral-light);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.pricing__carousel-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pricing__carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--white);
  color: var(--neutral-lighter);
  border-color: var(--neutral-light);
}

.pricing__carousel-arrow--left {
  left: -22px;
}

.pricing__carousel-arrow--right {
  right: -22px;
}

.pricing__carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.pricing__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--neutral-light);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pricing__carousel-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 100px;
}

/* Plan Cards */
.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 0;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(102, 45, 145, 0.15);
  transform: scale(1.02);
}

.pricing-card--featured:hover {
  box-shadow: 0 8px 28px rgba(102, 45, 145, 0.2);
  transform: scale(1.02) translateY(-4px);
}

.pricing-card--active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(102, 45, 145, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.pricing-card__boxes {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral);
}

.pricing-card__licenses {
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-lighter);
}

/* Card Price */
.pricing-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 70px;
}

.pricing-card__original-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--neutral-lighter);
  text-decoration: line-through;
  min-height: 20px;
}

.pricing-card__current-price {
  display: flex;
  align-items: baseline;
}

.pricing-card__currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
}

.pricing-card__value {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  transition: all 0.3s ease;
}

.pricing-card__period {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral);
  margin-left: 2px;
}

.pricing-card__cta {
  width: 100%;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
}

/* Card Add-ons */
.pricing-card__addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-bg);
}

.pricing-card__addons-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pricing-card__addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--neutral);
}

.pricing-card__addon-price {
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}

/* Card Included (Empresarial / Corporativo) */
.pricing-card__included {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-bg);
}

.pricing-card__included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

/* Enterprise Banner */
.pricing__enterprise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 64px;
}

.pricing__enterprise-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing__enterprise-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
}

.pricing__enterprise-cta {
  flex-shrink: 0;
  background: var(--white) !important;
  color: var(--primary) !important;
}

.pricing__enterprise-cta:hover {
  background: var(--neutral-bg) !important;
}

/* Price Calculator */
.pricing__calculator {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing__calc-header {
  background: var(--neutral-bg);
  padding: 32px 40px;
  text-align: center;
}

.pricing__calc-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing__calc-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral);
}

.pricing__calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pricing__calc-inputs {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--neutral-bg);
}

.pricing__calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing__calc-field > label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.pricing__calc-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--neutral-light);
  border-radius: 10px;
  background: var(--neutral-bg);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.pricing__calc-input:focus {
  border-color: var(--primary);
}

.pricing__calc-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e0e0e0;
  border-radius: 100px;
  outline: none;
  margin-top: -4px;
}
.pricing__calc-range:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.pricing__calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 4px rgba(0,0,0,0.25);
  cursor: pointer;
}

.pricing__calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 4px rgba(0,0,0,0.25);
  cursor: pointer;
}

/* Calculator Checkboxes */
.pricing__calc-addons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__calc-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}

.pricing__calc-checkbox input {
  display: none;
}

.pricing__calc-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-light);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.pricing__calc-checkbox input:checked + .pricing__calc-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.pricing__calc-checkbox input:checked + .pricing__calc-checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pricing__calc-checkbox input:disabled + .pricing__calc-checkmark {
  opacity: 0.4;
  cursor: not-allowed;
}

.pricing__calc-checkbox small {
  color: var(--neutral-lighter);
}

.pricing__calc-addons-included {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 4px;
}

/* Calculator Results */
.pricing__calc-results {
  padding: 32px 40px;
  background: var(--neutral-bg);
}

.pricing__calc-result-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing__calc-result-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing__calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--dark);
}

.pricing__calc-result-row span {
  font-weight: 400;
  color: var(--neutral);
}

.pricing__calc-result-row strong {
  font-weight: 600;
  color: var(--dark);
}

.pricing__calc-result-row--total {
  padding-top: 8px;
}

.pricing__calc-result-row--total strong {
  font-size: 22px;
  color: var(--primary);
}

.pricing__calc-result-row--annual {
  background: var(--bg-purple);
  margin: 0 -40px;
  padding: 12px 40px;
  border-radius: 0;
}

.pricing__calc-result-row--annual strong {
  color: var(--primary);
}

.pricing__calc-result-divider {
  height: 1px;
  background: var(--neutral-light);
}

.pricing__calc-elite {
  text-align: center;
  padding: 24px 0 0;
}

.pricing__calc-elite p {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background-color: var(--white-hover);
  padding: 80px 0;
}

.faq__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 16px;
}

.faq__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral);
  line-height: 1.5;
  max-width: 882px;
  margin: 0 auto;
}

.faq__list {
  max-width: 1022px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__item {
  border-radius: 24px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--neutral-bg);
  border-radius: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  text-align: left;
  transition: all 0.3s ease;
}

.faq__chevron {
  width: 40px;
  height: 40px;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 20px 24px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral);
  line-height: 1.6;
}

/* ========================================
   CONTATO / FALE CONOSCO
   ======================================== */
.contato {
  position: relative;
  padding: 80px 0 160px;
}

.contato__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 486px;
  overflow: hidden;
}

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

.contato__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.contato__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.contato__card {
  display: flex;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.contato__info {
  flex: 0 1 503px;
  min-width: 320px;
  background: var(--white-hover);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 16px 0 0 16px;
}

.contato__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
}

.contato__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral);
  line-height: 1.5;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contato__detail {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contato__detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contato__detail span {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral);
}

.contato__email-note {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral);
  line-height: 1.5;
}

.contato__email-note em {
  font-style: italic;
}

/* Contact Form */
.contato__form-wrapper {
  flex: 1;
  min-width: 0;
  background: var(--neutral-bg);
  padding: 24px 32px;
  border-radius: 0 16px 16px 0;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__form-row {
  display: flex;
  gap: 16px;
}

.contato__form-row .contato__field {
  flex: 1;
}

.contato__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contato__field label {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-normal);
}

.required {
  color: var(--error);
}

.contato__field input,
.contato__field textarea {
  padding: 16px;
  border: 1px solid var(--neutral-normal);
  border-radius: 8px;
  background: var(--white);
  font-size: 16px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
}

.contato__field textarea {
  border-color: var(--neutral-lighter);
  resize: vertical;
  min-height: 162px;
}

.contato__field input::placeholder,
.contato__field textarea::placeholder {
  color: #767c84;
}

.contato__field input:focus,
.contato__field textarea:focus {
  border-color: var(--primary);
  outline: 2px solid var(--primary);
  outline-offset: -1px;
}

.cf-turnstile {
  align-self: flex-end;
}

.contato__submit {
  align-self: flex-end;
  width: 288px;
  height: 56px;
}

/* Error message inline */
.contato__error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

/* Success state */
.contato__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 20px;
  min-height: 400px;
  animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes successCheckPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.contato__success-icon {
  animation: successCheckPop 0.5s ease 0.2s both;
}

.contato__success-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.contato__success-text {
  font-size: 16px;
  color: var(--neutral-dark);
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}

.contato__success-btn {
  margin-top: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.contato__success-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--primary);
}

.footer__main {
  display: flex;
  gap: 150px;
  align-items: flex-start;
  padding: 32px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__brand {
  flex-shrink: 0;
}

.footer__logo {
  height: 38px;
  width: auto;
}

.footer__columns {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 40px;
}

.footer__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.3s;
  line-height: 1.5;
}

.footer__links a:hover {
  opacity: 0.8;
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer__contact-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-bg);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 27px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-link img {
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.footer__social-link:hover img {
  opacity: 0.8;
}

.footer__bottom {
  background-color: #353535;
  padding: 29px 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1280px) {
  :root {
    --content-padding: 40px;
  }
  .hero__content { flex: 1; }
  .hero__circle { width: 400px; height: 400px; }
  .hero__person-img { width: 100%; height: auto; }
  .sistemas__container { padding: 80px 40px 40px; flex-direction: column; gap: 32px; }
  .sistemas__info { flex: none; width: 100%; }
  .sistemas__visual { flex: none; width: 100%; overflow: hidden; }
  .sistemas__tablet-img { width: 100%; max-width: 700px; right: 0; margin: 0 auto; display: block; }
  .beneficios__container { padding: 0 40px; gap: 60px; }
  .beneficios__visual { flex: 0 0 400px; }
  .beneficios__img { width: 100%; height: auto; }
  .consequencias__container { padding: 0 40px; }
  .depoimentos__container { padding: 0 40px; }
  .pricing__container { padding: 0 40px; }
  .pricing__carousel-arrow--left { left: -10px; }
  .pricing__carousel-arrow--right { right: -10px; }
  .pricing__enterprise { flex-direction: column; text-align: center; gap: 20px; padding: 24px; }
  .pricing__calc-body { grid-template-columns: 1fr; }
  .pricing__calc-inputs { border-right: none; border-bottom: 1px solid var(--neutral-bg); }
  .faq__container { padding: 0 40px; }
  .contato__info { flex: 0 1 400px; }
  .footer__main { gap: 60px; padding: 32px 40px; }
}

@media (max-width: 1024px) {
  .hero__container { flex-direction: column-reverse; align-items: center; text-align: center; }
  .hero__content { padding-top: 20px; }
  .hero__description { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__title { font-size: 34px; }

  .beneficios__container { flex-direction: column; }
  .beneficios__visual { flex: none; width: 100%; text-align: center; }
  .beneficios__img { margin: 0 auto; width: 100%; max-width: 499px; }

  .consequencias__container { flex-direction: column; }

  .pricing__carousel-arrow--left { left: 4px; }
  .pricing__carousel-arrow--right { right: 4px; }

  .depoimentos__arrow { display: none; }
  .depoimentos__carousel { gap: 0; }

  .contato__card { flex-direction: column; }
  .contato__info { flex: none; border-radius: 16px 16px 0 0; }
  .contato__form-wrapper { border-radius: 0 0 16px 16px; }

  .footer__main { flex-direction: column; gap: 32px; }
  .footer__columns { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .header { padding: 10px 20px; }
  .header__inner { padding: 16px 20px; height: 70px; }
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__hamburger { display: flex; }

  .hero { padding-top: 120px; }
  .hero__container { padding: 0 20px; }
  .hero__title { font-size: 28px; }
  .hero__description { font-size: 16px; }
  .hero__circle { width: 300px; height: 300px; }
  .hero__person-img { width: 100%; height: auto; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn-lg { min-width: 200px; }

  .metricas__grid { flex-direction: column; gap: 32px; }
  .metricas__number { font-size: 40px; }
  .metricas__label { font-size: 18px; }
  .metricas__title-text { font-size: 28px; }
  .metricas__subtitle { font-size: 18px; }

  .clientes__track { gap: 50px; }
  .clientes__title { font-size: 32px; }
  .clientes__logo-img { height: 45px; min-width: 80px; max-width: 160px; }

  .sistemas__container { padding: 60px 20px 32px; gap: 24px; }
  .sistemas__title { font-size: 32px; }
  .sistemas__tablet-img { max-width: 100%; }

  .beneficios__container { padding: 0 20px; }
  .beneficios__title { font-size: 32px; }

  .consequencias__container { padding: 0 20px; }
  .consequencias__title { font-size: 32px; }

  .depoimentos__container { padding: 0 20px; }
  .depoimentos__title { font-size: 28px; }

  .pricing__container { padding: 0 20px; }
  .pricing__title { font-size: 28px; }
  .pricing__subtitle { font-size: 16px; }
  .pricing-card__value { font-size: 34px; }
  .pricing__carousel-arrow { width: 36px; height: 36px; }
  .pricing__carousel-arrow--left { left: 4px; }
  .pricing__carousel-arrow--right { right: 4px; }
  .pricing__calc-header { padding: 24px 20px; }
  .pricing__calc-title { font-size: 22px; }
  .pricing__calc-inputs { padding: 24px 20px; }
  .pricing__calc-results { padding: 24px 20px; }
  .pricing__calc-result-row--annual { margin: 0 -20px; padding: 12px 20px; }
  .pricing__enterprise { padding: 24px 20px; }
  .pricing__enterprise-title { font-size: 20px; }

  .faq__container { padding: 0 20px; }
  .faq__title { font-size: 28px; }
  .faq__subtitle { font-size: 16px; }
  .faq__question { font-size: 16px; }

  .contato__container { padding: 0 20px; }
  .contato__title { font-size: 32px; }
  .contato__form-row { flex-direction: column; }
  .contato__submit { width: 100%; }

  .footer__main { padding: 32px 20px; }
  .footer__columns { flex-direction: column; }
}

/* ========================================
   FUNCIONALIDADES - CASES DE SUCESSO
   ======================================== */
.func-cases {
  padding: 80px 0;
}

.func-cases__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.func-cases__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 64px;
}

.func-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.func-cases__card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.func-cases__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.func-cases__card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.func-cases__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.func-cases__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.func-cases__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.func-cases__card-text {
  font-size: 14px;
  color: var(--neutral);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.func-cases__card-body .btn {
  margin-top: auto;
}

/* Section padding utility */
.section-padding {
  padding: 80px 0;
}
