:root {
  --bg: #070b12;
  --bg-soft: #0d1320;
  --panel: rgba(255,255,255,0.045);
  --panel-strong: rgba(255,255,255,0.07);

  --text: #f4f7fb;
  --muted: #9aa7b8;

  --line: rgba(255,255,255,0.09);

  --accent: #6aa8ff;
  --accent-2: #8b7cff;
  --accent-soft: rgba(106,168,255,0.14);

  --max: 1180px;
  --radius: 24px;
  --radius-sm: 16px;

  --shadow:
    0 25px 70px rgba(0,0,0,0.35);

  --transition: 0.35s ease;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

body::selection {
  background: var(--accent);
  color: #06101d;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

/* FONDO */

.background-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.2;
}

.glow-1 {
  top: -180px;
  left: -130px;
  background: #2563eb;
}

.glow-2 {
  right: -160px;
  top: 35%;
  background: #7c3aed;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1),
    rgba(0,0,0,.25),
    transparent
  );
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(7,11,18,0.78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );
  box-shadow:
    0 0 20px rgba(106,168,255,0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 0.88rem;
  color: #c6d0df;
  transition: color var(--transition);
}

.nav a:hover {
  color: #fff;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  background: white;
  margin: 6px auto;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #a6b7cb;
}

.hero-label > span {
  width: 28px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent),
    transparent
  );
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 1050px;
  margin-top: 28px;
}

.hero h1 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      100deg,
      #ffffff,
      #a3c9ff 45%,
      #9b8cff
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  margin-top: 34px;
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background:
    linear-gradient(
      135deg,
      #f7fbff,
      #bdd8ff
    );
  color: #07101d;
  box-shadow:
    0 10px 38px rgba(93,151,255,0.18);
}

.button-primary:hover {
  box-shadow:
    0 16px 45px rgba(93,151,255,0.3);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8e9bae;
  font-size: 0.82rem;
  margin-top: 30px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 14px rgba(110,231,183,0.75);
}

.hero-orbit {
  position: absolute;
  right: 5vw;
  top: 50%;
  width: 430px;
  height: 430px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 0 80px rgba(100,150,255,0.04);
  animation: orbitPulse 6s ease-in-out infinite;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.hero-ring::before {
  inset: 45px;
}

.hero-ring::after {
  inset: 100px;
}

.hero-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff, #7db2ff 35%, #735cff 100%);
  box-shadow:
    0 0 55px rgba(100,150,255,0.8),
    0 0 140px rgba(110,90,255,0.25);
  animation: dotFloat 4s ease-in-out infinite;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #748094;
}

.scroll-indicator i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* TITULOS */

.section-number {
  color: #566175;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-top: 18px;
  max-width: 850px;
}

.section-lead {
  margin-top: 30px;
  max-width: 760px;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.6;
  color: #b7c1cf;
}

.section-copy {
  max-width: 470px;
  line-height: 1.8;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 65px;
}

/* INTRO */

.intro-grid {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 50px;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.018)
    );
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(85px);
  opacity: 0;
  right: -100px;
  top: -80px;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(130,170,255,0.23);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.024)
    );
}

.service-card:hover::before {
  opacity: 0.16;
}

.service-number {
  display: block;
  color: #6b7689;
  font-size: 0.7rem;
}

.service-icon {
  margin-top: 55px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line);
  color: #b8d4ff;
  font-size: 1.15rem;
}

