:root {
  --fixo-navy: #0E2C53;
  --fixo-navy-dark: #091d38;
  --fixo-orange: #F47B20;
  --fixo-orange-light: #ff9d5c;
  --fixo-ice-grey: #F4F6F8;
  --fixo-slate: #546E7A;
  --fixo-white: #FFFFFF;

  --shadow-soft: 0 4px 16px rgba(14, 44, 83, 0.07);
  --shadow-medium: 0 8px 28px rgba(14, 44, 83, 0.12);
  --shadow-floating: 0 20px 40px rgba(14, 44, 83, 0.18);
  --shadow-orange: 0 8px 24px rgba(244, 123, 32, 0.3);

  --container: 1200px;
  --section-gap: 100px;
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--fixo-slate);
  background: var(--fixo-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--fixo-navy);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}

img {
  max-width: 100%;
}

strong {
  color: var(--fixo-navy);
}

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

/* ─── GRADIENT TEXT ────────────────────────────── */
.text-gradient {
  background: linear-gradient(120deg, var(--fixo-orange) 0%, #ff9d5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

.btn-primary {
  background: var(--fixo-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: #e06c1a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 123, 32, .4);
}

.btn-outline {
  background: transparent;
  color: var(--fixo-navy);
  border: 2px solid var(--fixo-navy);
}

.btn-outline:hover {
  background: var(--fixo-navy);
  color: #fff;
}

.btn-ghost {
  background: rgba(14, 44, 83, .08);
  color: var(--fixo-navy);
  font-weight: 600;
}

.btn-ghost:hover {
  background: rgba(14, 44, 83, .15);
}

.btn-large {
  padding: 17px 34px;
  font-size: 1.05rem;
}

/* ─── SECTION COMMON ────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(244, 123, 32, .12);
  color: var(--fixo-orange);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
}

/* ─── ANIMATIONS ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .7s ease forwards .1s;
}

.fade-up-delay {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .7s ease forwards .35s;
}

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

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all .3s ease;
  border-bottom: 1px solid rgba(14, 44, 83, .06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 38px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--fixo-navy);
  letter-spacing: -.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--fixo-slate);
}

.nav-links a:hover {
  color: var(--fixo-orange);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fixo-navy);
  margin: 5px 0;
  transition: .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(14, 44, 83, .08);
  background: white;
}

.mobile-nav a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--fixo-navy);
  border-bottom: 1px solid var(--fixo-ice-grey);
}

.mobile-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

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

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding: 140px 24px 80px;
  background: var(--fixo-ice-grey);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 32, .1) 0%, transparent 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(14, 44, 83, .08);
  font-weight: 600;
  font-size: .85rem;
  color: var(--fixo-navy);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.75rem;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 92%;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: white;
  border: 1px solid rgba(14, 44, 83, .1);
  color: var(--fixo-navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

/* Phone Mockup */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.phone-mockup {
  width: 290px;
  height: 580px;
  border-radius: 40px;
  background: white;
  border: 10px solid #1a1a2e;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  transform: rotate(4deg);
  transition: transform .4s ease;
  position: relative;
}

.phone-mockup:hover {
  transform: rotate(0deg) translateY(-8px);
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}

.phone-screen {
  padding: 16px 18px;
  background: var(--fixo-ice-grey);
  height: calc(100% - 28px);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mockup-logo-text {
  font-weight: 800;
  color: var(--fixo-navy);
  font-size: 16px;
}

.mockup-profile {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ccc;
}

.mockup-search-bar {
  background: white;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .78rem;
  color: #999;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

.mockup-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--fixo-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.mockup-card-tech {
  background: white;
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mc-av1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.mc-av2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.mc-info {
  flex: 1;
}

.mc-name-bar {
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  width: 75%;
  margin-bottom: 6px;
}

.mc-sub-bar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  width: 50%;
  margin-bottom: 4px;
}

.mc-stars {
  font-size: .7rem;
}

.mc-verified {
  background: var(--fixo-navy);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
}

.mockup-escrow-banner {
  background: linear-gradient(135deg, rgba(14, 44, 83, .9), rgba(14, 44, 83, .7));
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-medium);
  font-size: .82rem;
  white-space: nowrap;
}

.float-badge span {
  font-size: 1.5rem;
}

.float-badge strong {
  display: block;
  color: var(--fixo-navy);
  font-size: .85rem;
}

.float-badge p {
  color: var(--fixo-slate);
  font-size: .78rem;
  margin: 0;
}

.float-badge-1 {
  top: 10%;
  left: -5%;
}

.float-badge-2 {
  bottom: 15%;
  right: -8%;
}

/* ─── STATS ──────────────────────────────────────── */
.stats {
  padding: 44px 0;
  background: white;
  border-bottom: 1px solid #eef0f3;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  color: var(--fixo-navy);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--fixo-slate);
  font-weight: 600;
  font-size: .9rem;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: #eef0f3;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-it-works {
  padding: var(--section-gap) 24px;
  background: var(--fixo-ice-grey);
}

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step-card {
  flex: 1;
  background: white;
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(244, 123, 32, .15);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(244, 123, 32, .1);
  color: var(--fixo-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(14, 44, 83, .2);
  margin: 0 -8px;
  flex-shrink: 0;
  z-index: 1;
}

/* ─── SECURITY / TRUST ───────────────────────────── */
.security {
  padding: var(--section-gap) 24px;
  background: linear-gradient(150deg, var(--fixo-navy) 0%, #1b4a80 100%);
}

/* Forzar contraste en el encabezado de la sección (fondo oscuro) */
.security .section-header h2 {
  color: #ffffff;
}

.security .section-header p {
  color: rgba(255, 255, 255, .8);
}


.security-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.glass-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all .3s ease;
  position: relative;
}

.glass-card:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-6px);
}

.glass-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.glass-card p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
}

/* ── FIX DE CONTRASTE: strong dentro de glass-card ── */
/* El selector global `strong { color: navy }` se quiebra aquí
   porque el fondo es oscuro. Forzamos blanco brillante. */
.glass-card strong,
.glass-card p strong {
  color: #ffffff;
  font-weight: 700;
}

/* La glass card naranja (featured) usa naranja claro para los strong */
.glass-card-featured strong,
.glass-card-featured p strong {
  color: #ffcfa0;
  font-weight: 700;
}

.glass-card-featured {
  border-color: rgba(244, 123, 32, .5);
  background: rgba(244, 123, 32, .12);
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fixo-orange);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.g-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.badge-blue {
  background: rgba(100, 160, 255, .18);
  color: #89c4ff;
}

.badge-orange {
  background: rgba(244, 123, 32, .2);
  color: #ffb380;
}

.badge-navy {
  background: rgba(255, 255, 255, .18);
  color: white;
}

.card-detail {
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
}

/* Testimonials */

.testimonials-title {
  text-align: center;
  color: rgba(255, 255, 255, .9);
  font-size: 1.4rem;
  margin-bottom: 32px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 28px;
}

.t-stars {
  font-size: 1rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  font-style: italic;
  margin-bottom: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-av1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.t-av2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.t-av3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.t-author strong {
  color: white;
  display: block;
  font-size: .88rem;
}

.t-author span {
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
}

/* ─── SERVICES ───────────────────────────────────── */
.services {
  padding: var(--section-gap) 24px;
  background: var(--fixo-ice-grey);
}

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

.service-card {
  background: white;
  padding: 32px 16px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  color: var(--fixo-orange);
}

.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 4px;
}

.service-card strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--fixo-navy);
}

