/* Sílice — landing ultra pro */
:root {
  --blue: #34598e;
  --blue-2: #5578a9;
  --blue-3: #223d67;
  --orange: #f66c00;
  --orange-2: #ff8a30;
  --orange-3: #ffae72;
  --bg: #070d17;
  --bg-2: #0d1625;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --text: #f5f7fb;
  --muted: #aeb8c8;
  --line: rgba(255,255,255,.11);
  --success: #58d39b;
  --shadow: 0 30px 90px rgba(0,0,0,.38);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 10%, rgba(246,108,0,.16), transparent 29rem),
    radial-gradient(circle at 8% 92%, rgba(52,89,142,.25), transparent 35rem),
    linear-gradient(135deg, #070d17 0%, #0c1422 48%, #080d16 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: -3;
  pointer-events: none;
  opacity: .38;
  background:
    radial-gradient(ellipse at 18% 24%, rgba(74,107,158,.16) 0%, transparent 34%),
    radial-gradient(ellipse at 78% 18%, rgba(246,108,0,.11) 0%, transparent 29%),
    radial-gradient(ellipse at 56% 82%, rgba(37,69,112,.16) 0%, transparent 38%);
  filter: blur(18px);
  animation: backgroundBreath 24s ease-in-out infinite alternate;
  transform-origin: center;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; }

.site-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  text-decoration: none;
  outline-offset: 6px;
}
.brand img {
  width: clamp(154px, 16vw, 198px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.32)) drop-shadow(0 10px 24px rgba(0,0,0,.28));
  transition: transform .2s ease, filter .2s ease;
}
.brand:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 1px rgba(255,255,255,.42)) drop-shadow(0 12px 28px rgba(0,0,0,.34));
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 720;
}
.header-link {
  color: #dce3ee;
  text-decoration: none;
  transition: color .2s ease;
}
.header-link:hover { color: var(--orange-2); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 15px;
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f47f20);
  box-shadow: 0 16px 42px rgba(246,108,0,.23);
}
.button-primary:hover {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 19px 48px rgba(246,108,0,.31);
}
.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}
.button-secondary:hover {
  border-color: rgba(85,120,169,.72);
  background: rgba(52,89,142,.12);
}
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(390px,.9fr);
  align-items: center;
  gap: clamp(42px,7vw,96px);
  padding: 64px 0 54px;
}
.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(246,108,0,.28);
  border-radius: 999px;
  color: #ffab70;
  background: rgba(246,108,0,.075);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px,5.8vw,78px);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
