:root {
  color-scheme: light;
  --bg: #f7f7f3;
  --surface: #ffffff;
  --surface-soft: #eef2f6;
  --text: #101828;
  --muted: #5f6b7a;
  --line: #d9dee7;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #f59e0b;
  --shadow: 0 24px 70px rgba(16, 24, 40, .12);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, .16), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 222, 231, .72);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, .18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a,
.language-toggle {
  white-space: nowrap;
}

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

.language-toggle {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
  transition: all .2s ease;
  cursor: pointer;
}

.language-toggle:hover {
  border-color: var(--brand);
}

.lang-option {
  position: absolute;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 850;
  color: var(--muted);
  z-index: 2;
}

.lang-option.es {
  left: 0;
}

.lang-option.en {
  right: 0;
}

.toggle-slider {
  position: absolute;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: var(--brand);
  border-radius: 999px;
  top: 2px;
  left: 2px;
  transition: left .3s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}

.language-toggle[data-lang="en"] .toggle-slider {
  left: calc(50% + 2px);
}

.language-toggle[data-lang="es"] .lang-option.es,
.language-toggle[data-lang="en"] .lang-option.en {
  color: #ffffff;
  z-index: 3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(15, 118, 110, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  box-shadow: 0 18px 36px rgba(15, 118, 110, .28);
}

.button.secondary {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  padding: 86px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 118, 110, .2);
  border-radius: 999px;
  background: rgba(15, 118, 110, .08);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .96;
  letter-spacing: -.07em;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.metric strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.04em;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 34px;
  background: #101828;
  color: #ffffff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  position: absolute;
  inset: -30% auto auto -20%;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(20, 184, 166, .4);
  content: "";
  filter: blur(8px);
}

.browser-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.preview-title {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

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

.preview-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.preview-list small {
  display: block;
  color: rgba(255, 255, 255, .68);
}

.status {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .16);
  color: #fcd34d;
  font-size: 12px;
  font-weight: 800;
}

section {
  padding: 68px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.process-card,
.trust-card,
.faq-item,
.business-card,
.service-card,
.price-card,
.hosting-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 45px rgba(16, 24, 40, .07);
}

.info-card,
.process-card,
.faq-item {
  padding: 24px;
}

.info-card h3,
.process-card h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.info-card p,
.process-card p,
.faq-item p {
  color: var(--muted);
}

.process-card strong {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: var(--text);
  color: #ffffff;
}

.business-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, .28);
  box-shadow: 0 26px 70px rgba(16, 24, 40, .12);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  min-height: 122px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .92), rgba(16, 24, 40, .94)),
    radial-gradient(circle at top right, rgba(245, 158, 11, .36), transparent 16rem);
  color: #ffffff;
}

.card-top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-top strong {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.04em;
  background: rgba(16, 24, 40, .78);
  padding: 8px 12px;
  border-radius: 10px;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
  font-size: 24px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.card-body p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 850;
}

.services {
  background: var(--text);
  color: #ffffff;
}

.services .section-head p,
.services .service-card p,
.services .service-card li {
  color: rgba(255, 255, 255, .72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 26px;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "•";
}

.pricing {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .12), transparent 28rem),
    var(--bg);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
}

.price-card.featured {
  position: relative;
  border-color: rgba(15, 118, 110, .38);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, .08), rgba(255, 255, 255, .94)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(15, 118, 110, .14);
}

.price-card.featured::before {
  display: grid;
  position: absolute;
  top: -26px;
  right: -4px;
  width: 76px;
  height: 76px;
  place-items: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #ffffff;
  content: "Preferida\A por clientes";
  clip-path: polygon(50% 0%, 61% 24%, 88% 12%, 76% 39%, 100% 50%, 76% 61%, 88% 88%, 61% 76%, 50% 100%, 39% 76%, 12% 88%, 24% 61%, 0% 50%, 24% 39%, 12% 12%, 39% 24%);
  font-size: 7px;
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(10deg);
  white-space: pre-line;
}

.price-label {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.price {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -.06em;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.price-card p {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
  font-size: 15px;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "•";
}

.hosting {
  background: #ffffff;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hosting-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 255, 255, .92);
}

.hosting-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hosting-price {
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -.04em;
}

.hosting-card p {
  color: var(--muted);
}

.hosting-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.hosting-card li {
  color: var(--muted);
  font-size: 15px;
}

.hosting-card li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "•";
}

.hosting-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 15px;
  margin-top: auto;
}

.example {
  display: block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(15, 118, 110, .08);
  color: var(--brand-dark);
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}

.trust {
  background: var(--text);
  color: #ffffff;
}

.trust-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.trust-card h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.trust-card p,
.trust-card li {
  color: rgba(255, 255, 255, .74);
}

.trust-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-card li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "•";
}

.faq {
  background: var(--bg);
}

.contact {
  padding-bottom: 86px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 242, 246, .96)),
    radial-gradient(circle at top right, rgba(15, 118, 110, .15), transparent 22rem);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.contact-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

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

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

.contact-map h3,
.contact-form-wrapper h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--text);
}

.contact-map-section h3 {
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--text);
}

.contact-form-head {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-form-head h2 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--text);
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: fit-content;
}

.notification {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  z-index: 1000;
  padding: 16px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 118, 110, .95) 0%, rgba(17, 94, 89, .95) 100%);
  border: 1px solid rgba(15, 118, 110, .4);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  animation: slideInDown .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 12px 40px rgba(15, 118, 110, .25), inset 0 1px 0 rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity .4s cubic-bezier(.34, 1.56, .64, 1);
}

.notification p {
  margin: 0;
}

.notification.hidden {
  opacity: 0;
  visibility: hidden;
  animation: slideOutUp .4s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideOutUp {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 14px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s cubic-bezier(.34, 1.56, .64, 1), visibility .3s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(15, 118, 110, .25), inset 0 1px 0 rgba(255, 255, 255, .2);
  font-size: 24px;
  border: none;
  padding: 0;
  backdrop-filter: blur(10px);
}

.scroll-to-top:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 48px rgba(15, 118, 110, .35), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(0.96);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 28px;
}

.contact-map-section {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  flex: 1;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 12px 30px rgba(16, 24, 40, .1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1080px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-grid,
  .trust-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .info-grid,
  .process-grid,
  .faq-grid,
  .service-grid,
  .price-grid,
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .hero {
    padding-top: 54px;
  }

  .nav-links .button {
    width: 100%;
  }

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

  .hero-card,
  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .price-card.featured::before {
    top: -24px;
    right: 10px;
    width: 74px;
    height: 74px;
    padding: 14px;
    font-size: 7px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
