/* ==========================================
   PROXXIMA TELECOM - LP B2B
   Brand Colors:
   - Magenta:      #EC268F
   - Magenta dark:  #CD2784
   - Rosa claro:   #FAD3DD
   - Azul marinho: #3E4095
   - Cinza:        #E6E7E8
   ========================================== */

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

:root {
  --magenta: #EC268F;
  --magenta-dark: #CD2784;
  --rosa: #FAD3DD;
  --azul: #3E4095;
  --cinza: #E6E7E8;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION TITLE --- */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 48px;
  text-align: center;
  line-height: 1.2;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

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

.btn--primary:hover {
  background: var(--magenta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(236, 38, 143, 0.4);
}

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

.btn--white {
  background: var(--white);
  color: var(--magenta);
}

.btn--white:hover {
  background: var(--rosa);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: 14px;
}

.btn--full { width: 100%; }

.plano-card > .btn {
  margin-top: auto;
  width: 100%;
}

/* Pulse animation on CTA buttons */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(236, 38, 143, 0.4);
  animation: btnPulse 2.5s ease-out infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 38, 143, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(236, 38, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 38, 143, 0); }
}

/* --- LOGO SVG --- */
.logo-text-pink { font-family: var(--font-main); font-size: 36px; font-weight: 800; fill: var(--magenta); }
.logo-text-blue { font-family: var(--font-main); font-size: 40px; font-weight: 800; fill: var(--azul); }
.logo-text-white { font-family: var(--font-main); font-size: 36px; font-weight: 800; fill: var(--white); }
.logo-text-white-light { font-family: var(--font-main); font-size: 40px; font-weight: 800; fill: var(--rosa); }

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--cinza);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.header__nav { display: flex; gap: 32px; }

.header__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: width var(--transition);
}

.header__link:hover { color: var(--magenta); }
.header__link:hover::after { width: 100%; }

.header__cta { padding: 10px 24px; font-size: 0.9rem; }

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--cinza);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.header__mobile-menu[aria-hidden="false"] { display: block; }

.header__mobile-nav { display: flex; flex-direction: column; gap: 16px; }
.header__mobile-link { font-size: 1rem; font-weight: 600; color: var(--gray-700); padding: 8px 0; }
.header__mobile-cta { margin-top: 8px; text-align: center; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(62, 64, 149, 0.95) 0%, rgba(45, 47, 120, 0.92) 100%),
              url('../assets/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 560px; }

.hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__cta-mobile { display: none; }

/* Hero staggered entrance */
.hero-animate {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate[data-hero-delay="1"] { animation-delay: 0.2s; }
.hero-animate[data-hero-delay="2"] { animation-delay: 0.5s; }
.hero-animate[data-hero-delay="3"] { animation-delay: 0.8s; }

/* Form slides from right */
.hero__form.hero-animate {
  transform: translateX(40px);
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating particles */
.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: particleFloat 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero__particle--1 { width: 120px; height: 120px; top: 15%; left: 5%; animation-duration: 9s; }
.hero__particle--2 { width: 80px; height: 80px; top: 60%; left: 15%; animation-duration: 7s; animation-delay: -2s; }
.hero__particle--3 { width: 60px; height: 60px; top: 25%; right: 8%; animation-duration: 10s; animation-delay: -4s; }
.hero__particle--4 { width: 100px; height: 100px; bottom: 15%; right: 15%; animation-duration: 8s; animation-delay: -1s; }
.hero__particle--5 { width: 40px; height: 40px; top: 45%; left: 45%; animation-duration: 6s; animation-delay: -3s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

/* --- FORM CARD --- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.form-card__logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.form-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-card__subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__group { margin-bottom: 18px; }

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 2px solid var(--cinza);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--magenta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(236, 38, 143, 0.1);
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  color: var(--gray-800);
}
.form__select:invalid, .form__select option[value=""] { color: #9ca3af; }
.form__select option { color: var(--gray-800); }
.form__select--error { border-color: #ef4444; background-color: #fef2f2; }
.form__select--error:focus { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); }

.form__input--error { border-color: #ef4444; background: #fef2f2; }
.form__input--error:focus { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); }

.form__error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.form__error--visible { opacity: 1; }

.form__submit { margin-top: 8px; position: relative; }
.form__submit-loading { display: none; }
.form__submit--loading .form__submit-text { visibility: hidden; }
.form__submit--loading .form__submit-loading {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}

.spinner { width: 24px; height: 24px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form success */
.form-card__success { text-align: center; padding: 32px 16px; }

.form-card__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-card__success-icon svg { width: 32px; height: 32px; stroke: #059669; }
.form-card__success h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.form-card__success p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* ==========================================
   DIFERENCIAIS
   ========================================== */
.diferenciais {
  padding: 96px 0;
  background: var(--white);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--gray-50);
  border: 2px solid var(--cinza);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--magenta), var(--azul));
  transition: height 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--rosa);
}

.card:hover::before { height: 100%; }

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--rosa);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--magenta);
  transition: all var(--transition);
}

.card:hover .card__icon {
  transform: scale(1.1);
  background: var(--magenta);
  color: var(--white);
}

.card__icon svg { width: 28px; height: 28px; }
.card__title { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.card__text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* ==========================================
   PLANOS
   ========================================== */
.planos {
  padding: 96px 0;
  background: var(--gray-50);
}

.planos__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: -28px auto 48px;
  line-height: 1.7;
}

.planos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plano-card {
  background: var(--white);
  border: 2px solid var(--cinza);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.plano-card--featured {
  border-color: var(--magenta);
  box-shadow: 0 8px 30px rgba(236, 38, 143, 0.15);
  transform: scale(1.04);
}

.plano-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.plano-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.plano-card__header {
  text-align: center;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--cinza);
}

