@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

:root {
  --vista-blue:  #9edcb1;
  --smalt-blue:  #4c9488;
  --ming:        #3e7e89;
  --st-tropaz:   #2a5b89;
  --cello:       #1f3b5c;

  --bg-dark:     #0b1623;
  --bg-card:     #111d2e;
  --bg-card-2:   #152235;
  --border:      rgba(62,126,137,.22);
  --border-light:rgba(158,220,177,.15);

  --text-white:  #f0f6ff;
  --text-muted:  #7fa0b8;
  --text-dim:    #4d6e84;

  --accent-grad: linear-gradient(135deg, var(--ming), var(--smalt-blue));
  --hero-grad:   linear-gradient(135deg, var(--st-tropaz), var(--cello));

  --ease: cubic-bezier(.4,0,.2,1);
  --t1: .2s;
  --t2: .4s;
  --t3: .6s;
}

html { 
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  background: var(--bg-dark);
  background-image:
    linear-gradient(rgba(62,126,137,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,126,137,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  background-attachment: fixed;
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--ming); border-radius: 3px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection { background: var(--ming); color: #fff; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,22,35,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-titulo-img { display: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--t1) var(--ease);
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-grad);
  transition: width var(--t2) var(--ease);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links .btn-contacto {
  background: var(--accent-grad);
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: 40px;
  margin-left: .5rem;
}

.nav-links .btn-contacto::after {
  display: none;
}

.nav-links .btn-contacto:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--t2) var(--ease);
}

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

.hero::before,
.hero::after {
  content: none;
}

.section-modulo {
  position: relative;
  overflow: hidden;
}
.section-modulo::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(62,126,137,.12) 0%, transparent 100%),
    radial-gradient(ellipse 50% 50% at 90% 50%, rgba(42,91,137,.10)  0%, transparent 100%);
}

.hero-noise { display: none; }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(62,126,137,.15);
  border: 1px solid var(--border);
  color: var(--vista-blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 40px;
  margin-bottom: 1.6rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--vista-blue); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--text-white);
  margin-bottom: 1.4rem;
}

.highlight {
  background: linear-gradient(135deg, var(--vista-blue) 0%, var(--smalt-blue) 60%, var(--ming) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.4rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  display: block;
  transition: transform var(--t3) var(--ease);
}
.hero-img:hover { transform: scale(1.02) translateY(-4px); }

.hero-chip {
  position: absolute;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-white);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  white-space: nowrap;
}
.hero-chip i { color: var(--vista-blue); }
.hero-chip-1 { top: -18px; left: -28px; animation: float 4s ease-in-out infinite; }
.hero-chip-2 { bottom: 28px; right: -28px; animation: float 4s ease-in-out infinite .8s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.features-preview {
  padding: 90px 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: all var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
}
.preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,126,137,.09), transparent);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
}
.preview-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t3) var(--ease);
}
.preview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62,126,137,.5);
  box-shadow:
    0 20px 40px rgba(0,0,0,.32),
    0 0 0 1px rgba(62,126,137,.15);
}
.preview-card:hover::before { opacity: 1; }
.preview-card:hover::after  { transform: scaleX(1); }

.preview-card i {
  font-size: 2rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: block;
}
.preview-card h3 { font-family: 'Sora', sans-serif; color: var(--text-white); margin-bottom: .4rem; font-size: 1.15rem; font-weight: 600; }
.preview-card p { color: var(--text-muted); font-size: .9rem; }

.page-header {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}
.page-header h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-white);
  margin-bottom: 1rem;
  position: relative;
}
.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: .8rem auto 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--text-white);
  margin-bottom: .8rem;
}

.underline {
  width: 60px; height: 3px;
  background: var(--accent-grad);
  margin: .6rem auto 1rem;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: .8rem 1.8rem;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--t2) var(--ease);
}

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(62,126,137,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(62,126,137,.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255,255,255,.05);
  color: var(--text-white);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(62,126,137,.12);
  border-color: var(--ming);
  transform: translateY(-3px);
}

.btn-full { width: 100%; text-align: center; }

.about-full {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  letter-spacing: -.025em;
}
.about-text p { color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.7; }
.about-text strong { color: var(--vista-blue); }

.features {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(62,126,137,.1);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: .4rem 1rem;
  font-size: .88rem;
  color: var(--text-muted);
  transition: all var(--t2) var(--ease);
}
.feature:hover { background: rgba(62,126,137,.2); color: var(--text-white); border-color: var(--ming); }
.feature i { color: var(--vista-blue); font-size: 1rem; }