.service-card h3 {
  margin-top: 26px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

.service-card p {
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* AUDIENCE */

.audience-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.audience-list {
  display: flex;
  flex-direction: column;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  color: #d5dce7;
  transition:
    padding var(--transition),
    color var(--transition);
}

.audience-item:hover {
  padding-left: 8px;
  color: #fff;
}

.audience-item span {
  width: 30px;
  color: #667286;
  font-size: 0.7rem;
}

/* PORTFOLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.project-large {
  grid-column: span 2;
}

.project-card {
  transition: transform var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-preview {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      145deg,
      #101722,
      #070b12
    );
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a5668;
}

.project-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(90,140,255,0.16),
      transparent 48%
    ),
    linear-gradient(
      135deg,
      rgba(255,255,255,0.018),
      transparent
    );
}

.project-large .project-placeholder {
  min-height: 510px;
}

.project-placeholder span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.11);
}

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5px;
}

.project-info span:first-child {
  font-size: 0.72rem;
  color: #69778b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-info h3 {
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.project-arrow {
  font-size: 1.6rem;
  color: #8e9bad;
}

/* PROCESS */

.process-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-step {
  min-height: 290px;
  padding: 34px;
  background: var(--bg);
  transition: background var(--transition);
}

.process-step:hover {
  background: var(--bg-soft);
}

.step-number {
  font-size: 0.7rem;
  color: #657286;
}

.process-step h3 {
  font-family: "Manrope", sans-serif;
  margin-top: 70px;
  font-size: 1.35rem;
}

.process-step p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* BENEFITS */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.benefits-list {
  border-top: 1px solid var(--line);
}

.benefit {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  color: #91baff;
}

.benefit strong {
  font-family: "Manrope", sans-serif;
}

.benefit p {
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.6;
}

/* CONTACT */

.contact {
  padding: 150px 0;
  overflow: hidden;
}

.contact-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-title {
  margin: 25px auto 0;
  max-width: 1000px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-title span {
  display: block;
  color: #9cbbe6;
}

.contact-text {
  margin: 28px auto 0;
  max-width: 600px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-actions {
  margin-top: 36px;
}

.button-large {
  min-height: 62px;
  padding: 0 32px;
}

.contact-glow {
  position: absolute;
  left: 50%;
  bottom: -370px;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(90,140,255,0.22),
      rgba(115,80,255,0.08) 40%,
      transparent 65%
    );
  filter: blur(20px);
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--line);
  padding: 55px 0 30px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 28px;
  color: #9ca9bb;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #667286;
  font-size: 0.75rem;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CURSOR */

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: rgba(135,180,255,0.8);
  box-shadow:
    0 0 18px rgba(100,160,255,0.8);
  transform: translate(-50%,-50%);
  opacity: 0;
  transition:
    width .25s ease,
    height .25s ease,
    opacity .25s ease;
}

/* ANIMACIONES */

@keyframes dotFloat {
  0%,
  100% {
    transform: translateY(-6px) scale(1);
  }

  50% {
    transform: translateY(8px) scale(1.05);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  40% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  70% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* TABLET */

@media (max-width: 1000px) {

  .hero-orbit {
    opacity: 0.45;
    right: -150px;
  }

  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .audience-panel,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

}

/* MOBILE */

@media (max-width: 760px) {

  .container {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 85px 0;
  }

  .header-inner {
    height: 72px;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    border-radius: 18px;
    background: rgba(10,15,24,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .3s ease;
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 850px;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-orbit {
    width: 310px;
    height: 310px;
    top: auto;
    bottom: 100px;
    right: -160px;
    transform: none;
    opacity: 0.3;
  }

  .scroll-indicator {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .service-card {
    min-height: 300px;
  }

  .audience-panel {
    padding: 50px 0;
  }

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

  .project-large {
    grid-column: span 1;
  }

  .project-placeholder,
  .project-large .project-placeholder {
    min-height: 300px;
  }

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

  .process-step {
    min-height: 240px;
  }

  .process-step h3 {
    margin-top: 40px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }

  .cursor-dot {
    display: none;
  }

.portfolio-showcase {
  grid-template-columns: 1fr;
}

.portfolio-item-large {
  grid-column: span 1;
}

.portfolio-screen,
.portfolio-item-large .portfolio-screen {
  height: 330px;
}

.portfolio-item:hover .portfolio-screen img,
.portfolio-item-large:hover .portfolio-screen img {
  transform: none;
}

.portfolio-meta {
  flex-direction: column;
  gap: 5px;
}

.portfolio-link {
  margin-top: 8px;
}

.portfolio-cta {
  grid-template-columns: auto 1fr;
}

.portfolio-cta a {
  grid-column: 2;
}


}

/* ACCESIBILIDAD */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

/* =========================================================
   PORTFOLIO — PUNTO WEB STUDIO
   3 PROYECTOS EN UNA MISMA FILA
========================================================= */

.portfolio-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* El primer proyecto ya no ocupa dos columnas */
.portfolio-item-large {
  grid-column: span 1;
}

.portfolio-item {
  min-width: 0;
}

/* =========================================================
   VENTANA / NAVEGADOR
========================================================= */

.portfolio-browser {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #0a1019;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.38);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.portfolio-item:hover .portfolio-browser {
  transform: translateY(-6px);

  border-color:
    rgba(125, 175, 255, 0.24);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.48),
    0 0 45px rgba(70, 120, 255, 0.07);
}

/* =========================================================
   BARRA SUPERIOR DEL NAVEGADOR
========================================================= */

.browser-top {
  height: 42px;

  display: grid;
  grid-template-columns: 65px 1fr 65px;
  align-items: center;

  padding: 0 12px;

  border-bottom:
    1px solid var(--line);

  background:
    rgba(255, 255, 255, 0.025);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #465164;
}

.browser-address {
  justify-self: center;

  width: min(180px, 100%);

  padding: 6px 10px;

  border-radius: 999px;

  border:
    1px solid rgba(255, 255, 255, 0.05);

  background:
    rgba(255, 255, 255, 0.025);

  color: #67758a;

  text-align: center;

  font-size: 0.55rem;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   PANTALLA DE CADA PROYECTO
========================================================= */

.portfolio-screen {
  position: relative;

  width: 100%;
  height: 360px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(70, 120, 255, 0.14),
      transparent 60%
    );
}

/* Si en algún momento usamos imágenes */
.portfolio-screen img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

/* =========================================================
   INFORMACIÓN DEBAJO DE CADA PROYECTO
========================================================= */

.portfolio-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 15px;

  min-height: 220px;

  padding: 22px 4px 8px;
}

.portfolio-category {
  display: block;

  font-size: 0.65rem;

  text-transform: uppercase;

  letter-spacing: 0.16em;

  color: #6e7d92;
}

.portfolio-meta h3 {
  margin-top: 9px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 1.15rem;

  line-height: 1.25;

  letter-spacing: -0.025em;
}

.portfolio-meta p {
  margin-top: 11px;

  color: var(--muted);

  font-size: 0.82rem;

  line-height: 1.65;
}

.portfolio-link {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-top: auto;

  color: #c7d8ee;

  font-size: 0.8rem;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.portfolio-link span {
  font-size: 1.05rem;
}

.portfolio-link:hover {
  color: white;

  transform:
    translateX(4px);
}

/* =========================================================
   DEMO 01 — WEB ESENCIAL / CLARA
========================================================= */

.demo-preview {
  width: 100%;
  height: 100%;

  overflow: hidden;
}

.demo-preview-basic {
  padding: 20px;

  background: #f6f7fb;

  color: #172033;
}

/* CABECERA */

.demo-basic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family:
    Arial,
    sans-serif;
}

.demo-basic-header strong {
  font-size: 12px;

  letter-spacing: 0.12em;
}

.demo-basic-header strong span {
  color: #5b6cff;
}

.demo-basic-header > div {
  display: flex;

  gap: 11px;

  color: #5f6878;

  font-size: 7px;
}

/* CONTENIDO */

.demo-basic-content {
  display: grid;

  grid-template-columns: 1fr;

  align-content: center;

  gap: 15px;

  height:
    calc(100% - 25px);

  padding-top: 13px;
}

/* ETIQUETA */

.demo-basic-badge {
  display: inline-block;

  padding: 5px 8px;

  border-radius: 999px;

  background: #e8ebff;

  color: #5262e8;

  font-size: 6px;

  font-weight: 700;

  letter-spacing: 0.08em;
}

/* TÍTULO */

.demo-basic-text h4 {
  margin:
    10px 0 8px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 26px;

  line-height: 1;

  letter-spacing:
    -0.05em;

  color: #172033;
}

/* TEXTO */

.demo-basic-text p {
  max-width: 250px;

  color: #6c7482;

  font-size: 8px;

  line-height: 1.55;
}

/* BOTÓN */

.demo-basic-button {
  display: inline-block;

  margin-top: 11px;

  padding:
    7px 10px;

  border-radius: 7px;

  background: #5b6cff;

  color: white;

  font-size: 7px;

  font-weight: 700;
}

/* BLOQUE VIOLETA */

.demo-basic-visual {
  position: relative;

  min-height: 108px;

  border-radius: 14px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #6575ff,
      #919cff
    );

  box-shadow:
    0 14px 30px
    rgba(60, 70, 150, 0.18);
}

/* TARJETAS FLOTANTES */

.demo-floating-card {
  position: absolute;

  padding: 9px;

  border-radius: 8px;

  background: white;

  box-shadow:
    0 8px 20px
    rgba(30, 40, 80, 0.15);

  color: #172033;

  font-size: 6px;
}

.demo-floating-card strong {
  font-size: 6px;
}

/* TARJETA SUPERIOR */

.demo-floating-card.card-one {
  width: 61%;

  top: 11px;
  left: 11px;
}

/* TARJETA INFERIOR */

.demo-floating-card.card-two {
  width: 52%;

  right: 11px;
  bottom: 11px;
}

/* LÍNEAS INTERNAS */

.demo-floating-card i {
  display: block;

  height: 3px;

  margin-top: 5px;

  border-radius: 999px;

  background: #edf0f6;
}

.demo-floating-card i.short {
  width: 60%;
}

/* =========================================================
   CTA DEBAJO DEL PORTFOLIO
========================================================= */

.portfolio-cta {
  margin-top: 60px;

  padding:
    25px 30px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 20px;

  border:
    1px solid var(--line);

  border-radius: 22px;

  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.04),
      rgba(100, 145, 255, 0.035)
    );
}

.portfolio-cta-dot {
  width: 11px;
  height: 11px;

  border-radius: 50%;

  background:
    var(--accent);

  box-shadow:
    0 0 20px
    rgba(100, 160, 255, 0.75);
}

.portfolio-cta strong {
  font-family:
    "Manrope",
    sans-serif;

  font-size: 1rem;
}

.portfolio-cta p {
  margin-top: 4px;

  color:
    var(--muted);

  font-size:
    0.82rem;
}

.portfolio-cta a {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #bed5f4;

  font-size: 0.82rem;

  transition:
    transform 0.3s ease;
}

.portfolio-cta a:hover {
  transform:
    translateX(4px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

  .portfolio-screen {
    height: 350px;
  }

}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 760px) {

  .portfolio-showcase {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .portfolio-item-large {
    grid-column: span 1;
  }

  .portfolio-screen {
    height: 350px;
  }

  .portfolio-meta {
    min-height: auto;
  }

  .demo-preview-basic {
    padding: 22px;
  }

  .demo-basic-header > div {
    display: flex;
  }

  .demo-basic-text h4 {
    font-size: 29px;
  }

  .portfolio-cta {
    grid-template-columns:
      auto 1fr;
  }

  .portfolio-cta a {
    grid-column: 2;
  }

}


/* =========================================================
   DEMO 02 — WEB PROFESIONAL / NORTE LEGAL
========================================================= */

.demo-preview-professional {
  padding: 20px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(190, 150, 70, 0.15),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #111827,
      #07101b
    );
  color: #f5f1e8;
}

.demo-pro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-pro-header strong {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  color: #e7d7ac;
}

.demo-pro-header > div {
  display: flex;
  gap: 10px;
  font-size: 6px;
  color: #8893a3;
}

.demo-pro-content {
  height: calc(100% - 25px);

  display: grid;
  grid-template-columns: 1fr;
  align-content: center;

  gap: 15px;

  padding-top: 12px;
}

.demo-pro-badge {
  display: inline-block;

  padding: 5px 8px;

  border-radius: 999px;

  border:
    1px solid rgba(218, 185, 112, 0.25);

  color: #d8b96f;

  font-size: 6px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.demo-pro-copy h4 {
  margin: 10px 0 8px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 23px;

  line-height: 1.02;

  letter-spacing:
    -0.04em;

  color: #f6f2e9;
}

.demo-pro-copy p {
  max-width: 270px;

  color: #8f9baa;

  font-size: 8px;

  line-height: 1.55;
}

.demo-pro-button {
  display: inline-block;

  margin-top: 10px;

  padding:
    7px 10px;

  border-radius: 7px;

  background: #d0ae63;

  color: #111827;

  font-size: 7px;

  font-weight: 700;
}

.demo-pro-dashboard {
  position: relative;

  min-height: 115px;

  padding: 12px;

  border-radius: 14px;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.07);

  background:
    rgba(255, 255, 255, 0.035);

  box-shadow:
    0 15px 35px
    rgba(0, 0, 0, 0.28);
}

.demo-pro-topline {
  display: flex;

  gap: 4px;
}

.demo-pro-topline span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    rgba(220, 190, 120, 0.5);
}

.demo-pro-panel-main {
  position: absolute;

  left: 12px;
  top: 30px;

  width: 57%;

  padding: 10px;

  border-radius: 9px;

  background:
    #151f2e;
}

.demo-pro-panel-main small {
  display: block;

  font-size: 5px;

  letter-spacing: 0.08em;

  color: #b79b61;
}

.demo-pro-panel-main strong {
  display: block;

  margin-top: 5px;

  font-size: 7px;

  color: #e8edf4;
}

.demo-pro-lines i {
  display: block;

  height: 3px;

  margin-top: 5px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.08);
}

