@charset "UTF-8";
/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
/* ── Navbar ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  transition: box-shadow 0.3s;
}

.navbar--scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__brand {
  padding: 16px 0;
}

.navbar__logo {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.navbar__logo-orange {
  color: #f97316;
}

.navbar__logo-dark {
  color: #0f172a;
}

.navbar__tagline {
  font-size: 9px;
  color: #64748b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.navbar__center {
  display: flex;
  gap: 28px;
  align-items: center;
}

.navbar__link {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar__link:hover {
  color: #f97316;
}

/* Navbar actions (right side) */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  font-family: inherit;
}

.navbar__action-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.navbar__action-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.navbar__action-btn--client {
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.navbar__action-btn--client:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

/* Contacto dropdown */
.navbar__contacto {
  position: relative;
}

.navbar__action-btn--contacto {
  background: #f97316;
  color: #fff;
  border-radius: 100px;
  padding: 8px 16px;
}

.navbar__action-btn--contacto:hover {
  background: #ea580c;
  color: #fff;
}

.navbar__action-btn--contacto svg {
  fill: #fff;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  border-top: 3px solid #f97316;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 100;
}

.navbar__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}

.navbar__dropdown-item:last-child {
  border-bottom: none;
}

.navbar__dropdown-item:hover {
  background: #f8fafc;
}

.navbar__dropdown-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar__dropdown-icon--phone {
  background: #dbeafe;
  color: #2563eb;
}

.navbar__dropdown-icon--whatsapp {
  background: #dcfce7;
  color: #16a34a;
}

.navbar__dropdown-icon--email {
  background: #fef3c7;
  color: #d97706;
}

.navbar__dropdown-icon svg {
  width: 20px;
  height: 20px;
}

.navbar__dropdown-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.navbar__dropdown-sub {
  font-size: 11px;
  color: #94a3b8;
}

/* ── Hamburger ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ──────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  background: #fff;
  border-top: 1px solid #f1f5f9;
}

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

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s;
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover {
  color: #f97316;
}

.mobile-nav__link svg {
  flex-shrink: 0;
  color: #64748b;
}

.mobile-nav__link--contact {
  color: #64748b;
  font-weight: 500;
  font-size: 13px;
}

.mobile-nav__link--contact svg {
  color: #94a3b8;
}

.mobile-nav__divider {
  height: 1px;
  background: #e2e8f0;
  margin: 4px 0;
}

/* ── WhatsApp Float ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  background-color: #f8fafc;
  background-image: linear-gradient(rgba(14, 165, 233, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 165, 233, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 72px 0;
  padding-top: 142px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.hero > .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__glow {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #f8fafc);
  pointer-events: none;
}

.hero__content {
  flex: 1;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(8, 145, 178, 0.2);
  background: rgba(8, 145, 178, 0.05);
  color: #0891b2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-family: "Courier New", monospace;
}

.hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.06;
  margin: 0 0 18px 0;
  letter-spacing: -1.5px;
  text-wrap: pretty;
}

.hero__title span {
  color: #0891b2;
}

.hero__desc {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 36px 0;
  max-width: 440px;
  text-wrap: pretty;
}

.hero__cta {
  display: inline-block;
  border: 1.5px solid #f97316;
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 5px;
  background: rgba(249, 115, 22, 0.04);
  transition: all 0.2s;
}

.hero__cta:hover {
  background: #f97316;
  color: #fff;
}

.hero__image {
  flex: none;
  width: 400px;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  filter: drop-shadow(0 20px 48px rgba(14, 165, 233, 0.16));
}

/* ── Section common ──────────────────────────── */
.section {
  padding: 72px 0;
}

.section--white {
  background: #fff;
}

.section--light {
  background: #f8fafc;
}

.section--border-top {
  border-top: 1px solid rgba(14, 165, 233, 0.07);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.section__subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
}