.about-values { display: flex; flex-direction: column; gap: 1.2rem; }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ming);
  border-radius: 16px;
  padding: 1.6rem;
  transition: all var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,126,137,.09) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
  pointer-events: none;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,148,136,.18), transparent 70%);
  opacity: 0;
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease);
  pointer-events: none;
}

.value-card:hover {
  transform: translateX(8px);
  border-left-color: var(--vista-blue);
  border-color: rgba(62,126,137,.45);
  box-shadow:
    0 8px 30px rgba(0,0,0,.28),
    -4px 0 20px rgba(62,126,137,.12);
}

.value-card:hover::before { opacity: 1; }
.value-card:hover::after  { opacity: 1; transform: scale(1.4); }
.value-card h4 { font-family: 'Sora', sans-serif; color: var(--text-white); font-size: 1.1rem; font-weight: 600; margin-bottom: .4rem; }
.value-card p { color: var(--text-muted); font-size: .9rem; }

.team {
  padding: 60px 0 90px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 380px));
  gap: 2rem;
  justify-content: center;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(158,220,177,.04), transparent);
  transition: left .6s var(--ease);
  pointer-events: none;
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,126,137,.08), transparent);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(62,126,137,.55);
  box-shadow:
    0 20px 50px rgba(0,0,0,.38),
    0 0 0 1px rgba(62,126,137,.18),
    0 0 30px rgba(62,126,137,.07);
}

.team-card:hover::before { left: 100%; }
.team-card:hover::after  { opacity: 1; }

.team-icon {
  width: 72px; height: 72px;
  background: rgba(62,126,137,.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.team-icon i { font-size: 2rem; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.team-card h3 { font-family: 'Sora', sans-serif; color: var(--text-white); font-size: 1.15rem; font-weight: 600; margin-bottom: .3rem; }
.team-card p  { color: var(--text-muted); font-size: .9rem; }

.services-full { padding: 60px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t3) var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(62,126,137,.13) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--t3) var(--ease);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(76,148,136,.55);
  box-shadow:
    0 25px 50px rgba(0,0,0,.45),
    0 0 0 1px rgba(62,126,137,.2),
    0 0 40px rgba(62,126,137,.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card .scan-line {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(158,220,177,.35), transparent);
  transition: top 0s;
  pointer-events: none;
}

.service-card:hover .scan-line {
  animation: scan .8s ease forwards;
}

@keyframes scan {
  0%   { top: -2px; opacity: 1; }
  100% { top: 105%; opacity: 0; }
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(62,126,137,.12);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: all var(--t2) var(--ease);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
  z-index: -1;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(62,126,137,.25);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(62,126,137,.3);
}

.service-card:hover .service-icon::after {
  opacity: .25;
}

.service-icon i {
  font-size: 2rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h3 {
  font-family: 'Sora', sans-serif;
  color: var(--text-white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(31,59,92,.5), rgba(15,23,35,.6));
  border-top: 1px solid rgba(62,126,137,.10);
  border-bottom: 1px solid rgba(62,126,137,.10);
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(62,126,137,.13), transparent 100%);
  pointer-events: none;
}
.cta-section h2 { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 700; margin-bottom: .8rem; position: relative; z-index: 1; }
.cta-section p  { color: var(--text-muted); margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-section .btn-primary { position: relative; z-index: 1; }

.contact-full { padding: 60px 0 90px; }

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-white);
  transition: all var(--t2) var(--ease);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { color: var(--text-muted); }
.form-group select option { background: var(--bg-card-2); color: var(--text-white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ming);
  box-shadow: 0 0 0 4px rgba(62,126,137,.15);
  background: var(--bg-card-2);
}

.form-message {
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  display: none;
}
.form-message.success { background: rgba(76,148,136,.12); color: var(--smalt-blue); border-left: 3px solid var(--smalt-blue); }
.form-message.error   { background: rgba(220,53,69,.1);    color: #e57373;          border-left: 3px solid #e57373; }

footer {
  background: #080f1a;
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  align-items: start;
}

.footer-logo h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vista-blue), var(--smalt-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.footer-logo p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--text-white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--t1) var(--ease);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ming);
  opacity: 0;
  transition: opacity var(--t1) var(--ease);
}
.footer-links a:hover { color: var(--vista-blue); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--text-dim);
  font-size: .88rem;
}
.footer-contact-item i {
  color: var(--ming);
  font-size: .9rem;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding: 1.6rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--t1) var(--ease);
}

.footer-bottom a:hover {
  color: var(--vista-blue);
}

