﻿:root {
  --brand-primary: #007483;
  --brand-light: #e7e7dd;
  --brand-secondary: #00597d;
  --brand-dark: #02305a;
  --text-main: #102430;
  --text-soft: #4f6573;
  --surface: #ffffff;
  --success: #1f9d6a;
  --danger: #b83737;
  --shadow: 0 14px 30px rgba(2, 48, 90, 0.16);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Verdana", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top right, rgba(0, 138, 147, 0.14), transparent 45%), var(--brand-light);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

section[id] {
  scroll-margin-top: 88px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 4.3vw, 2.2rem);
  line-height: 1.2;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 48, 90, 0.22);
}

.btn-primary {
  background: var(--brand-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: #00737a;
}

.btn-secondary {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(0, 138, 147, 0.12);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.btn-whats {
  background: #1cae61;
  color: #ffffff;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 48, 90, 0.94);
  border-bottom: 1px solid rgba(231, 231, 221, 0.16);
  backdrop-filter: blur(8px);
}

.header-content {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 136px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.32));
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(231, 231, 221, 0.24);
  border-radius: 10px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  padding: 0 22px;
  background: rgba(2, 48, 90, 0.98);
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.site-nav.open {
  max-height: 360px;
  padding: 20px 22px 22px;
}

.site-nav a {
  color: #ffffff;
  font-weight: 600;
  width: fit-content;
}

.site-nav a:hover {
  color: #8dd9df;
}

.header-whats {
  display: none;
  font-size: 0.9rem;
  padding: 10px 14px;
}

.header-cta {
  display: none;
  font-size: 0.9rem;
  padding: 10px 18px;
  white-space: nowrap;
}

.hero {
  padding-top: 116px;
  background: linear-gradient(145deg, var(--brand-dark), var(--brand-secondary));
  color: #ffffff;
}

.hero-grid {
  display: grid;
  gap: 26px;
}

.hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  line-height: 1.12;
}

.hero .eyebrow {
  color: #9ee0e4;
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35d4d2;
  position: absolute;
  left: 0;
  top: 7px;
}

.hero-showcase {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-mockup-stack {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 40px;
}

.hero-mockup-desktop {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(1, 18, 32, 0.4);
}

.hero-mockup-mobile {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: 38%;
  max-width: 155px;
  filter: drop-shadow(0 12px 20px rgba(1, 18, 32, 0.5));
}

.hero-showcase h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.hero-metrics {
  display: grid;
  gap: 12px;
}

.hero-metrics article {
  background: rgba(2, 48, 90, 0.42);
  border-radius: 12px;
  padding: 12px;
}

.hero-metrics strong {
  display: block;
  font-size: 1rem;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.benefits-grid,
.features-grid,
.plans-grid {
  display: grid;
  gap: 16px;
}

.benefit-card,
.feature-card,
.plan-card,
.testimonial-card,
.contact-form,
.contact-copy,
.tutorial-box,
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-card,
.feature-card,
.plan-card,
.contact-copy,
.contact-form,
.faq-item {
  padding: 20px;
}

.benefit-card h3,
.feature-card h3,
.plan-card h3,
.testimonial-card h3 {
  margin: 0 0 10px;
}

.benefit-card p,
.feature-card p,
.plan-card li,
.contact-copy p,
.testimonial-card p {
  color: var(--text-soft);
}

.benefit-card strong {
  color: var(--brand-dark);
}

.benefit-label {
  display: inline-flex;
  margin: 4px 0 6px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(0, 89, 125, 0.1);
  color: var(--brand-secondary);
}

.feature-card {
  border: 1px solid rgba(0, 89, 125, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.benefit-card:hover,
.plan-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(2, 48, 90, 0.2);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0;
}

.product-preview {
  padding-top: 18px;
}

.preview-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.preview-image-wrap {
  background: linear-gradient(135deg, #f3fbfb, #d9f0ef);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 89, 125, 0.14);
  box-shadow: var(--shadow);
  padding: 10px;
}

.preview-image-wrap img {
  width: 100%;
  border-radius: 12px;
}

.preview-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.2;
}

.preview-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

.preview-points {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.preview-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text-main);
  font-weight: 600;
}

.preview-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  position: absolute;
  left: 0;
  top: 8px;
}

.plans {
  background: linear-gradient(180deg, transparent, rgba(0, 138, 147, 0.08));
}

.plans-tabs {
  margin-bottom: 18px;
}

.plans-tablist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 89, 125, 0.18);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(2, 48, 90, 0.1);
}

.plans-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 12px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.plans-tab:hover {
  transform: translateY(-1px);
}

.plans-tab.active {
  background: var(--brand-primary);
  color: #ffffff;
}

.plans-tab-pill {
  background: rgba(2, 48, 90, 0.15);
  color: inherit;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 3px 7px;
}

.plans-tab.active .plans-tab-pill {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.plans-tab-note {
  margin: 10px 4px 0;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 0.92rem;
}

.plan-panel {
  margin-top: 8px;
}

.plan-panel[hidden] {
  display: none;
}

.annual-highlight {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 138, 147, 0.25);
  background: rgba(0, 138, 147, 0.1);
  color: var(--brand-dark);
  box-shadow: 0 10px 18px rgba(0, 89, 125, 0.12);
}

.annual-highlight strong {
  display: block;
  margin-bottom: 4px;
}