/* ── Pricing ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-top: 2px solid #0ea5e9;
  padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}

.plan-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.plan-card__name {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.plan-card__arrow {
  color: #f97316;
  font-size: 18px;
  line-height: 1;
}

.plan-card__features {
  margin-bottom: 16px;
}

.plan-card__feature {
  display: flex;
  gap: 8px;
  padding: 3px 0;
}

.plan-card__check {
  color: #0891b2;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card__feature-text {
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.plan-card__annual {
  font-size: 10px;
  color: #cbd5e1;
  border-top: 1px solid rgba(14, 165, 233, 0.08);
  padding-top: 12px;
  margin-bottom: 14px;
}

.plan-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-card__price {
  font-size: 24px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: -0.5px;
}

.plan-card__tag {
  background: #f0f9ff;
  border: 1px solid rgba(14, 165, 233, 0.15);
  color: #0891b2;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}

.plan-card__contract-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 6px;
  background: #f97316;
  color: #fff;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.plan-card__contract-btn:hover {
  background: #ea580c;
}

.section--compact {
  padding: 42px 0;
}

.section__header--compact {
  margin-bottom: 22px;
}

.domain-search-card {
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
}

.domain-search-card__inputs {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  gap: 10px;
}

.domain-search-card__inputs input,
.domain-search-card__inputs select,
.domain-search-card__inputs button {
  height: 42px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  padding: 0 12px;
  font-family: inherit;
}

.domain-search-card__inputs button {
  background: #0891b2;
  color: #fff;
  border-color: #0891b2;
  font-weight: 700;
  cursor: pointer;
}

.domain-search-card__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
}

.domain-search-card__result {
  margin-top: 12px;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  background: #f8fafc;
  color: #0f172a;
}

.domain-search-card__result.is-ok {
  background: #ecfdf5;
  color: #166534;
}

.domain-search-card__result.is-error {
  background: #fef2f2;
  color: #991b1b;
}

.contratar-page {
  padding-top: 120px;
}

.contratar-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: start;
}

.contratar-card {
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
  overflow: hidden;
}

.contratar-card__header {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(14, 165, 233, 0.08);
  background: #f8fafc;
}

.contratar-card__header h5 {
  margin: 0;
  font-size: 14px;
  color: #0f172a;
}

.contratar-card__body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.contratar-input {
  width: 100%;
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  font-family: inherit;
}

.contratar-field {
  display: grid;
  gap: 6px;
}

.contratar-field label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.contratar-field input,
.contratar-field select {
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  font-family: inherit;
}

.contratar-field--inline {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contratar-field--inline label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.contratar-domain-wrapper {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
}

.contratar-domain-search[hidden],
#tengo_dominio[hidden] {
  display: none;
}

.contratar-domain-search {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.contratar-domain-search .contratar-input,
#tengo_dominio .contratar-input {
  background: #fff;
}

.contratar-table-wrapper {
  overflow-x: auto;
}

.contratar-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.contratar-table th,
.contratar-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.contratar-table thead th {
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contratar-table tfoot td {
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
  border-bottom: 0;
}

.service-label,
.domain-name {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #64748b;
}

.subtotal {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

.subtotal .stoffset,
.subtotal.st-offset {
  color: #0f172a;
}

.subtotal strike {
  color: #94a3b8;
}

.contratar-remove {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: #fee2e2;
  color: #b91c1c;
  cursor: pointer;
}

.contratar-btn-light {
  height: 38px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  padding: 0 14px;
  cursor: pointer;
}

.contratar-btn-light:hover {
  border-color: #0ea5e9;
  color: #0369a1;
}

.contratar-total-label {
  text-align: right;
  font-weight: 700;
  color: #334155;
}

.contratar-total-value {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.contratar-billing {
  border-top: 1px dashed #cbd5e1;
  padding-top: 12px;
}

.contratar-coupon-row {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  background: #f8fafc;
}

.contratar-coupon-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.contratar-coupon-inputs {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.contratar-summary {
  font-size: 12px;
  color: #0891b2;
  background: #f0f9ff;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 6px;
  padding: 10px;
}

.contratar-hosting-suggest {
  border: 1px dashed #f59e0b;
  border-radius: 8px;
  background: #fffbeb;
  padding: 12px;
}

.contratar-hosting-suggest h6 {
  margin: 0 0 6px 0;
  font-size: 13px;
  color: #92400e;
}

.contratar-hosting-suggest p {
  margin: 0 0 10px 0;
  font-size: 12px;
  color: #78350f;
}

.contratar-hosting-suggest__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.contratar-addons {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
}

.contratar-addons h5 {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contratar-addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.servicio-adicional {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.servicio-adicional:hover {
  border-color: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.1);
}

.adicional-titulo {
  font-size: 13px;
  color: #0f172a;
}

.adicional-precio {
  font-size: 14px;
  font-weight: 700;
  color: #0891b2;
}

.adicional-link {
  font-size: 12px;
  color: #0284c7;
  text-decoration: none;
}

.adicional-link:hover {
  text-decoration: underline;
}

.btn-agregar_adicional {
  margin-top: auto;
  align-self: start;
  height: 32px;
  padding: 0 14px;
  border: 1px solid #0ea5e9;
  border-radius: 6px;
  background: #fff;
  color: #0369a1;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-agregar_adicional:hover {
  background: #0ea5e9;
  color: #fff;
}

.contratar-submit {
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #f97316;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.contract-page__result {
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  background: #f8fafc;
}

.contract-page__result.is-ok {
  background: #ecfdf5;
  color: #166534;
}

.contract-page__result.is-error {
  background: #fef2f2;
  color: #991b1b;
}

/* ── Features ────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid rgba(14, 165, 233, 0.09);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(8, 145, 178, 0.07);
  border: 1px solid rgba(8, 145, 178, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-card__abbr {
  font-size: 11px;
  font-weight: 900;
  color: #0891b2;
  letter-spacing: -0.3px;
}

.feature-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.55;
}

/* ── Testimonials ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-card__quote {
  font-size: 44px;
  line-height: 0.8;
  color: rgba(249, 115, 22, 0.18);
  font-weight: 900;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 22px 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 165, 233, 0.08);
}

.testimonial-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #0ea5e9);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-card__role {
  font-size: 11px;
  color: #94a3b8;
}

/* ── Por qué elegirnos ──────────────────────── */
.porque-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.porque-item {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.porque-texto {
  flex: 1;
}

.porque-texto h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.porque-texto p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.porque-texto--right {
  text-align: right;
}

.porque-img {
  flex-shrink: 0;
}

.porque-img img {
  display: block;
}

/* ── Contacto buttons ───────────────────────── */
.contacto-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contacto-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 60px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contacto-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.contacto-btn img {
  flex-shrink: 0;
}

.contacto-btn__text {
  display: flex;
  flex-direction: column;
}

.contacto-btn__sub {
  font-size: 12px;
  color: #64748b;
}

.contacto-btn__title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.contacto-btn__number {
  font-size: 20px;
  font-weight: 800;
  color: #0891b2;
}

.contacto-btn--phone {
  background: #fff;
}

.contacto-btn--whatsapp {
  background: #73bb70;
}

.contacto-btn--whatsapp .contacto-btn__title {
  color: #fff;
  font-size: 17px;
}

/* ── Clientes ───────────────────────────────── */
.clientes-section {
  background: #0f172a;
  padding: 56px 0;
  overflow: hidden;
}

.clientes-carousel {
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clientes-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: clientes-scroll 30s linear infinite;
}

.clientes-carousel:hover .clientes-track {
  animation-play-state: paused;
}

@keyframes clientes-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cliente-logo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: transform 0.2s;
}

