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

:root {
  --bg: #07070a;
  --surface: #0d0d12;
  --surface-2: #13131a;
  --text: #f6f4ff;
  --muted: #9996a6;
  --line: rgba(255,255,255,.11);
  --accent: #00e887;
  --accent-2: #78ffb4;
  --white: #fff;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 80% 8%, rgba(0,232,135,.11), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.55'/%3E%3C/svg%3E");
}

.header {
  width: min(calc(100% - 48px), var(--max));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 50;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.logo span {
  color: var(--accent-2);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #c7c4d2;
  font-size: 13px;
  font-weight: 600;
  transition: .25s ease;
}

.nav a:hover {
  color: white;
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.nav-cta:hover {
  background: white;
  color: #08080a;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
}

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

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bbb8c8;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  margin-bottom: 28px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7df39b;
  box-shadow: 0 0 18px rgba(125,243,155,.65);
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -5px;
  max-width: 830px;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.45);
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  margin: 30px 0 34px;
  font-size: 16px;
  line-height: 1.8;
}

.hero-text strong {
  color: #ddd9eb;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.hero-meta {
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 55px;
}

.hero-meta div {
  display: grid;
  gap: 6px;
}

.hero-meta strong {
  font-size: 12px;
}

.hero-meta span {
  color: #716f7e;
  font-size: 11px;
}

.hero-visual {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  width: 330px;
  aspect-ratio: .78;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.015)),
    radial-gradient(circle at 20% 10%, rgba(120,255,180,.25), transparent 40%),
    #0c0c12;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  padding: 32px;
  position: relative;
  z-index: 2;
  transform: rotate(4deg);
}

.mini-label {
  color: #9b96aa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.visual-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 62px;
  line-height: .84;
  letter-spacing: -4px;
  position: absolute;
  left: 28px;
  bottom: 92px;
}

.visual-line {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 61px;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.visual-card > span:last-child {
  position: absolute;
  left: 30px;
  bottom: 31px;
  font-size: 10px;
  color: #9a96a6;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 13px 17px;
  border-radius: 14px;
  background: rgba(16,16,22,.83);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  font-size: 11px;
  font-weight: 700;
}

.floating-1 {
  top: 90px;
  right: -5px;
}

.floating-2 {
  bottom: 95px;
  left: -5px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.orb-1 {
  width: 210px;
  height: 210px;
  background: rgba(0,232,135,.16);
  right: -20px;
  top: 40px;
}

.orb-2 {
  width: 140px;
  height: 140px;
  background: rgba(120,255,180,.10);
  left: 30px;
  bottom: 40px;
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}

.marquee {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
}

.marquee span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #b2aebe;
}

.marquee i {
  color: var(--accent-2);
  font-style: normal;
  font-size: 11px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.projects-section {
  padding: 120px 0;
}

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

.kicker {
  display: inline-block;
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -3px;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
}

.subsection-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 60px 0 26px;
}

.subsection-heading span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
}

.subsection-heading h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 24px;
}

.project-card.featured {
  grid-column: span 2;
}

.project-preview {
  display: block;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform .35s ease, border-color .35s ease;
}

.featured .project-preview {
  height: 530px;
}

.project-preview:hover {
  transform: translateY(-5px);
  border-color: rgba(120,255,180,.35);
}

.browser-bar {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.22);
}

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

.browser-bar small {
  margin-left: 8px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
}

.mockup-content {
  position: absolute;
  inset: 45px 0 0;
  padding: 40px;
}

.mockup-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: .65;
}

.mockup-big {
  position: absolute;
  bottom: 35px;
  left: 35px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(55px, 8vw, 118px);
  line-height: .78;
  letter-spacing: -6px;
}