h1 span {
  color: transparent;
  background: linear-gradient(105deg,#f4f7fb 3%,var(--blue-2) 47%,var(--orange-2) 98%);
  -webkit-background-clip: text;
  background-clip: text;
}
.lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c1cad8;
  font-size: clamp(17px,1.55vw,20px);
  line-height: 1.67;
  text-wrap: pretty;
}
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.services { margin-top: 34px; }
.service-tabs { display: flex; flex-wrap: wrap; gap: 9px; }
.service-tab {
  min-height: 43px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d5dce7;
  background: rgba(255,255,255,.025);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.service-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(85,120,169,.58);
  background: rgba(52,89,142,.1);
}
.service-tab[aria-selected="true"] {
  color: #fff;
  border-color: var(--orange);
  background: linear-gradient(135deg,var(--orange),#e85c00);
  box-shadow: 0 10px 30px rgba(246,108,0,.16);
}
.service-detail {
  position: relative;
  max-width: 690px;
  min-height: 144px;
  margin-top: 13px;
  padding: 19px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,rgba(52,89,142,.12),rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.service-detail::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(246,108,0,.09);
  filter: blur(8px);
}
.service-detail.is-changing .service-detail-inner { opacity: 0; transform: translateY(5px); }
.service-detail-inner { position: relative; z-index: 1; transition: opacity .16s ease, transform .16s ease; }
.service-detail h2 { margin: 0 0 7px; font-size: 17px; letter-spacing: -.015em; }
.service-detail p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }
.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: #d5dce7;
  font-size: 12px;
  font-weight: 690;
}
.service-points li { display: inline-flex; align-items: center; gap: 7px; }
.service-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(246,108,0,.1);
}
.service-more {
  display: none;
  width: fit-content;
  margin-top: 15px;
  color: #ffb27c;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.service-more.is-visible { display: inline-flex; align-items: center; gap: 7px; }
.service-more:hover { color: #fff; }

.visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.visual::before,.visual::after { content:""; position:absolute; z-index:-2; border-radius:50%; filter:blur(2px); }
.visual::before { width:390px; height:390px; border:1px solid rgba(85,120,169,.22); box-shadow:0 0 95px rgba(52,89,142,.14); }
.visual::after { width:270px; height:270px; border:1px dashed rgba(246,108,0,.2); animation:spin 36s linear infinite; }
.orb { position:absolute; z-index:-1; border-radius:50%; filter:blur(1px); }
.orb-blue { width:18px; height:18px; top:18%; left:12%; background:var(--blue-2); box-shadow:0 0 32px rgba(85,120,169,.72); }
.orb-orange { width:12px; height:12px; right:8%; bottom:20%; background:var(--orange); box-shadow:0 0 30px rgba(246,108,0,.74); }
.support-card {
  position: relative;
  z-index: 2;
  width: min(430px,91%);
  padding: 31px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg,rgba(255,255,255,.105),rgba(255,255,255,.038));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.card-top { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.status { display:inline-flex; align-items:center; gap:10px; color:#dce3ed; font-size:13px; font-weight:760; }
.status::before { content:""; width:9px; height:9px; border-radius:50%; background:var(--success); box-shadow:0 0 0 6px rgba(88,211,155,.11); }
.mini-logo { width:55px; height:55px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.1); border-radius:17px; background:rgba(5,10,18,.35); }
.mini-logo img { width:36px; height:40px; object-fit:contain; filter:drop-shadow(0 0 1px rgba(255,255,255,.22)); }
.support-card h2 { margin:39px 0 12px; font-size:clamp(28px,3vw,37px); line-height:1.1; letter-spacing:-.04em; text-wrap:balance; }
.support-card > p { margin:0; color:var(--muted); font-size:15px; line-height:1.64; }
.coverage { display:grid; gap:10px; margin-top:27px; }
.coverage-item { display:grid; grid-template-columns:42px 1fr; align-items:center; gap:12px; min-height:63px; padding:10px 13px; border:1px solid rgba(255,255,255,.085); border-radius:15px; background:rgba(0,0,0,.14); }
.coverage-icon { width:38px; height:38px; display:grid; place-items:center; border-radius:12px; color:#ff9a55; background:rgba(246,108,0,.105); }
.coverage-item strong { display:block; font-size:13px; }
.coverage-item span { display:block; margin-top:3px; color:#9facbd; font-size:11px; line-height:1.35; }
.card-contact { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin-top:26px; }
.card-contact a { min-width:0; min-height:46px; display:inline-flex; align-items:center; justify-content:center; gap:7px; padding:0 10px; border-radius:13px; color:#e7ebf2; background:rgba(255,255,255,.06); text-decoration:none; font-size:12px; font-weight:740; transition:background .2s ease,color .2s ease; }
.card-contact a:hover { color:#fff; background:rgba(52,89,142,.22); }

/* Hosting page */
.hosting-main { flex:1; padding:72px 0 64px; }
.hosting-hero { max-width:880px; margin:0 auto; text-align:center; }
.hosting-hero .eyebrow { margin-inline:auto; }
.hosting-hero h1 { max-width:900px; margin-inline:auto; font-size:clamp(43px,6vw,76px); }
.hosting-hero .lead { max-width:760px; margin-inline:auto; }
.hosting-note { display:inline-flex; align-items:center; gap:8px; margin-top:22px; padding:9px 13px; border:1px solid rgba(85,120,169,.28); border-radius:999px; color:#cbd4e2; background:rgba(52,89,142,.08); font-size:12px; font-weight:700; }
.hosting-note::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--success); box-shadow:0 0 0 4px rgba(88,211,155,.1); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:54px; align-items:stretch; }
.plan-card { position:relative; display:flex; flex-direction:column; min-height:100%; padding:27px; border:1px solid var(--line); border-radius:24px; background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025)); box-shadow:0 22px 65px rgba(0,0,0,.18); overflow:hidden; }
.plan-card::before { content:""; position:absolute; width:160px; height:160px; top:-105px; right:-80px; border-radius:50%; background:rgba(52,89,142,.17); filter:blur(4px); }
.plan-card.recommended { transform:translateY(-10px); border-color:rgba(246,108,0,.5); background:linear-gradient(145deg,rgba(246,108,0,.105),rgba(255,255,255,.035)); box-shadow:0 28px 80px rgba(246,108,0,.11),0 22px 65px rgba(0,0,0,.22); }
.plan-badge { position:absolute; top:17px; right:17px; padding:7px 10px; border-radius:999px; color:#fff; background:linear-gradient(135deg,var(--orange),#e85c00); font-size:10px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
.plan-kicker { color:#9facbd; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.plan-card h2 { margin:9px 0 0; font-size:27px; letter-spacing:-.035em; }
.plan-storage { margin-top:7px; color:#c9d1dd; font-size:14px; }
.plan-price { display:flex; align-items:flex-end; gap:7px; margin-top:25px; }
.plan-price strong { font-size:clamp(32px,3vw,42px); line-height:1; letter-spacing:-.045em; }
.plan-price span { padding-bottom:4px; color:#9facbd; font-size:12px; }
.tax { margin:7px 0 0; color:#8390a2; font-size:11px; }
.plan-features { display:grid; gap:11px; margin:27px 0 0; padding:0; list-style:none; }
.plan-features li { display:grid; grid-template-columns:20px 1fr; gap:9px; align-items:start; color:#d4dbe6; font-size:13px; line-height:1.4; }
.plan-features li::before { content:"✓"; width:20px; height:20px; display:grid; place-items:center; border-radius:50%; color:#ffad72; background:rgba(246,108,0,.1); font-size:11px; font-weight:900; }
.plan-card .button { width:100%; margin-top:auto; padding-top:0; }
.plan-cta-wrap { padding-top:29px; }
.commercial-strip { display:grid; grid-template-columns:1.15fr .85fr; gap:18px; margin-top:24px; }
.info-card { padding:24px; border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.035); }
.info-card h2 { margin:0; font-size:18px; letter-spacing:-.02em; }
.info-card p { margin:9px 0 0; color:var(--muted); font-size:13px; line-height:1.6; }
.info-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:17px; }
.all-plans { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:17px; }
.all-plans div { padding:13px; border:1px solid rgba(255,255,255,.08); border-radius:13px; background:rgba(0,0,0,.12); text-align:center; }
.all-plans strong { display:block; color:#fff; font-size:13px; }
.all-plans span { display:block; margin-top:4px; color:#9facbd; font-size:11px; }
.hosting-disclaimer { margin:20px auto 0; color:#7f8b9c; font-size:11px; line-height:1.5; text-align:center; }

.site-footer { min-height:75px; display:flex; align-items:center; justify-content:space-between; gap:20px; border-top:1px solid var(--line); color:#8995a6; font-size:12px; }
.footer-links { display:flex; gap:17px; }
.site-footer a { color:#bac3d0; text-decoration:none; }
.site-footer a:hover { color:var(--orange-2); }

@keyframes spin { to { transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
}
@media (max-width:1000px) {
  .site-shell { width:min(100% - 32px,780px); }
  .hero { grid-template-columns:1fr; gap:54px; padding-top:58px; }
  .hero-copy { text-align:center; }
  .hero-copy .eyebrow,.lead,.service-detail { margin-inline:auto; }
  .actions,.service-tabs,.service-points { justify-content:center; }
  .visual { min-height:495px; }
  .pricing-grid { grid-template-columns:1fr; max-width:640px; margin-inline:auto; margin-top:45px; }
  .plan-card.recommended { transform:none; }
  .commercial-strip { grid-template-columns:1fr; max-width:640px; margin-inline:auto; }
}
@media (max-width:680px) {
  .site-shell { width:min(100% - 24px,560px); }
  .site-header { min-height:86px; gap:13px; }
  .brand img { width:145px; }
  .header-actions { gap:10px; }
  .header-actions .header-link { display:none; }
  .header-actions .button { min-height:44px; padding:0 16px; font-size:13px; }
  .hero { align-items:start; padding:45px 0 42px; gap:44px; }
  h1 { font-size:clamp(41px,13vw,61px); }
  .lead { font-size:16.5px; line-height:1.6; }
  .actions { display:grid; grid-template-columns:1fr; }
  .button { width:100%; }
  .service-tabs { gap:7px; }
  .service-tab { min-height:40px; padding:0 12px; font-size:12px; }
  .service-detail { min-height:175px; padding:17px; text-align:left; }
  .service-points { justify-content:flex-start; }
  .visual { min-height:460px; }
  .visual::before { width:320px; height:320px; }
  .visual::after { width:225px; height:225px; }
  .support-card { padding:24px; }
  .support-card h2 { margin-top:31px; }
  .card-contact { grid-template-columns:1fr; }
  .hosting-main { padding:48px 0 46px; }
  .hosting-hero h1 { font-size:clamp(40px,12vw,58px); }
  .pricing-grid { gap:13px; margin-top:38px; }
  .plan-card { padding:23px; }
  .all-plans { grid-template-columns:1fr; }
  .site-footer { padding:22px 0; flex-direction:column; justify-content:center; text-align:center; }
}
@media (max-width:390px) {
  .brand img { width:130px; }
  .header-actions .button { padding-inline:13px; }
  .service-tabs { display:grid; grid-template-columns:1fr 1fr; }
  .service-tab { width:100%; }
}

/* Catálogo Hosting Pro */
.catalog-tabs{position:sticky;top:12px;z-index:20;display:flex;gap:8px;width:fit-content;max-width:100%;margin:42px auto 0;padding:7px;overflow:auto;border:1px solid var(--line);border-radius:999px;background:rgba(7,13,23,.86);backdrop-filter:blur(18px)}
.catalog-tab{min-height:46px;flex:0 0 auto;padding:0 20px;border:0;border-radius:999px;color:#cbd3df;background:transparent;font-size:12px;font-weight:850;letter-spacing:.05em;cursor:pointer}.catalog-tab[aria-selected=true]{color:#fff;background:linear-gradient(135deg,var(--orange),#e85c00);box-shadow:0 10px 28px rgba(246,108,0,.2)}
.catalog-panel{padding-top:40px}.catalog-panel[hidden]{display:none}.catalog-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:24px}.catalog-label{color:var(--orange-3);font-size:11px;font-weight:900;letter-spacing:.12em}.catalog-heading h2{max-width:720px;margin:8px 0 0;font-size:clamp(24px,3vw,36px);line-height:1.15;letter-spacing:-.035em}.pricing-grid-corporate{grid-template-columns:repeat(3,minmax(0,1fr))}.plan-card h3{margin:9px 0 0;font-size:27px;letter-spacing:-.035em}.regular-price{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:22px;color:#8f9aab;font-size:11px}.regular-price del{color:#aab4c2;font-size:14px}.promo-label{margin-top:10px;color:#ffab70;font-size:10px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:1000px){.pricing-grid-corporate{grid-template-columns:1fr}.catalog-heading{max-width:640px;margin-inline:auto;align-items:flex-start;flex-direction:column}}@media(max-width:680px){.catalog-tabs{width:100%;justify-content:flex-start;margin-top:30px;border-radius:18px}.catalog-tab{min-height:42px;padding-inline:15px;font-size:11px}.catalog-panel{padding-top:30px}.catalog-heading{gap:8px;margin-bottom:18px}}


/* Ambient motion — formas amplias, limpias y sutiles */
.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.ambient-scene::before,
.ambient-scene::after {
  content: "";
  position: absolute;
  border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%;
  will-change: transform;
}

.ambient-scene::before {
  width: min(62vw, 58rem);
  height: min(38vw, 34rem);
  left: -20vw;
  top: 18vh;
  border: 1px solid rgba(85,120,169,.08);
  background:
    linear-gradient(135deg, rgba(85,120,169,.055), rgba(85,120,169,.008) 52%, transparent 72%);
  box-shadow:
    inset 0 0 70px rgba(85,120,169,.025),
    0 0 95px rgba(52,89,142,.035);
  transform: rotate(-13deg);
  animation: ambientVeilBlue 28s ease-in-out infinite alternate;
}

.ambient-scene::after {
  width: min(48vw, 44rem);
  height: min(31vw, 27rem);
  right: -17vw;
  bottom: 7vh;
  border: 1px solid rgba(246,108,0,.065);
  background:
    linear-gradient(145deg, rgba(246,108,0,.04), rgba(246,108,0,.006) 55%, transparent 76%);
  box-shadow:
    inset 0 0 70px rgba(246,108,0,.018),
    0 0 95px rgba(246,108,0,.025);
  transform: rotate(16deg);
  animation: ambientVeilOrange 32s ease-in-out infinite alternate;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(92px);
  will-change: transform;
}

.ambient-glow-blue {
  width: 38rem;
  height: 38rem;
  left: -15rem;
  bottom: -18rem;
  opacity: .13;
  background: var(--blue);
  animation: ambientDriftBlue 24s ease-in-out infinite alternate;
}

.ambient-glow-orange {
  width: 32rem;
  height: 32rem;
  right: -13rem;
  top: -15rem;
  opacity: .115;
  background: var(--orange);
  animation: ambientDriftOrange 29s ease-in-out infinite alternate;
}

/* Las antiguas partículas ahora son formas de vidrio grandes; no puntos. */
.ambient-particle {
  position: absolute;
  border: 1px solid rgba(255,255,255,.055);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.006));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 16px 55px rgba(0,0,0,.035);
  backdrop-filter: blur(1px);
  opacity: .62;
  will-change: transform;
}

.particle-1 {
  width: 118px;
  height: 118px;
  left: 7%;
  top: 19%;
  border-radius: 39% 61% 54% 46% / 44% 38% 62% 56%;
  border-color: rgba(85,120,169,.075);
  background: linear-gradient(145deg, rgba(85,120,169,.045), rgba(255,255,255,.006));
  animation: glassFloatOne 19s ease-in-out infinite alternate;
}

.particle-2 {
  width: 172px;
  height: 116px;
  left: 28%;
  bottom: 5%;
  border-radius: 58% 42% 48% 52% / 43% 54% 46% 57%;
  border-color: rgba(246,108,0,.06);
  background: linear-gradient(145deg, rgba(246,108,0,.032), rgba(255,255,255,.004));
  animation: glassFloatTwo 25s ease-in-out infinite alternate;
}

.particle-3 {
  width: 136px;
  height: 136px;
  right: 13%;
  top: 27%;
  border-radius: 50%;
  border-color: rgba(184,201,226,.045);
  background: radial-gradient(circle at 34% 28%, rgba(184,201,226,.03), transparent 66%);
  animation: glassFloatThree 23s ease-in-out infinite alternate;
}

.particle-4,
.particle-5 {
  display: none;
}

.ambient-ring {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.ring-1 {
  width: 31rem;
  height: 31rem;
  right: 1%;
  top: 13%;
  border: 1px solid rgba(85,120,169,.065);
  box-shadow:
    inset 0 0 0 54px rgba(85,120,169,.008),
    inset 0 0 0 108px rgba(85,120,169,.006);
  animation: ambientOrbit 58s linear infinite;
}

.ring-2 {
  width: 20rem;
  height: 20rem;
  left: 1%;
  bottom: 3%;
  border: 1px solid rgba(246,108,0,.05);
  box-shadow: inset 0 0 0 42px rgba(246,108,0,.006);
  animation: ambientOrbitReverse 51s linear infinite;
}

.support-card,.plan-card,.info-card {
  transition: transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85,120,169,.28);
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
}
.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85,120,169,.28);
  box-shadow: 0 28px 76px rgba(0,0,0,.25);
}
.plan-card.recommended:hover { transform: translateY(-14px); }

.pricing-grid-domains {
  grid-template-columns: repeat(2,minmax(0,1fr));
  max-width: 880px;
  margin-inline: auto;
}
.pricing-grid-domains .plan-card { min-height: 390px; }
.pricing-grid-domains .plan-storage { font-size:15px; line-height:1.55; }

@keyframes backgroundBreath {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.045) rotate(1.2deg); }
}
@keyframes ambientDriftBlue {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(7rem,-2.5rem,0) scale(1.1); }
}
@keyframes ambientDriftOrange {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-6rem,3.5rem,0) scale(1.08); }
}
@keyframes ambientVeilBlue {
  from { transform: translate3d(0,0,0) rotate(-13deg) scale(1); }
  to { transform: translate3d(7vw,-3vh,0) rotate(-8deg) scale(1.06); }
}
@keyframes ambientVeilOrange {
  from { transform: translate3d(0,0,0) rotate(16deg) scale(1); }
  to { transform: translate3d(-5vw,-4vh,0) rotate(10deg) scale(1.08); }
}
@keyframes glassFloatOne {
  from { transform: translate3d(0,0,0) rotate(-4deg); }
  to { transform: translate3d(28px,-24px,0) rotate(8deg); }
}
@keyframes glassFloatTwo {
  from { transform: translate3d(0,0,0) rotate(7deg); }
  to { transform: translate3d(-31px,-20px,0) rotate(-4deg); }
}
@keyframes glassFloatThree {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-22px,30px,0) scale(1.08); }
}
@keyframes ambientOrbit { to { transform: rotate(360deg); } }
@keyframes ambientOrbitReverse { to { transform: rotate(-360deg); } }

@media(max-width:1000px) {
  .pricing-grid-domains { grid-template-columns:1fr; max-width:640px; }
  .plan-card.recommended:hover { transform:translateY(-5px); }
  .particle-2 { left: 14%; bottom: 2%; }
  .ring-1 { right: -11rem; }
}

@media(max-width:680px) {
  body::before { opacity:.28; filter:blur(24px); }
  .ambient-glow-blue { opacity:.085; }
  .ambient-glow-orange { opacity:.075; }
  .ambient-scene::before { width: 34rem; height: 22rem; left:-22rem; top:28vh; }
  .ambient-scene::after { width: 29rem; height: 19rem; right:-19rem; bottom:18vh; }
  .particle-1 { width:82px; height:82px; left:-23px; top:26%; opacity:.42; }
  .particle-2 { width:118px; height:80px; left:10%; bottom:4%; opacity:.4; }
  .particle-3 { width:96px; height:96px; right:-34px; top:42%; opacity:.38; }
  .ring-1 { width:24rem; height:24rem; right:-18rem; top:22%; }
  .ring-2 { width:15rem; height:15rem; left:-10rem; bottom:3%; }
  .pricing-grid-domains .plan-card { min-height:auto; }
}

@media(prefers-reduced-motion:reduce) {
  body::before,
  .ambient-scene *,
  .ambient-scene::before,
  .ambient-scene::after {
    animation:none!important;
  }
  .support-card:hover,
  .plan-card:hover,
  .plan-card.recommended:hover {
    transform:none;
  }
}


/* Ajuste final: título sin recortes + movimiento lineal sutil */
h1 {
  overflow: visible;
  padding-right: .10em;
  padding-bottom: .08em;
  margin-right: -.10em;
  line-height: 1.035;
  letter-spacing: -.048em;
}
h1 span {
  display: inline;
  padding-right: .08em;
  margin-right: -.08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

body::after {
  content: "";
  position: fixed;
  inset: -22%;
  z-index: -2;
  pointer-events: none;
  opacity: .24;
  background:
    linear-gradient(112deg,
      transparent 0 34%,
      rgba(85,120,169,.11) 34.15%,
      rgba(85,120,169,.025) 34.45%,
      transparent 34.8% 62%,
      rgba(246,108,0,.065) 62.12%,
      rgba(246,108,0,.018) 62.4%,
      transparent 62.75%);
  background-size: 145% 145%;
  filter: blur(.2px);
  transform: rotate(-2deg);
  animation: backgroundLineFlow 19s ease-in-out infinite alternate;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -55%;
  width: 38%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  opacity: 0;
  animation: buttonLineSweep 8.5s ease-in-out infinite;
}

.support-card,
.plan-card,
.info-card {
  position: relative;
  overflow: hidden;
}
.support-card::after,
.plan-card::after,
.info-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: -42%;
  width: 34%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(132,166,216,.7), rgba(246,108,0,.5), transparent);
  box-shadow: 0 0 13px rgba(85,120,169,.28);
  opacity: .55;
  animation: cardEdgeGlide 10s ease-in-out infinite;
}
.plan-card:nth-child(2n)::after { animation-delay: -3.1s; }
.plan-card:nth-child(3n)::after { animation-delay: -6.2s; }
.info-card:nth-child(2)::after { animation-delay: -4.4s; }

.service-tab,
.catalog-tab {
  position: relative;
  overflow: hidden;
}
.service-tab::after,
.catalog-tab::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 0;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85,120,169,.55), transparent);
  transform: scaleX(.15);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.service-tab:hover::after,
.service-tab[aria-selected="true"]::after,
.catalog-tab:hover::after,
.catalog-tab[aria-selected="true"]::after {
  transform: scaleX(1);
  opacity: .75;
}

@keyframes backgroundLineFlow {
  from { transform: translate3d(-3.5%, -1%, 0) rotate(-2deg); }
  to { transform: translate3d(4.5%, 2%, 0) rotate(1deg); }
}
@keyframes buttonLineSweep {
  0%, 56% { left: -55%; opacity: 0; }
  61% { opacity: .7; }
  77% { left: 122%; opacity: 0; }
  100% { left: 122%; opacity: 0; }
}
@keyframes cardEdgeGlide {
  0%, 12% { left: -42%; opacity: 0; }
  22% { opacity: .58; }
  67% { left: 108%; opacity: .48; }
  78%, 100% { left: 108%; opacity: 0; }
}

@media(max-width:680px) {
  h1 {
    padding-right: .12em;
    margin-right: -.12em;
    line-height: 1.045;
    letter-spacing: -.043em;
  }
  body::after { opacity: .16; }
}

@media(prefers-reduced-motion:reduce) {
  body::after,
  .button::before,
  .support-card::after,
  .plan-card::after,
  .info-card::after {
    animation: none !important;
  }
}