.cliente-logo:hover {
  transform: scale(1.08);
}

.cliente-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s;
}

.cliente-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ── Client Zone ─────────────────────────────── */
.client-zone {
  padding: 40px 0;
}

.client-zone__box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.client-zone__accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0ea5e9, #f97316);
}

.client-zone__content {
  z-index: 1;
}

.client-zone__label {
  font-size: 10px;
  font-weight: 700;
  color: #0891b2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Courier New", monospace;
}

.client-zone__title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.client-zone__desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  max-width: 480px;
}

.client-zone__cta {
  flex-shrink: 0;
  display: inline-block;
  border: 1.5px solid #f97316;
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 5px;
  background: rgba(249, 115, 22, 0.04);
  z-index: 1;
  transition: all 0.2s;
}

.client-zone__cta:hover {
  background: #f97316;
  color: #fff;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: #f6f6f6;
  padding: 0 0 0;
}

.footer__logo-top {
  text-align: center;
  padding: 48px 0 32px;
}

.footer__logo-brand {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer__logo-brand-orange {
  color: #f97316;
}

.footer__logo-brand-dark {
  color: #0f172a;
}

.footer__logo-tagline {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer__badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer__badges img {
  max-width: 120px;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer__badges img:hover {
  opacity: 1;
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.footer__link {
  color: #666;
  font-size: 12px;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #f97316;
}

.footer__order-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.footer__order-btn:hover {
  opacity: 0.9;
}

.footer__ventas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__ventas-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__ventas-label {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.footer__ventas-phone {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.footer__ventas-phone small {
  font-size: 14px;
  font-weight: 600;
}

.footer__ventas-info {
  font-size: 13px;
  color: #555;
}

.footer__bottom {
  border-top: 1px solid #e0e0e0;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__bottom-left img {
  flex-shrink: 0;
}

.footer__copyright {
  font-size: 11px;
  color: #999;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer__bottom-right a {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer__bottom-right a:hover {
  opacity: 1;
}

.footer__bottom-right svg {
  width: 18px;
  height: 18px;
  fill: #666;
}

.footer__data-fiscal {
  font-size: 10px;
  color: #999;
  opacity: 1 !important;
  transition: color 0.2s;
}

.footer__data-fiscal:hover {
  color: #f97316;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .navbar > .container {
    flex-wrap: wrap;
  }
  .navbar__center {
    display: none;
  }
  .navbar__actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 48px 0;
    padding-top: 118px;
    min-height: auto;
  }
  .hero > .container {
    flex-direction: column;
  }
  .hero__image {
    width: 100%;
    max-width: 320px;
  }
  .hero__title {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .section {
    padding: 48px 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .domain-search-card__inputs {
    grid-template-columns: 1fr;
  }
  .contratar-page {
    padding-top: 96px;
  }
  .contratar-layout {
    grid-template-columns: 1fr;
  }
  .contratar-domain-search {
    grid-template-columns: 1fr 100px;
  }
  .contratar-addons__grid {
    grid-template-columns: 1fr;
  }
  .contratar-coupon-inputs {
    grid-template-columns: 1fr;
  }
  .contratar-hosting-suggest__actions {
    grid-template-columns: 1fr;
  }
  .contratar-field--inline {
    flex-direction: column;
    align-items: flex-start;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .porque-item {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .porque-item:nth-child(even) {
    flex-direction: column;
  }
  .porque-texto--right {
    text-align: center;
  }
  .contacto-btns {
    flex-direction: column;
    align-items: center;
  }
  .contacto-btn {
    width: 100%;
    max-width: 400px;
    padding: 14px 20px;
  }
  .cliente-logo {
    width: 90px;
    height: 60px;
    padding: 8px;
  }
  .clientes-track {
    gap: 12px;
  }
  .client-zone {
    padding: 24px 0;
  }
  .client-zone__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .footer__logo-top {
    padding: 32px 0 20px;
  }
  .footer__logo-brand {
    font-size: 28px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer__bottom-left {
    flex-direction: column;
  }
  .footer__bottom-right {
    justify-content: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