.demo-pro-lines i.short {
  width: 60%;
}

.demo-pro-mini {
  position: absolute;

  right: 12px;
  top: 31px;

  width: 32%;

  padding: 9px;

  border-radius: 9px;

  background:
    rgba(210, 175, 100, 0.09);

  border:
    1px solid
    rgba(210, 175, 100, 0.12);
}

.demo-pro-mini-two {
  top: auto;
  bottom: 12px;
}

.demo-pro-mini small {
  display: block;

  font-size: 5px;

  color: #a88c55;
}

.demo-pro-mini strong {
  display: block;

  margin-top: 4px;

  font-size: 6px;

  color: #dfe5ed;
}


/* =========================================================
   DEMO 03 — WEB PREMIUM / ATELIER NOVA
========================================================= */

.demo-preview-premium {
  padding: 20px;

  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(112, 76, 255, 0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(50, 200, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #090a12,
      #05060b
    );

  color: white;
}

.demo-premium-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-premium-header strong {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.demo-premium-header > div {
  display: flex;
  gap: 10px;
  font-size: 6px;
  color: #777f92;
}

.demo-premium-content {
  height: calc(100% - 25px);

  display: grid;
  grid-template-columns: 1fr;

  align-content: center;

  gap: 14px;

  padding-top: 12px;
}

.demo-premium-badge {
  display: inline-block;

  padding: 5px 8px;

  border-radius: 999px;

  border:
    1px solid rgba(125, 180, 255, 0.2);

  background:
    rgba(100, 120, 255, 0.06);

  color: #8ecfff;

  font-size: 6px;

  font-weight: 700;

  letter-spacing: 0.1em;
}

.demo-premium-copy h4 {
  margin: 10px 0 8px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 24px;

  line-height: 1;

  letter-spacing:
    -0.045em;

  background:
    linear-gradient(
      100deg,
      #ffffff,
      #b8d4ff,
      #a28cff
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.demo-premium-copy p {
  max-width: 270px;

  color: #7f899b;

  font-size: 8px;

  line-height: 1.55;
}

.demo-premium-button {
  display: inline-block;

  margin-top: 10px;

  padding:
    7px 10px;

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #d7edff,
      #a9b7ff
    );

  color: #080b13;

  font-size: 7px;

  font-weight: 700;
}

.demo-premium-visual {
  position: relative;

  min-height: 118px;

  overflow: hidden;

  border-radius: 14px;

  border:
    1px solid rgba(255, 255, 255, 0.07);

  background:
    radial-gradient(
      circle at center,
      rgba(93, 108, 255, 0.1),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.018);
}

.premium-orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  border:
    1px solid rgba(151, 165, 255, 0.15);
}

.orbit-one {
  width: 95px;
  height: 95px;
}

.orbit-two {
  width: 62px;
  height: 62px;

  border-color:
    rgba(85, 205, 255, 0.16);
}

.premium-core {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 18px;
  height: 18px;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 30% 30%,
      white,
      #7fb8ff 45%,
      #715cff
    );

  box-shadow:
    0 0 18px
    rgba(90, 150, 255, 0.8),
    0 0 45px
    rgba(110, 80, 255, 0.35);
}

.premium-panel {
  position: absolute;

  padding: 8px 9px;

  border-radius: 8px;

  background:
    rgba(12, 15, 26, 0.85);

  border:
    1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter:
    blur(10px);
}

.premium-panel-one {
  left: 10px;
  bottom: 10px;
}

.premium-panel-two {
  right: 10px;
  top: 10px;
}

.premium-panel small {
  display: block;

  font-size: 5px;

  letter-spacing: 0.08em;

  color: #7180a0;
}

.premium-panel strong {
  display: block;

  margin-top: 4px;

  font-size: 6px;

  color: #dce6ff;
}


/* =========================================================
   NIVELES DE DESARROLLO
========================================================= */

.web-levels {
  position: relative;
}

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

.level-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 560px;

  padding: 30px;

  border-radius: 24px;

  border:
    1px solid var(--line);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.018)
    );

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.level-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(120,170,255,0.22);

  box-shadow:
    0 28px 70px
    rgba(0,0,0,0.32);
}