.service-card span {
  font-size: .78rem;
  color: var(--fixo-slate);
}

/* ─── TECHNICIANS ────────────────────────────────── */
.technicians {
  padding: var(--section-gap) 24px;
  background: white;
}

.tech-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tech-content .section-tag {
  margin-bottom: 16px;
}

.tech-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.tech-content>p {
  font-size: 1.075rem;
  margin-bottom: 36px;
}

.benefit-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--fixo-ice-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-list strong {
  color: var(--fixo-navy);
  display: block;
  margin-bottom: 4px;
}

.benefit-list p {
  font-size: .9rem;
  margin: 0;
}

.tech-pricing {
  margin-bottom: 32px;
}

.price-card {
  display: inline-block;
  background: var(--fixo-ice-grey);
  border-radius: var(--radius);
  padding: 20px 28px;
  border-left: 4px solid var(--fixo-orange);
}

.price-card p {
  font-size: .85rem;
  color: var(--fixo-slate);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-card h3 {
  font-size: 2.2rem;
  color: var(--fixo-navy);
}

.price-card h3 span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fixo-slate);
}

.price-note {
  font-size: .8rem;
  color: var(--fixo-slate);
  margin-top: 4px;
}

/* Tech Mockup Visual */
.tech-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-mockup {
  background: var(--fixo-ice-grey);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-medium);
}