.footer-bottom-sep {
  color: var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,29,46,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  box-shadow: 0 -10px 40px rgba(0,0,0,.5);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text { display: flex; align-items: center; gap: 1rem; flex: 2; }
.cookie-text i { font-size: 1.8rem; color: var(--vista-blue); flex-shrink: 0; }
.cookie-text p { margin: 0; font-size: .88rem; color: var(--text-muted); }
.cookie-text a { color: var(--vista-blue); text-decoration: underline; }

.cookie-buttons { display: flex; gap: .8rem; flex-wrap: wrap; }

.cookie-btn {
  padding: .6rem 1.4rem;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--t2) var(--ease);
  border: none;
}
.cookie-btn.accept {
  background: var(--accent-grad);
  color: white;
}
.cookie-btn.accept:hover { filter: brightness(1.1); transform: scale(1.03); }
.cookie-btn.reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-btn.reject:hover { color: var(--text-white); border-color: var(--ming); }

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: all var(--t2) var(--ease);
  z-index: 999;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }

@media (max-width: 900px) {
  .hero-container   { grid-template-columns: 1fr; text-align: center; }
  .hero-content p   { margin: 0 auto 2rem; }
  .hero-buttons     { justify-content: center; }
  .hero-image       { display: none; }
  .about-grid,
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-content   { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-logo p    { margin: 0 auto; }
  .footer-links a::before { display: none; }
  .footer-contact-item { justify-content: center; }
  .preview-grid     { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .contact-form     { padding: 2rem; margin: 0 1rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    left: -100%; top: 70px;
    flex-direction: column;
    background: rgba(11,22,35,.98);
    width: 100%;
    text-align: center;
    transition: left var(--t3) var(--ease);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }
  .nav-links.active { left: 0; }
  .hamburger { display: flex; }

  .hero-stats { gap: 2.5rem; }
  .team-grid  { grid-template-columns: 1fr; }

  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-text    { flex-direction: column; }
  .cookie-buttons { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 0 40px; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

.thinker-3d-container {
  width: 100%;
  max-width: 460px;
  height: 460px;
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, rgba(62,126,137,0.12) 0%, rgba(11,22,35,0) 70%);
  box-shadow:
    0 0 0 1px rgba(62,126,137,0.15),
    0 30px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(158,220,177,0.06);
}

#thinkerCanvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.thinker-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-dark);
  z-index: 2;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.thinker-loading.hidden {
  opacity: 0;
}
.thinker-loading span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.thinker-loader-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(62,126,137,0.2);
  border-top-color: var(--smalt-blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero-image { display: flex !important; margin-top: 2rem; }
  .thinker-3d-container { height: 380px; max-width: 380px; }
}

@media (max-width: 480px) {
  .thinker-3d-container { height: 320px; max-width: 320px; }
}

.ubicacion-section {
  padding: 90px 0;
}

.ubicacion-container {
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 3rem;
  align-items: center;
}

.ubicacion-text {
  max-width: 440px;
}

.ubicacion-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.ubicacion-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ubicacion-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(62,126,137,.12);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: .45rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vista-blue);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ubicacion-badge i {
  font-size: .9rem;
}

#argentina-map {
  flex-shrink: 0;
  width: 100%;
  max-width: 540px;
}

.gc-map-tooltip {
  position: fixed;
  background: rgba(11,22,35,.97);
  border: 1px solid rgba(62,126,137,.45);
  border-radius: 8px;
  padding: 5px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #f0f6ff;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .15s;
  z-index: 9998;
}

.gc-map-pulse {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(158,220,177,.7);
  transform: translate(-50%, -50%);
  animation: gcPulseOut 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes gcPulseOut {
  0%   { transform: translate(-50%,-50%) scale(.4); opacity: .9; }
  100% { transform: translate(-50%,-50%) scale(3.4); opacity: 0; }
}

.gc-map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  pointer-events: none;
  animation: gcPinBob 3s ease-in-out infinite;
}

.gc-pin-head {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9edcb1;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(158,220,177,.3), 0 0 14px rgba(158,220,177,.7);
}

.gc-pin-stem {
  width: 2px;
  height: 14px;
  background: linear-gradient(to bottom, #9edcb1, transparent);
}

.gc-pin-label {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #9edcb1;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

@keyframes gcPinBob {
  0%,100% { transform: translate(-50%,-100%) translateY(0); }
  50%      { transform: translate(-50%,-100%) translateY(-5px); }
}

@media (max-width: 900px) {
  .ubicacion-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
    text-align: center;
  }
  .ubicacion-text {
    max-width: 100%;
  }
  #argentina-map {
    width: 100%;
    max-width: 420px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: initial;   
}

.contact-animation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.anim-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(62,126,137,.12);
  border: 1px solid rgba(62,126,137,.28);
  border-radius: 40px;
  padding: .35rem 1rem;
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--vista-blue);
  letter-spacing: .04em;
}