.level-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -90px;
  top: -90px;

  border-radius: 50%;

  background: var(--accent);

  filter: blur(90px);

  opacity: 0.08;
}

.level-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.level-number {
  color: #59667a;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.68rem;

  letter-spacing: 0.15em;
}

.level-label {
  padding: 7px 11px;

  border-radius: 999px;

  border:
    1px solid rgba(255,255,255,0.07);

  color: #aab7c9;

  font-size: 0.64rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}

.level-card h3 {
  margin-top: 42px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 1.65rem;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

.level-description {
  margin-top: 18px;

  min-height: 82px;

  color: var(--muted);

  font-size: 0.87rem;

  line-height: 1.7;
}

.level-features {
  margin-top: 28px;

  padding: 0;

  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 13px;
}

.level-features li {
  color: #bdc8d6;

  font-size: 0.82rem;

  line-height: 1.5;
}

.level-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  align-self: flex-start;

  margin-top: auto;

  padding-top: 32px;

  color: #bdd6f8;

  font-size: 0.82rem;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.level-link:hover {
  transform: translateX(5px);
  color: white;
}

.level-link span {
  font-size: 1rem;
}


/* =========================================================
   OPCIÓN DESTACADA
========================================================= */

.level-featured {
  border-color:
    rgba(106,168,255,0.23);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(70,130,255,0.13),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.065),
      rgba(255,255,255,0.022)
    );

  box-shadow:
    0 25px 70px
    rgba(30,70,140,0.12);
}