.preview-ia {
  background:
    radial-gradient(circle at 78% 20%, rgba(65,115,255,.38), transparent 28%),
    linear-gradient(145deg, #0e1423, #05070d 70%);
}

.preview-remix {
  background:
    radial-gradient(circle at 20% 15%, rgba(249,79,112,.35), transparent 32%),
    linear-gradient(145deg, #1b0e18, #080609 70%);
}

.preview-dj {
  background:
    radial-gradient(circle at 75% 17%, rgba(84,255,185,.30), transparent 31%),
    linear-gradient(145deg, #071512, #050807 70%);
}

.preview-mp4 {
  background:
    radial-gradient(circle at 18% 17%, rgba(242,157,55,.32), transparent 30%),
    linear-gradient(145deg, #1a1106, #080706 70%);
}

.project-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  position: absolute;
  top: 62px;
  right: 18px;
  font-size: 19px;
  transition: .3s ease;
}

.project-preview:hover .project-arrow {
  background: white;
  color: black;
  transform: rotate(45deg);
}

.project-info {
  padding-top: 20px;
}

.project-info > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.project-index {
  color: #625f6e;
  font-size: 9px;
  font-weight: 800;
}

.project-info h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.project-info p {
  margin: 13px 0 17px;
  max-width: 650px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tags span {
  border: 1px solid var(--line);
  color: #aaa6b5;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 700;
}

.video-heading {
  margin-top: 115px;
}

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

.video-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
}

.video-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.video-one {
  background:
    radial-gradient(circle at 72% 20%, rgba(0,232,135,.55), transparent 27%),
    linear-gradient(135deg, #211038, #09070e);
}

.video-two {
  background:
    radial-gradient(circle at 22% 25%, rgba(248,78,117,.40), transparent 30%),
    linear-gradient(135deg, #2c0a15, #0c0709);
}

.video-three {
  background:
    radial-gradient(circle at 74% 28%, rgba(42,194,171,.42), transparent 28%),
    linear-gradient(135deg, #0b2926, #060a0a);
}

.play-button {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  left: 22px;
  top: 22px;
  background: rgba(255,255,255,.92);
  color: #0b0b0d;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.duration {
  position: absolute;
  top: 25px;
  right: 20px;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 8px;
  font-weight: 700;
}

.video-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
}

.video-overlay span {
  font-size: 8px;
  letter-spacing: 1.6px;
  font-weight: 800;
  opacity: .7;
}

.video-overlay strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.video-info p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.video-note {
  margin-top: 20px;
  border: 1px dashed rgba(120,255,180,.35);
  background: rgba(0,232,135,.06);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #aaa6b6;
  font-size: 11px;
  line-height: 1.6;
}

.video-note span {
  color: var(--accent-2);
}

.services {
  padding: 80px 0 130px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 70px 1.4fr 1fr 40px;
  gap: 25px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}

.service-row:hover {
  padding-left: 15px;
  background: rgba(255,255,255,.018);
}

.service-row > span {
  color: #666372;
  font-size: 10px;
  font-weight: 800;
}

.service-row h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.service-row p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.service-row b {
  font-size: 18px;
  font-weight: 400;
}

.contact {
  padding-bottom: 80px;
}

.contact-card {
  min-height: 470px;
  border-radius: 30px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(135deg, #075f42, #0ca96d 60%, #22e69a);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  position: absolute;
  right: -60px;
  bottom: -120px;
}

.contact-card .kicker {
  color: rgba(255,255,255,.72);
}

.contact-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(45px, 7vw, 76px);
  line-height: .95;
  letter-spacing: -4px;
}

.contact-card h2 em {
  font-style: normal;
  color: rgba(255,255,255,.55);
}

.contact-card p {
  max-width: 570px;
  margin: 25px 0 30px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.contact-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.btn-light {
  background: #fff;
  color: #0b0b0e;
}

.text-link {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 120px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #74717f;
  font-size: 10px;
}

footer .logo {
  color: white;
  font-size: 22px;
}

footer > a:last-child {
  color: #aaa6b4;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-1 {
  transition-delay: .12s;
}

@media (max-width: 900px) {
  .header {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 22px;
    background: rgba(9,9,13,.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
  }

  .menu-btn {
    display: grid;
    gap: 6px;
    padding: 10px;
  }

  .menu-btn span {
    width: 23px;
    height: 1px;
    background: white;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

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

  .project-card.featured {
    grid-column: auto;
  }

  .project-preview,
  .featured .project-preview {
    height: 420px;
  }

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

  .service-row {
    grid-template-columns: 45px 1fr 30px;
  }

  .service-row p {
    grid-column: 2 / 3;
  }

  .contact-card {
    padding: 45px 30px;
  }
}

@media (max-width: 560px) {
  .header {
    height: 72px;
  }

  .hero {
    padding: 55px 0 70px;
    gap: 25px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: .97;
    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-meta {
    gap: 20px;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-card {
    width: 270px;
  }

  .visual-title {
    font-size: 50px;
  }

  .floating-1 {
    right: 0;
  }

  .floating-2 {
    left: 0;
  }

  .projects-section {
    padding: 85px 0;
  }

  .section-heading h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .project-preview,
  .featured .project-preview {
    height: 330px;
  }

  .mockup-content {
    padding: 26px;
  }

  .mockup-big {
    left: 25px;
    bottom: 27px;
    font-size: 60px;
    letter-spacing: -4px;
  }

  .video-heading {
    margin-top: 80px;
  }

  .service-row {
    grid-template-columns: 35px 1fr 25px;
    gap: 12px;
  }

  .service-row h3 {
    font-size: 18px;
  }

  .contact-card {
    min-height: 440px;
    border-radius: 22px;
  }

  .contact-card h2 {
    font-size: 48px;
    letter-spacing: -3px;
  }

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

  footer {
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Actual portfolio video players */
.video-thumb {
  background: #050507;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050507;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5,5,8,.72), transparent 52%);
}

.video-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 5px;
  pointer-events: none;
}

.video-label span {
  font-size: 8px;
  letter-spacing: 1.6px;
  font-weight: 800;
  color: rgba(255,255,255,.72);
}

.video-label strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: white;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

.video-card:hover .portfolio-video {
  transform: scale(1.018);
}

.portfolio-video {
  transition: transform .45s ease;
}

.video-note code {
  color: #ddd8e9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}


/* Capturas reales de proyectos */
.project-preview {
  background: #08080b !important;
}

.project-real-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.project-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,8,.72) 0%, rgba(5,5,8,.06) 38%, transparent 68%),
    linear-gradient(to right, rgba(0,0,0,.12), transparent 35%);
  pointer-events: none;
  transition: opacity .35s ease;
}

.visit-site {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  min-height: 46px;
  padding: 0 12px 0 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(9,9,13,.78);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.visit-site span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.visit-site b {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #09090c;
  font-size: 15px;
  font-weight: 500;
  transition: transform .3s ease;
}

.project-preview:hover .project-real-image {
  transform: scale(1.025);
  filter: brightness(.88);
}

.project-preview:hover .visit-site b {
  transform: rotate(45deg);
}

.project-preview:hover .project-image-shade {
  opacity: .78;
}

/* Mostrar más contenido vertical de las capturas */
.project-card:not(.featured) .project-preview {
  height: 390px;
}

.featured .project-preview {
  height: 520px;
}

@media (max-width: 900px) {
  .project-card:not(.featured) .project-preview,
  .featured .project-preview {
    height: 390px;
  }
}

@media (max-width: 560px) {
  .project-card:not(.featured) .project-preview,
  .featured .project-preview {
    height: 270px;
  }

  .visit-site {
    right: 12px;
    bottom: 12px;
  }
}


.preview-dental {
  background:
    radial-gradient(circle at 22% 18%, rgba(226, 181, 37, .20), transparent 30%),
    linear-gradient(145deg, #18150b, #080806 72%) !important;
}


/* Branding THEGO_ */
.logo-image-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
  object-fit: contain;
}

footer .brand-logo {
  width: 118px;
}

@media (max-width: 560px) {
  .brand-logo {
    width: 116px;
  }

  footer .brand-logo {
    width: 105px;
  }
}


/* =========================================================
   WhatsApp floating half-bubble
   IMPORTANT: Replace 34000000000 in index.html with your
   WhatsApp number including country code, without + or spaces.
   ========================================================= */
.whatsapp-float {
  position: fixed;
  left: -25px;
  bottom: 28px;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  transition: left .28s ease, transform .28s ease;
}

.whatsapp-float:hover {
  left: -6px;
  transform: translateY(-2px);
}

.whatsapp-half {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 14px 38px rgba(0,0,0,.38);
  transition: box-shadow .28s ease, transform .28s ease;
}

.whatsapp-half svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  margin-left: 14px;
}

.whatsapp-float:hover .whatsapp-half {
  box-shadow: 0 17px 45px rgba(37,211,102,.25), 0 14px 38px rgba(0,0,0,.42);
  transform: scale(1.04);
}

.whatsapp-tooltip {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,10,14,.93);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: opacity .25s ease, transform .25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Video cards are clickable */
.video-open {
  cursor: pointer;
}

.video-open::before {
  content: "⛶";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8,8,12,.76);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 15px;
  opacity: .76;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.video-open:hover::before {
  opacity: 1;
  transform: scale(1.08);
  background: rgba(255,255,255,.92);
  color: #0a0a0d;
}

/* Full video popup */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 94vw);
  max-height: 90vh;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #030305;
  box-shadow: 0 30px 100px rgba(0,0,0,.65);
  transform: translateY(18px) scale(.98);
  transition: transform .28s ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-video {
  width: 100%;
  max-height: 86vh;
  display: block;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .2s ease, background .2s ease;
}

.video-modal-close:hover {
  transform: rotate(8deg) scale(1.05);
  background: rgba(255,255,255,.16);
}

body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .whatsapp-float {
    bottom: 18px;
    left: -24px;
  }

  .whatsapp-half {
    width: 62px;
    height: 62px;
  }

  .whatsapp-half svg {
    width: 30px;
    height: 30px;
    margin-left: 13px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-dialog {
    width: 100%;
    border-radius: 15px;
  }

  .video-modal-close {
    width: 38px;
    height: 38px;
  }
}


/* =========================================================
   CONTACT PROJECT MODAL
   ========================================================= */
button.btn {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1050px, 95vw);
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(0,232,135,.13), transparent 30%),
    #0a0a0e;
  box-shadow: 0 35px 110px rgba(0,0,0,.68);
  transform: translateY(18px) scale(.985);
  transition: transform .28s ease;
}

.contact-modal.is-open .contact-modal-dialog {
  transform: translateY(0) scale(1);
}

.contact-modal-copy {
  padding: 55px 45px;
  border-right: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-modal-kicker {
  color: var(--accent-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.contact-modal-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.contact-modal-copy > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.contact-modal-badges {
  margin-top: 32px;
  display: grid;
  gap: 10px;
}

.contact-modal-badges span {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.025);
  color: #c8c4d2;
  font-size: 10px;
  font-weight: 700;
}

.contact-project-form {
  padding: 42px;
  display: grid;
  gap: 17px;
}

.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-project-form label {
  display: grid;
  gap: 8px;
}

.contact-project-form label > span {
  color: #b8b5c2;
  font-size: 10px;
  font-weight: 700;
}

.contact-project-form input,
.contact-project-form select,
.contact-project-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
  color: #fff;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 11px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-project-form textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.6;
}

.contact-project-form input::placeholder,
.contact-project-form textarea::placeholder {
  color: #666271;
}

.contact-project-form input:focus,
.contact-project-form select:focus,
.contact-project-form textarea:focus {
  border-color: rgba(120,255,180,.52);
  background: rgba(255,255,255,.055);
  box-shadow: 0 0 0 3px rgba(0,232,135,.08);
}

.contact-project-form select option {
  background: #111117;
  color: #fff;
}

.contact-submit {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px 0 19px;
  background: linear-gradient(135deg, #25d366, #19ad50);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 36px rgba(37,211,102,.13);
  transition: transform .22s ease, box-shadow .22s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37,211,102,.20);
}

.contact-submit b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  font-size: 16px;
  font-weight: 500;
}

.contact-form-note {
  color: #696674;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.contact-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(0,0,0,.58);
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.contact-modal-close:hover {
  transform: rotate(8deg);
  background: rgba(255,255,255,.10);
}

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .contact-modal {
    padding: 12px;
  }

  .contact-modal-dialog {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .contact-modal-copy {
    padding: 35px 25px 27px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .contact-modal-copy h2 {
    font-size: 39px;
  }

  .contact-modal-badges {
    display: flex;
    flex-wrap: wrap;
    margin-top: 22px;
  }

  .contact-project-form {
    padding: 27px 25px 30px;
  }
}

@media (max-width: 540px) {
  .contact-modal {
    padding: 6px;
  }

  .contact-modal-dialog {
    max-height: 96vh;
  }

  .contact-modal-copy {
    padding: 30px 18px 22px;
  }

  .contact-project-form {
    padding: 22px 18px 25px;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .contact-modal-badges span {
    font-size: 9px;
  }
}
\n\n/* Popup reliability / interaction polish */\n.video-open {\n  position: relative;\n}\n.video-open::after {\n  content: "Ver completo";\n  position: absolute;\n  left: 50%;\n  top: 50%;\n  z-index: 7;\n  transform: translate(-50%, -50%) scale(.96);\n  padding: 10px 14px;\n  border-radius: 999px;\n  background: rgba(0,0,0,.72);\n  border: 1px solid rgba(255,255,255,.18);\n  color: #fff;\n  font-size: 9px;\n  font-weight: 800;\n  letter-spacing: 1px;\n  text-transform: uppercase;\n  pointer-events: none;\n  opacity: 0;\n  transition: opacity .2s ease, transform .2s ease;\n}\n.video-open:hover::after {\n  opacity: 1;\n  transform: translate(-50%, -50%) scale(1);\n}\n.contact-open { cursor: pointer; }\n

/* =========================================================
   THEGO DYNAMIC EXPERIENCE V2
   ========================================================= */

/* --- Scroll progress --- */
.scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  z-index: 500;
  pointer-events: none;
  background: rgba(255,255,255,.03);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00e887, #78ffb4, #fff);
  box-shadow: 0 0 18px rgba(120,255,180,.55);
}

/* --- Cursor glow --- */
.cursor-glow {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .16;
  filter: blur(10px);
  background: radial-gradient(circle, rgba(0,232,135,.55), rgba(0,232,135,.12) 42%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

header,
main,
footer,
.whatsapp-float {
  position: relative;
  z-index: 2;
}

/* --- Header reacts to scroll --- */
.header {
  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    border-color .3s ease,
    transform .3s ease,
    width .3s ease;
}

.header.header-scrolled {
  position: sticky;
  top: 10px;
  width: min(calc(100% - 34px), var(--max));
  height: 68px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(8,8,12,.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(0,0,0,.28);
}

.header.header-scrolled .brand-logo {
  width: 120px;
}

/* --- Hero movement --- */
.visual-card {
  animation: heroCardFloat 6s ease-in-out infinite;
  will-change: transform;
}

.floating-1 {
  animation: chipFloatOne 4.2s ease-in-out infinite;
}

.floating-2 {
  animation: chipFloatTwo 5s ease-in-out infinite;
}

.orb-1 {
  animation: orbMoveOne 7s ease-in-out infinite alternate;
}

.orb-2 {
  animation: orbMoveTwo 8s ease-in-out infinite alternate;
}

@keyframes heroCardFloat {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-13px); }
}

@keyframes chipFloatOne {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-11px) rotate(1.5deg); }
}

@keyframes chipFloatTwo {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(10px) rotate(-1.5deg); }
}

@keyframes orbMoveOne {
  from { transform: translate3d(0,0,0) scale(.94); opacity: .65; }
  to { transform: translate3d(-34px,25px,0) scale(1.12); opacity: 1; }
}

@keyframes orbMoveTwo {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(28px,-20px,0) scale(.87); }
}

/* --- CTA light sweep --- */
.btn-primary,
.contact-submit,
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after,
.contact-submit::after,
.nav-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  bottom: -80%;
  left: -55%;
  width: 35%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: ctaShine 4.5s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 68% { left: -55%; opacity: 0; }
  72% { opacity: 1; }
  90%, 100% { left: 125%; opacity: 0; }
}

/* --- Section heading accent --- */
.section-heading h2,
.subsection-heading h3 {
  position: relative;
}

.subsection-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 10px;
  background: linear-gradient(90deg, rgba(120,255,180,.45), transparent);
  transform-origin: left;
  animation: linePulse 3.5s ease-in-out infinite;
}

@keyframes linePulse {
  0%,100% { opacity: .35; transform: scaleX(.72); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* --- Project cards: smooth dynamic hover --- */
.project-card,
.video-card,
.service-row {
  will-change: transform;
}

.project-card {
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.project-card .project-preview {
  box-shadow: 0 22px 55px rgba(0,0,0,.20);
}

.project-card:hover .project-preview {
  box-shadow:
    0 28px 75px rgba(0,0,0,.35),
    0 0 0 1px rgba(120,255,180,.08);
}

/* --- Video preview: NO controls, all clicks go to overlay button --- */
.video-thumb {
  position: relative;
  isolation: isolate;
}

.portfolio-video {
  pointer-events: none !important;
  user-select: none;
}

.video-label {
  z-index: 3;
  transition: transform .35s ease, opacity .35s ease;
}

.video-launch {
  position: absolute;
  z-index: 10;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(0,232,135,.08), transparent 25%),
    linear-gradient(to top, rgba(5,5,8,.20), transparent 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: .93;
  font-family: inherit;
}

.video-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: background .35s ease, border-color .35s ease;
}

.video-launch-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 3px;
  font-size: 16px;
  color: #09090c;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 45px rgba(0,0,0,.38);
  transform: scale(.94);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.video-launch-copy {
  display: grid;
  gap: 3px;
  text-align: left;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .28s ease, transform .28s ease;
}

.video-launch-copy small {
  color: rgba(255,255,255,.64);
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.video-launch-copy b {
  font-size: 13px;
}

.video-thumb:hover .video-launch {
  background:
    radial-gradient(circle at 50% 48%, rgba(0,232,135,.22), transparent 33%),
    linear-gradient(to top, rgba(4,4,7,.60), rgba(4,4,7,.03) 65%);
}

.video-thumb:hover .video-launch-play {
  transform: scale(1.08);
  background: #fff;
  box-shadow: 0 18px 55px rgba(0,232,135,.28);
}

.video-thumb:hover .video-launch-copy {
  opacity: 1;
  transform: translateX(0);
}

.video-thumb:hover .video-label {
  transform: translateY(8px);
  opacity: .4;
}

/* Remove old pseudo overlay that could confuse click feedback */
.video-open::before,
.video-open::after {
  display: none !important;
}

/* --- Bigger, unmistakable video popup --- */
.video-modal {
  z-index: 900 !important;
}

.video-modal.is-open {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.video-modal-backdrop {
  background:
    radial-gradient(circle at 50% 45%, rgba(0,232,135,.16), transparent 34%),
    rgba(0,0,0,.92);
}

.video-modal-dialog {
  width: min(1180px, 94vw);
  border-radius: 25px;
  box-shadow:
    0 40px 120px rgba(0,0,0,.72),
    0 0 0 1px rgba(120,255,180,.08);
}

.video-modal-header {
  min-height: 68px;
  padding: 16px 70px 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #09090d;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.video-modal-header span {
  color: #706c7b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.video-modal-header strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.modal-video {
  width: 100%;
  max-height: calc(90vh - 68px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

/* --- Animated reveal enhancement --- */
.reveal {
  filter: blur(5px);
  transform: translateY(30px) scale(.985);
  transition:
    opacity .75s cubic-bezier(.2,.8,.2,1),
    transform .75s cubic-bezier(.2,.8,.2,1),
    filter .75s ease;
}

.reveal.visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* --- WhatsApp breathe animation --- */
.whatsapp-half {
  animation: whatsappBreathe 2.7s ease-in-out infinite;
}

@keyframes whatsappBreathe {
  0%,100% { box-shadow: 0 14px 38px rgba(0,0,0,.38), 0 0 0 0 rgba(37,211,102,.25); }
  50% { box-shadow: 0 14px 38px rgba(0,0,0,.38), 0 0 0 11px rgba(37,211,102,0); }
}

/* --- Mobile --- */
@media (max-width: 800px) {
  .cursor-glow {
    display: none;
  }

  .header.header-scrolled {
    top: 7px;
  }

  .video-launch-copy {
    opacity: 1;
    transform: none;
  }

  .video-launch-play {
    width: 52px;
    height: 52px;
  }

  .video-modal-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-right: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .cursor-glow {
    display: none;
  }
}


/* =========================================================
   WHATSAPP FIXED — BOTTOM RIGHT
   ========================================================= */
.whatsapp-float {
  position: fixed !important;
  right: 22px !important;
  left: auto !important;
  bottom: 22px !important;
  z-index: 999 !important;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 11px;
  transform: none !important;
}

.whatsapp-float:hover {
  right: 22px !important;
  left: auto !important;
  transform: translateY(-3px) !important;
}

.whatsapp-half {
  flex: 0 0 auto;
}

.whatsapp-half svg {
  margin-left: 0 !important;
}

.whatsapp-tooltip {
  opacity: 0;
  transform: translateX(8px);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 14px !important;
    left: auto !important;
    bottom: 14px !important;
  }

  .whatsapp-float:hover {
    right: 14px !important;
  }
}


/* =========================================================
   THEGO V5 — TECH GREEN IDENTITY
   ========================================================= */
:root {
  --accent: #00e887;
  --accent-2: #78ffb4;
  --tech-green-deep: #064e3b;
  --tech-green-mid: #0ca96d;
  --tech-green-glow: rgba(0,232,135,.28);
}

/* Primary highlights */
.logo span,
.kicker,
.subsection-heading span,
.marquee i,
.video-note span {
  color: var(--accent-2);
}

/* Main CTA */
.btn-primary {
  background: linear-gradient(135deg, #00c978, #00e887 55%, #78ffb4);
  box-shadow: 0 14px 34px rgba(0,232,135,.13);
}

.btn-primary:hover {
  box-shadow: 0 17px 42px rgba(0,232,135,.20);
}

/* Hero ambient glow */
body {
  background:
    radial-gradient(circle at 80% 8%, rgba(0,232,135,.09), transparent 28%),
    var(--bg);
}

.visual-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.015)),
    radial-gradient(circle at 20% 10%, rgba(120,255,180,.20), transparent 40%),
    #0c0c12;
}

.orb-1 {
  background: rgba(0,232,135,.14);
}

.orb-2 {
  background: rgba(120,255,180,.09);
}

/* Section details */
.subsection-heading::after {
  background: linear-gradient(90deg, rgba(120,255,180,.48), transparent);
}

/* Hover borders */
.project-preview:hover {
  border-color: rgba(120,255,180,.34);
}

.project-card:hover .project-preview {
  box-shadow:
    0 28px 75px rgba(0,0,0,.35),
    0 0 0 1px rgba(120,255,180,.09);
}

/* Contact panel — dark technological green */
.contact-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(135deg, #064e3b, #0b7a55 54%, #12b978 100%);
}

/* Contact form focus */
.contact-project-form input:focus,
.contact-project-form select:focus,
.contact-project-form textarea:focus {
  border-color: rgba(120,255,180,.50);
  box-shadow: 0 0 0 3px rgba(0,232,135,.08);
}

/* Video interactions */
.video-launch {
  background:
    radial-gradient(circle at 50% 48%, rgba(0,232,135,.07), transparent 25%),
    linear-gradient(to top, rgba(5,5,8,.20), transparent 45%);
}

.video-thumb:hover .video-launch {
  background:
    radial-gradient(circle at 50% 48%, rgba(0,232,135,.20), transparent 33%),
    linear-gradient(to top, rgba(4,4,7,.60), rgba(4,4,7,.03) 65%);
}

.video-thumb:hover .video-launch-play {
  box-shadow: 0 18px 55px rgba(0,232,135,.25);
}

.video-modal-backdrop {
  background:
    radial-gradient(circle at 50% 45%, rgba(0,232,135,.14), transparent 34%),
    rgba(0,0,0,.92);
}

.video-modal-dialog {
  box-shadow:
    0 40px 120px rgba(0,0,0,.72),
    0 0 0 1px rgba(120,255,180,.08);
}

/* Cursor glow */
.cursor-glow {
  background: radial-gradient(
    circle,
    rgba(0,232,135,.50),
    rgba(0,232,135,.10) 42%,
    transparent 70%
  );
}

/* Scroll progress */
.scroll-progress span {
  background: linear-gradient(90deg, #00a864, #00e887, #78ffb4);
  box-shadow: 0 0 18px rgba(0,232,135,.48);
}

/* Small green outline accents */
.video-note {
  border-color: rgba(120,255,180,.30);
  background: rgba(0,232,135,.045);
}

/* Keep WhatsApp recognizable but harmonized */
.whatsapp-half {
  box-shadow:
    0 14px 38px rgba(0,0,0,.38),
    0 0 24px rgba(37,211,102,.10);
}


/* =========================================================
   THEGO V6 — 6 VERTICAL VIDEO PROJECTS / 9:16
   ========================================================= */

.vertical-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.vertical-video-grid .video-card {
  border-radius: 22px;
  overflow: hidden;
}

.vertical-video-thumb {
  aspect-ratio: 9 / 16 !important;
  width: 100%;
  max-height: none;
  background: #050507;
}

.vertical-video-thumb .portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vertical-video-thumb .video-label {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.vertical-video-thumb .video-label strong {
  font-size: 20px;
}

.vertical-video-thumb .video-launch {
  border-radius: 0;
}

.vertical-video-thumb .video-launch-play {
  width: 64px;
  height: 64px;
}

.vertical-video-thumb:hover .portfolio-video {
  transform: scale(1.025);
}

/* Vertical popup player */
.video-modal-dialog {
  width: min(470px, 92vw) !important;
  max-height: 94vh;
}

.video-modal-header {
  min-height: 62px;
}

.modal-video {
  width: 100%;
  height: auto;
  max-height: calc(94vh - 62px);
  aspect-ratio: 9 / 16 !important;
  object-fit: contain;
  background: #000;
}

@media (max-width: 980px) {
  .vertical-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vertical-video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .vertical-video-grid .video-card {
    border-radius: 16px;
  }

  .vertical-video-grid .video-info {
    padding: 14px;
  }

  .vertical-video-grid .video-info h4 {
    font-size: 12px;
  }

  .vertical-video-grid .video-info p {
    display: none;
  }

  .vertical-video-thumb .video-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .vertical-video-thumb .video-label span {
    font-size: 7px;
  }

  .vertical-video-thumb .video-label strong {
    font-size: 14px;
  }

  .vertical-video-thumb .video-launch {
    align-items: center;
    justify-content: center;
  }

  .vertical-video-thumb .video-launch-play {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .vertical-video-thumb .video-launch-copy {
    display: none;
  }

  .video-modal-dialog {
    width: min(92vw, 430px) !important;
    max-height: 95vh;
  }

  .modal-video {
    max-height: calc(95vh - 62px);
  }
}
