/* ===== ESTILOS COMPLETOS (copy paste desde style.css) ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #030303;
  --blue: #123458;
  --beige: #d4c9be;
  --bone: #f1efec;
  --magenta: #c53678;
  --orange-red: #ff5841;
  --bg-body: var(--bone);
  --text-primary: var(--black);
  --text-light: #2c2a28;
  --text-muted: #5a5550;
  --accent: var(--magenta);
  --accent-light: #fdeaf1;
  --accent-mid: #da608f;
  --accent-strong: var(--orange-red);
  --card-bg: #ffffff;
  --border-light: rgba(3, 3, 3, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.full-banner {
  width: 100%;
  background: var(--blue);
  color: var(--bone);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 88, 65, 0.3);
}
.full-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 88, 65, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.banner-badge {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bone);
}
.banner-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
.full-banner h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  color: white;
  margin: 0;
}
.full-banner p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 550px;
}
.banner-btn {
  background: var(--orange-red);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(255, 88, 65, 0.3);
}
.banner-btn:hover {
  background: #e0442e;
  transform: translateY(-2px);
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(197, 54, 120, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 88, 65, 0.08) 0%,
    transparent 70%
  );
  bottom: 0;
  left: -100px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--magenta);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--black);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-red);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #a32e62;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 54, 120, 0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  padding: 15px 30px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: 1.5px solid rgba(3, 3, 3, 0.2);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--magenta);
  background: rgba(197, 54, 120, 0.05);
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-card-main {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 2px 40px rgba(3, 3, 3, 0.08);
  position: relative;
  border: 1px solid var(--beige);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.service-chip .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.service-chip .icon.green {
  background: var(--accent-light);
}
.service-chip .icon.amber {
  background: #fee2d6;
}
.hero-search {
  background: var(--beige);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-search .search-icon {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero-search .search-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: var(--text-muted);
  bottom: -3px;
  right: -4px;
  transform: rotate(45deg);
}
.floating-badge {
  position: absolute;
  background: var(--card-bg);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(3, 3, 3, 0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--beige);
}
.floating-badge.top {
  top: -18px;
  right: 20px;
  animation: float 4s ease-in-out infinite;
}
.floating-badge.bottom {
  bottom: -18px;
  left: 20px;
  animation: float 4s ease-in-out 2s infinite;
}
.floating-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.floating-badge .dot.green {
  background: #4ade80;
}
.floating-badge .dot.amber {
  background: var(--orange-red);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.social-proof {
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bone);
}
.social-proof .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
}
.proof-stat .num {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}
.proof-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(3, 3, 3, 0.12);
}
section {
  padding: 100px 0;
}
.section-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
  color: var(--black);
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
}
.problem {
  background: var(--black);
  color: var(--bone);
}
.problem .section-tag {
  color: var(--orange-red);
}
.problem .section-title {
  color: var(--bone);
}
.problem .section-sub {
  color: rgba(241, 239, 236, 0.7);
  max-width: 100%;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: background 0.3s;
}
.problem-card:hover {
  background: rgba(255, 255, 255, 0.09);
}
.problem-card .big-num {
  font-family: "Fraunces", serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}
.problem-card h3 {
  color: var(--bone);
  font-size: 22px;
  margin-bottom: 10px;
}
.problem-card p {
  color: rgba(241, 239, 236, 0.6);
  font-size: 15px;
}
.steps {
  background: var(--card-bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--beige);
  transition: transform 0.25s;
}
.step:hover {
  transform: translateY(-4px);
}
.step-num {
  font-family: "Fraunces", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(197, 54, 120, 0.25);
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--black);
}
.step p {
  font-size: 15px;
  color: var(--text-light);
}
.professionals {
  background: var(--bone);
}
.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}
.pro-benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pro-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.pro-benefit:hover {
  box-shadow: 0 4px 20px rgba(3, 3, 3, 0.06);
  transform: translateX(4px);
}
.pro-benefit .benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pro-benefit h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--black);
}
.pro-benefit p {
  font-size: 14px;
  color: var(--text-muted);
}
.pro-visual {
  position: relative;
}
.profile-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 32px rgba(3, 3, 3, 0.08);
  border: 1px solid var(--beige);
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: var(--magenta);
  font-weight: 600;
}
.profile-name {
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}
.profile-role {
  font-size: 13px;
  color: var(--text-muted);
}
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--magenta);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 4px;
}
.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.profile-stat {
  text-align: center;
  background: var(--beige);
  border-radius: 10px;
  padding: 12px 8px;
}
.profile-stat .val {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}
.profile-stat .lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.profile-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--beige);
  color: var(--text-light);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 100px;
}
.coming-soon {
  background: linear-gradient(135deg, var(--blue) 0%, #0a2642 100%);
  color: var(--bone);
  text-align: center;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.coming-soon .container {
  position: relative;
  z-index: 1;
}
.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--beige);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.cs-tag .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
.coming-soon h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
  color: white;
}
.coming-soon p {
  font-size: 18px;
  color: rgba(241, 239, 236, 0.75);
  margin-bottom: 48px;
}
.countdown {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.count-block {
  text-align: center;
}
.count-num {
  font-family: "Fraunces", serif;
  font-size: 52px;
  font-weight: 600;
  color: white;
  line-height: 1;
}
.count-label {
  font-size: 13px;
  color: rgba(241, 239, 236, 0.6);
  margin-top: 4px;
}
.count-sep {
  font-family: "Fraunces", serif;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.3);
  align-self: flex-start;
  line-height: 1;
}
.countdown-message {
  font-size: 1rem;
  color: #030303;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 60px;
  margin-top: 1rem;
  font-weight: 500;
}
.lead-capture {
  background: var(--card-bg);
}
.lead-form-wrap {
  max-width: 560px;
  margin: 48px auto 0;
}
.toggle-row {
  background: var(--beige);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}
.toggle-btn {
  padding: 12px;
  border-radius: 9px;
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.toggle-btn.active {
  background: white;
  color: var(--magenta);
  box-shadow: 0 1px 6px rgba(3, 3, 3, 0.08);
  width: 100%;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--bone);
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--magenta);
  background: white;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--magenta);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover {
  background: #a32e62;
  transform: translateY(-1px);
}
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}
.success-msg {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--accent-light);
  border-radius: var(--radius);
}
.success-msg .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #fff;
}
.success-msg h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--magenta);
}
.success-msg p {
  color: var(--text-light);
  font-size: 15px;
}
footer {
  background: var(--black);
  color: rgba(241, 239, 236, 0.6);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: var(--bone);
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(241, 239, 236, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange-red);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.feature-card i {
  font-size: 2.2rem;
  color: #c53678;
  margin-bottom: 1rem;
}
.full-width-banner {
  width: 100%;
  min-height: 400px;
  background-image: url("./img/MapLoc_banner.png");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-position: center 20%;
}
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .pro-grid {
    grid-template-columns: 1fr;
  }
  .pro-visual {
    display: none;
  }
  .countdown {
    gap: 16px;
  }
  .count-num {
    font-size: 36px;
  }
  .count-sep {
    font-size: 36px;
  }
  .proof-divider {
    display: none;
  }
}
@media (max-width: 480px) {
  section {
    padding: 72px 0;
  }
  .toggle-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
  .full-banner {
    padding: 20px 16px;
  }
  .full-width-banner {
    min-height: 120px;
    background-position: center 20%;
  }
}