.level-featured::before {
  opacity: 0.14;
}

.level-badge {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  padding:
    7px 16px;

  border-radius:
    0 0 12px 12px;

  background:
    linear-gradient(
      135deg,
      #bcd9ff,
      #8baeff
    );

  color: #07101d;

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


/* =========================================================
   OPCIÓN PREMIUM
========================================================= */

.level-premium {
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(124,80,255,0.15),
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 95%,
      rgba(55,185,255,0.08),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.012)
    );
}

.level-premium .level-label {
  color: #b8aaff;

  border-color:
    rgba(150,120,255,0.2);

  background:
    rgba(120,90,255,0.05);
}


/* =========================================================
   NOTA INFERIOR
========================================================= */

.levels-note {
  margin-top: 38px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding:
    22px 25px;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}

.levels-note > span {
  flex: 0 0 auto;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 18px
    rgba(100,160,255,0.65);
}

.levels-note p {
  color: #9eabba;

  font-size: 0.82rem;

  line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

  .level-premium {
    grid-column: span 2;
  }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 760px) {

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

  .level-premium {
    grid-column: span 1;
  }

  .level-card {
    min-height: auto;
    padding: 26px;
  }

  .level-description {
    min-height: auto;
  }

  .level-link {
    margin-top: 30px;
  }

}