.planet-canvas {
  width:  100%;
  max-width: 340px;
  height: 340px;
  border-radius: 24px;
  background: #0b1623;
  box-shadow:
    0 0 0 1px rgba(62,126,137,.18),
    0 20px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(158,220,177,.06);
  display: block;
}

.contact-anim-caption {
  font-size: .88rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  max-width: 260px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-animation-wrapper {
    order: -1;   
  }
  .planet-canvas {
    max-width: 260px;
    height: 260px;
  }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }

  .features-preview,
  .ubicacion-section,
  .about-full,
  .services-full,
  .contact-full { padding: 60px 0; }

  .section-header { margin-bottom: 2.5rem; }

  .preview-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-logo { grid-column: 1 / -1; }
  .footer-logo p { max-width: 100%; }

  .hero-stats { flex-wrap: wrap; gap: 2rem; justify-content: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  .header-container { padding: .6rem 16px; }

  .hero { padding: 90px 0 50px; min-height: auto; }
  .hero-container { gap: 2rem; }
  .hero-content h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-content p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; text-align: center; }

  .thinker-3d-container { height: 300px; max-width: 100%; }

  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-form { padding: 1.8rem 1.2rem; margin: 0; }

  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { grid-column: auto; }
  .footer-logo p { margin: 0 auto; }
  .footer-links a::before { display: none; }
  .footer-contact-item { justify-content: center; }

  .cta-section h2 { font-size: 1.7rem; }
  .cta-section p  { font-size: .95rem; }

  .ubicacion-badge { font-size: .75rem; }
  .ubicacion-text h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 0 40px; }
  .hero-stats { gap: 1.2rem; }
  .stat-number { font-size: 1.8rem; }

  .thinker-3d-container { height: 280px; }

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

  .contact-form { padding: 1.2rem 1rem; border-radius: 18px; }

  .page-header { padding: 60px 0 30px; }
  .page-header h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  .hero-chip { display: none; }

  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 16px; }

  .btn { padding: .75rem 1.4rem; font-size: .9rem; }

  #argentina-map {
    max-width: 320px;
  }
}


/* ─── Neon Hero Block ─────────────────────────────────────────────────── */
.neon-hero-block {
  padding: 80px 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
  /* sin overflow:hidden — el glow del padre cubre todo sin cortes */
}

.hero-neon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  line-height: 1;
}

/* "Great" — blanco sólido, sin text-stroke, glow mínimo solo como halo */
.neon-brand {
  font-family: 'Sora', sans-serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text-white);          /* blanco sólido, sin huecos */
  -webkit-text-stroke: 0;            /* sin trazo */
  text-shadow:
    0 0 30px rgba(158,220,177,.12),  /* halo verde muy suave, invisible de día */
    0 0 60px rgba(62,126,137,.08);
  animation: neonEdgePulse 5s ease-in-out infinite;
  /* Asegura que no se corte */
  white-space: nowrap;
  max-width: 100%;
}

/* "Core" — verde acento sólido, halo un poco más visible */
.neon-core {
  color: var(--vista-blue);
  -webkit-text-stroke: 0;
  text-shadow:
    0 0 20px rgba(158,220,177,.22),
    0 0 50px rgba(76,148,136,.14);
}

/* Subtítulo — limpio, sin neon */
.neon-sub {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 2.6vw, 1.8rem);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--smalt-blue);
  opacity: .9;
  white-space: nowrap;
}

@keyframes neonEdgePulse {
  0%, 100% {
    text-shadow:
      0 0 30px rgba(158,220,177,.12),
      0 0 60px rgba(62,126,137,.08);
  }
  50% {
    text-shadow:
      0 0 40px rgba(158,220,177,.22),
      0 0 80px rgba(62,126,137,.14);
  }
}

/* Separador */
.neon-hero-block::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--smalt-blue), transparent);
  margin: 1.8rem auto 0;
  opacity: .5;
}

/* Hero que sigue: menos padding-top ya que el neon lo precede */
.hero {
  min-height: auto !important;
  padding-top: 40px !important;
}

@media (max-width: 900px) {
  .neon-brand, .neon-sub { white-space: normal; }
  .neon-hero-block { padding-top: 60px; }
  .neon-sub { letter-spacing: .15em; }
}
@media (max-width: 480px) {
  .neon-hero-block { padding-top: 50px; }
}