.annual-highlight span {
  color: var(--brand-secondary);
  font-weight: 700;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-price {
  margin: 8px 0 14px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-dark);
}

.plan-advantage {
  margin: -2px 0 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 138, 147, 0.12);
  color: var(--brand-primary);
  font-weight: 700;
}
.plan-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.plan-card li {
  padding-left: 2px;
}

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

.recommended {
  border: 2px solid var(--brand-primary);
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
}

.badge-premium {
  background: var(--brand-dark);
}

.testimonials {
  background: var(--brand-dark);
  color: #ffffff;
}

.testimonials .eyebrow {
  color: #8dd9df;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: #ffffff;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.38s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 24px;
}

.testimonial-card p {
  margin: 0 0 10px;
}

.testimonial-card .stars {
  color: #ffcd3d;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.testimonial-card span {
  font-size: 0.92rem;
  color: var(--brand-secondary);
}

.carousel-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.carousel-dot.active {
  background: #ffffff;
}

.tutorial-box {
  padding: 24px;
  display: grid;
  gap: 18px;
  background: linear-gradient(130deg, #ffffff, #f7fbfb);
  border: 1px solid rgba(0, 89, 125, 0.15);
}

.tutorial-box p {
  margin: 8px 0;
  color: var(--text-soft);
}

.tutorial-box a {
  color: var(--brand-secondary);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0, 89, 125, 0.1);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-copy h2 {
  margin: 8px 0 12px;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 89, 125, 0.24);
  background: #fff;
  padding: 11px 12px;
  font-size: 0.98rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 138, 147, 0.26);
  border-color: var(--brand-primary);
}

.field-error {
  min-height: 16px;
  font-size: 0.82rem;
  color: var(--danger);
}

.form-feedback {
  min-height: 18px;
  margin: 2px 0 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-feedback.success {
  color: var(--success);
}

.form-feedback.error {
  color: var(--danger);
}

.site-footer {
  background: #011f3a;
  color: rgba(255, 255, 255, 0.88);
  padding: 46px 0 28px;
}

.footer-content {
  display: grid;
  gap: 20px;
}

.footer-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 148px;
  height: auto;
  filter: brightness(1.08);
}

.footer-content p,
.footer-content a {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-content a {
  display: block;
}

.footer-content a:hover {
  color: #9fe5e8;
}

.copyright {
  margin: 22px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1100;
  padding: 12px 14px;
  border-radius: 999px;
  background: #20b161;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 177, 97, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(32, 177, 97, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 177, 97, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .hero-showcase {
    padding: 22px;
  }

  .hero-mockup-mobile {
    right: -14px;
    width: 34%;
  }

  .benefits-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid,
  .footer-content,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-tablist {
    max-width: 430px;
  }

  .preview-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .tutorial-box {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: transparent;
  }

  .site-nav a {
    color: #d7f2f2;
  }

  .logo img {
    width: 164px;
  }

  .header-whats {
    display: inline-flex;
  }

  .header-cta {
    display: inline-flex;
  }

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

  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

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

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn,
  .carousel-dots {
    display: none;
  }

  .testimonials-viewport {
    overflow: visible;
  }

  .testimonials-track {
    transform: none !important;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .testimonial-card {
    flex: auto;
  }
}

/* ===== BENEFIT ICON ===== */
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

/* ===== FEATURE ICON SVG ===== */
.feature-icon svg {
  width: 22px;
  height: 22px;
}

/* ===== BTN LARGE ===== */
.btn-lg {
  padding: 15px 28px;
  font-size: 1.05rem;
}

/* ===== COMO FUNCIONA ===== */
.how-it-works {
  background: linear-gradient(180deg, var(--brand-light), rgba(0, 116, 131, 0.06));
}

.steps-grid {
  display: grid;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
  border: 1px solid rgba(0, 116, 131, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(2, 48, 90, 0.18);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 116, 131, 0.12);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -0.04em;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  margin-bottom: 16px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.step-connector {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(0, 116, 131, 0.4);
}

.step-connector svg {
  width: 28px;
  height: 28px;
}

.steps-cta {
  text-align: center;
}

@media (min-width: 760px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 8px;
  }

  .step-connector {
    display: flex;
  }
}

/* ===== PWA SECTION ===== */
.pwa-section {
  background: linear-gradient(145deg, var(--brand-dark), var(--brand-secondary));
  color: #ffffff;
}

.pwa-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.pwa-copy .eyebrow {
  color: #9ee0e4;
}

.pwa-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  line-height: 1.15;
  color: #ffffff;
}

.pwa-copy > p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  line-height: 1.65;
}

.pwa-copy strong {
  color: #5dd8de;
}

.pwa-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pwa-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.pwa-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(93, 216, 222, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5dd8de;
}

.pwa-check svg {
  width: 13px;
  height: 13px;
}

.pwa-visual {
  display: flex;
  justify-content: center;
}

.pwa-phone-wrap {
  position: relative;
  width: min(280px, 100%);
}

.pwa-phone-wrap img {
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.pwa-badge-float {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: #ffffff;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.pwa-badge-float svg {
  width: 18px;
  height: 18px;
  color: var(--brand-primary);
}

@media (min-width: 760px) {
  .pwa-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pwa-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }
}

/* ===== CONTACT TRUST ITEMS ===== */
.contact-trust {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 600;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* ===== FORM TITLE ===== */
.form-title {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-dark);
}

/* ===== FLOATING WHATSAPP ICON ===== */
.floating-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