/* =========================================================
   QUÉ NECESITÁS PARA TENER TU WEB
========================================================= */

.web-needs {
  position: relative;
}

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

.need-card {
  position: relative;
  min-height: 315px;
  padding: 27px;

  border-radius: 22px;
  border: 1px solid var(--line);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.need-card::after {
  content: "";

  position: absolute;
  width: 130px;
  height: 130px;

  right: -70px;
  bottom: -70px;

  border-radius: 50%;

  background: var(--accent);

  filter: blur(70px);

  opacity: 0;

  transition: opacity 0.35s ease;
}

.need-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(110,165,255,0.22);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.065),
      rgba(255,255,255,0.02)
    );
}

.need-card:hover::after {
  opacity: 0.12;
}

.need-number {
  display: block;

  color: #5e6a7e;

  font-size: 0.66rem;

  letter-spacing: 0.15em;
}

.need-icon {
  width: 48px;
  height: 48px;

  margin-top: 45px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  border:
    1px solid rgba(255,255,255,0.07);

  background:
    rgba(255,255,255,0.035);

  color: #a9caff;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.75rem;

  box-shadow:
    0 12px 30px
    rgba(0,0,0,0.15);
}

.need-card h3 {
  margin-top: 24px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 1.25rem;

  letter-spacing: -0.025em;
}