.tech-mockup-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tech-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  flex-shrink: 0;
}

.tech-info-block {
  flex: 1;
}

.t-name-bar {
  height: 14px;
  background: #ddd;
  border-radius: 7px;
  width: 60%;
  margin-bottom: 8px;
}

.t-sub-bar {
  font-size: .82rem;
  color: var(--fixo-slate);
  font-weight: 600;
}

.verified-badge {
  background: var(--fixo-navy);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.tech-stats-row {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  border-top: 1px solid #dde;
  border-bottom: 1px solid #dde;
  margin-bottom: 24px;
}

.t-stat {
  text-align: center;
}

.t-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--fixo-navy);
}

.t-stat span {
  font-size: .78rem;
  color: var(--fixo-slate);
}

.earning-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
}

.earning-card p {
  font-size: .82rem;
  margin-bottom: 6px;
}

.earning-card h4 {
  font-size: 1.8rem;
  color: var(--fixo-navy);
  margin-bottom: 16px;
}

.earning-bar {
  height: 8px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.earning-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--fixo-orange), #ff9d5c);
  border-radius: 8px;
}

/* ─── TRANSPARENCY ───────────────────────────────── */
.transparency {
  padding: var(--section-gap) 24px;
  background: var(--fixo-ice-grey);
}

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

.transparent-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
}

.tp-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.transparent-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.price-breakdown {
  border: 1px solid #eef0f3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: .9rem;
  border-bottom: 1px solid #eef0f3;
}

.pb-row:last-child {
  border: none;
}

.pb-fee {
  color: var(--fixo-slate);
}

.pb-total {
  background: var(--fixo-ice-grey);
}

.tp-note {
  font-size: .82rem;
  color: var(--fixo-slate);
  line-height: 1.5;
}

.legal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-links a {
  color: var(--fixo-navy);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-links a:hover {
  color: var(--fixo-orange);
}

/* ─── DOWNLOAD ───────────────────────────────────── */
.download {
  padding: 80px 24px;
  background: var(--fixo-orange);
  color: white;
}

.download-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.download-text h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.download-text p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 50px;
  border-radius: 6px;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--fixo-navy-dark);
  color: rgba(255, 255, 255, .6);
  padding: 80px 24px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 56px;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.f-logo img {
  height: 30px;
  filter: brightness(0) invert(1);
}

.f-logo span {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.footer-brand p {
  font-size: .88rem;
  margin-bottom: 8px;
  max-width: 320px;
}

.footer-legal-name {
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
}

.footer-contact {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  margin-top: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.link-group h4 {
  color: white;
  font-size: .9rem;
  margin-bottom: 18px;
}

.link-group a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
}

.link-group a:hover {
  color: var(--fixo-orange);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  font-size: .82rem;
}

.footer-compliance {
  color: rgba(255, 255, 255, .4);
  font-size: .78rem;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .float-badge-1 {
    left: -2%;
    top: 5%;
  }

  .float-badge-2 {
    right: -2%;
    bottom: 10%;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {

  .hero-container,
  .tech-container,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero-container {
    gap: 40px;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .float-badge {
    display: none;
  }

  .security-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: -10px 0;
  }

  .stats-container {
    flex-direction: column;
    gap: 28px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .section-header h2,
  .tech-content h2 {
    font-size: 2rem;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .download-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}