.plano-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azul);
  background: rgba(62, 64, 149, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.plano-card__speed {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 8px;
}

.plano-card__speed span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--magenta);
}

.plano-card__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}

.plano-card__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--magenta);
  margin-top: 8px;
}

.plano-card__value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.plano-card__cents {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 4px;
}

.plano-card__cents small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  display: block;
}

.plano-card__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.plano-card__segment-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-top: 12px;
}

.plano-card__body {
  flex: 1;
  width: 100%;
  margin-bottom: 28px;
}

.plano-card__body p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.plano-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.plano-card__features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding-left: 28px;
  position: relative;
}

.plano-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--rosa);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23EC268F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Addon */
.plano-addon {
  margin-top: 36px;
}

.plano-addon__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 2px dashed var(--magenta);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 700px;
  margin: 0 auto;
  transition: all var(--transition);
}

.plano-addon__inner:hover {
  border-style: solid;
  box-shadow: 0 4px 20px rgba(236, 38, 143, 0.12);
}

.plano-addon__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--rosa);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
}

.plano-addon__icon svg { width: 28px; height: 28px; }

.plano-addon__text { flex: 1; }
.plano-addon__text h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.plano-addon__text p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }

.plano-addon__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}

.plano-addon__price-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--magenta);
}

.plano-addon__price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
}

.plano-addon__price-period {
  font-size: 0.85rem;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .planos__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .plano-card--featured {
    transform: none;
  }

  .plano-card--featured:hover {
    transform: translateY(-6px);
  }

  .plano-addon__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }
}

/* ==========================================
   SOBRE
   ========================================== */
.sobre {
  padding: 96px 0;
  background: var(--gray-50);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.sobre__content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre__content p:last-child { margin-bottom: 0; }
.sobre__content .section-title { text-align: left; margin-bottom: 28px; }

.sobre__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s ease;
}

.sobre__image:hover {
  transform: scale(1.03);
}

/* ==========================================
   COMO FUNCIONA
   ========================================== */
.como-funciona {
  padding: 96px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  max-width: 300px;
  padding: 0 20px;
}

.step__image-wrap {
  width: 180px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.step__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step:hover .step__image {
  transform: scale(1.08);
}

.step__number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(236, 38, 143, 0.3);
  transition: transform 0.3s ease;
}

.step:hover .step__number {
  transform: scale(1.1) rotate(5deg);
}

.step__title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step__text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

.step__connector {
  width: 80px;
  margin-top: 90px;
  flex-shrink: 0;
  position: relative;
  height: 2px;
}

.step__connector-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rosa), var(--magenta));
  transition: width 1s ease;
}

.step__connector-line.animated { width: 100%; }

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 96px 0;
  background: var(--gray-50);
}

.faq__list { max-width: 720px; margin: 0 auto; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--cinza);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item--open {
  border-left-color: var(--magenta);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--magenta);
}

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

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}

.faq__item--open .faq__answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq__answer p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* ==========================================
   CTA FINAL
   ========================================== */
.cta-final {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--azul), #2d2f6e, var(--magenta-dark), var(--azul));
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-final__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-final__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--white);
  color: var(--gray-700);
  padding-top: 64px;
  border-top: 1px solid var(--cinza);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cinza);
}

.footer__logo { width: 140px; height: 36px; margin-bottom: 12px; }
.footer__slogan { font-size: 0.9rem; color: var(--gray-600); font-style: italic; margin-bottom: 16px; }
.footer__legal-name { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 4px; }
.footer__cnpj { font-size: 0.8rem; color: var(--gray-600); }

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer__link {
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: color var(--transition);
  display: block;
  margin-bottom: 12px;
}

.footer__link:hover { color: var(--magenta); }

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.footer__social-links { display: flex; gap: 12px; }

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--magenta);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__social-link svg { width: 20px; height: 20px; }

.footer__bottom { padding: 20px 0; }
.footer__bottom p { font-size: 0.85rem; color: var(--gray-600); text-align: center; }
.footer__bottom { border-top: 1px solid var(--cinza); }
.footer__bottom-link { color: var(--gray-600); text-decoration: underline; transition: color var(--transition); }
.footer__bottom-link:hover { color: var(--magenta); }

/* ==========================================
   ANIMATIONS - Scroll Reveal
   ========================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
[data-reveal-delay="0"] { transition-delay: 0s; }
[data-reveal-delay="1"] { transition-delay: 0.15s; }
[data-reveal-delay="2"] { transition-delay: 0.3s; }
[data-reveal-delay="3"] { transition-delay: 0.45s; }

/* ==========================================
   ACCESSIBILITY: Reduced Motion
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-animate { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__particle { display: none; }
  .hero { background-attachment: scroll; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__title { font-size: 2.25rem; }
  .hero__cta-mobile { display: inline-flex; }
  .hero { background-attachment: scroll; }

  .sobre__inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre__content .section-title { text-align: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .header__menu-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__title { font-size: 1.85rem; }
  .hero__subtitle { font-size: 1rem; }

  .section-title { font-size: 1.6rem; margin-bottom: 36px; }

  .diferenciais__grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step__connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }
  .step__connector-line {
    width: 100% !important;
    height: 0;
    background: linear-gradient(180deg, var(--rosa), var(--magenta));
  }
  .step__connector-line.animated { height: 100%; }

  .cta-final__title { font-size: 1.75rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.6rem; }
  .btn--lg { padding: 16px 28px; font-size: 1rem; }
  .step__image-wrap { width: 140px; height: 94px; }
}