.need-card p {
  margin-top: 13px;

  color: var(--muted);

  font-size: 0.84rem;

  line-height: 1.7;
}


/* =========================================================
   MENSAJE INFERIOR
========================================================= */

.needs-message {
  margin-top: 38px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 22px;

  padding: 25px 28px;

  border-radius: 22px;

  border:
    1px solid var(--line);

  background:
    radial-gradient(
      circle at 0 50%,
      rgba(90,140,255,0.08),
      transparent 30%
    ),
    rgba(255,255,255,0.02);
}

.needs-message-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 50%;

  border:
    1px solid rgba(120,170,255,0.18);

  background:
    rgba(100,150,255,0.07);

  color: #a8ccff;

  font-family:
    "Manrope",
    sans-serif;

  font-weight: 700;
}

.needs-message strong {
  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.95rem;
}

.needs-message p {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.8rem;

  line-height: 1.6;
}

.needs-message a {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  white-space: nowrap;

  color: #bdd7f8;

  font-size: 0.8rem;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.needs-message a:hover {
  transform: translateX(4px);
  color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 760px) {

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

  .need-card {
    min-height: auto;
  }

  .needs-message {
    grid-template-columns:
      auto 1fr;
  }

  .needs-message a {
    grid-column: 2;
    margin-top: 5px;
  }

}


/* =========================================================
   FOOTER — PUNTO WEB STUDIO
========================================================= */

.footer {
  position: relative;
  padding: 75px 0 28px;

  border-top:
    1px solid var(--line);

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(80,135,255,0.07),
      transparent 32%
    ),
    rgba(5,8,13,0.55);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr 0.8fr 0.9fr 1.2fr;

  gap: 55px;
}

.footer-brand {
  max-width: 310px;
}

.footer-brand p {
  margin-top: 24px;

  color: var(--muted);

  font-size: 0.83rem;

  line-height: 1.7;
}

.footer-tagline {
  display: block;

  margin-top: 18px;

  color: #9dbbdf;

  font-size: 0.72rem;

  letter-spacing: 0.04em;
}


/* COLUMNAS */

.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}

.footer-title {
  margin-bottom: 8px;

  color: #68778c;

  font-size: 0.62rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.14em;
}

.footer-column > a {
  color: #aeb9c7;

  font-size: 0.8rem;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column > a:hover {
  color: white;
  transform: translateX(3px);
}


/* CONTACTO FOOTER */

.footer-contact p {
  max-width: 270px;

  color: var(--muted);

  font-size: 0.8rem;

  line-height: 1.65;
}

.footer-column .footer-contact-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 5px;

  color: #b9d7ff;

  font-size: 0.8rem;

  font-weight: 600;
}


/* PARTE INFERIOR */

.footer-bottom {
  margin-top: 65px;

  padding-top: 22px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  border-top:
    1px solid var(--line);

  color: #667386;

  font-size: 0.7rem;
}

.footer-bottom a {
  color: #8290a4;

  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: white;
}


/* TABLET */

@media (max-width: 1000px) {

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

    gap: 45px;
  }

}


/* CELULAR */

@media (max-width: 760px) {

  .footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-bottom {
    margin-top: 45px;

    flex-direction: column;

    align-items: flex-start;
  }

}


/* =========================================================
   CONTACTO — OPCIONES
========================================================= */

.contact-options {
  width: min(820px, 100%);
  margin: 48px auto 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.contact-option {
  position: relative;

  min-height: 105px;

  display: grid;
  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 18px;

  padding: 22px;

  border-radius: 18px;

  border: 1px solid var(--line);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.018)
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);

  border-color:
    rgba(110,170,255,0.25);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.07),
      rgba(80,130,255,0.035)
    );
}

.contact-option-number {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(130,175,255,0.16);

  color: #8fb9ed;

  font-size: 0.65rem;
}

.contact-option strong {
  display: block;

  color: white;

  font-family: "Manrope", sans-serif;

  font-size: 0.9rem;
}

.contact-option small {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 0.7rem;

  line-height: 1.4;
}

.contact-option-arrow {
  color: #8eb9ec;

  font-size: 1rem;

  transition: transform 0.3s ease;
}

.contact-option:hover .contact-option-arrow {
  transform: translate(3px, -3px);
}

.contact-option-help {
  border-color:
    rgba(110,160,255,0.16);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(90,140,255,0.09),
      transparent 40%
    ),
    rgba(255,255,255,0.025);
}


/* TEXTO INFERIOR */

.contact-direct {
  width: min(820px, 100%);

  margin: 26px auto 0;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;

  color: #748297;

  font-size: 0.72rem;

  line-height: 1.5;

  text-align: left;
}

.contact-direct p {
  max-width: 600px;
}


/* CELULAR */

@media (max-width: 760px) {

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option {
    min-height: 95px;
  }

  .contact-direct {
    align-items: flex-start;
  }

}


/* =========================================================
   FAQ
========================================================= */

.faq-list {
  max-width: 900px;
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 25px;

  padding: 25px 0;

  cursor: pointer;

  list-style: none;

  color: #dce4ee;

  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 0 0 auto;

  color: #8fb9ed;

  font-size: 1.25rem;

  transition: transform 0.3s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;

  padding: 0 0 25px;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.7;
}

.faq-item[open] summary {
  color: white;
}

@media (max-width: 760px) {

  .faq-item summary {
    padding: 21px 0;
    font-size: 0.88rem;
  }

}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
  padding: 60px 0 110px;
}

.final-cta-box {
  position: relative;
  overflow: hidden;

  padding: 75px 70px;

  border: 1px solid var(--line);
  border-radius: 28px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(90, 145, 255, 0.13),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );
}

.final-cta-box::after {
  content: "";

  position: absolute;
  width: 260px;
  height: 260px;

  right: -100px;
  bottom: -130px;

  border: 1px solid rgba(130,175,255,.10);
  border-radius: 50%;
}

.final-cta-box h2 {
  max-width: 650px;
  margin-top: 20px;

  color: white;

  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
}

.final-cta-box h2 span {
  color: #8fb9ed;
}

.final-cta-box p {
  max-width: 540px;

  margin-top: 26px;

  color: var(--muted);

  font-size: .9rem;
  line-height: 1.7;
}

.final-cta-actions {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 25px;

  margin-top: 35px;
}

.final-cta-secondary {
  color: #aeb9c7;

  font-size: .78rem;
  font-weight: 600;

  border-bottom: 1px solid rgba(255,255,255,.18);

  padding-bottom: 4px;

  transition: color .25s ease,
              border-color .25s ease;
}

.final-cta-secondary:hover {
  color: white;
  border-color: white;
}

@media (max-width: 760px) {

  .final-cta {
    padding: 40px 0 80px;
  }

  .final-cta-box {
    padding: 50px 28px;
  }

  .final-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* Punto amarillo de identidad PUNTO WEB STUDIO */
.brand-dot {
  background: #ffd43b;
  box-shadow: 0 0 16px rgba(255, 212, 59, 0.45);
}


.hero-yellow-dot {
  display: inline-block !important;

  width: 0.28em;
  height: 0.28em;

  margin-left: 0.06em;
  margin-bottom: 0.03em;

  border-radius: 50%;

  background: #ffd43b;

  box-shadow:
    0 0 12px rgba(255, 212, 59, 0.45);
}


/* ======================================================
   CONTACTO — EMAIL
====================================================== */

.contact-email {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.contact-email span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-email a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-email a:hover {
  color: #ffd43b;
}