@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-main: #06090e;
  --bg-card: #0f1520;
  --bg-card-hover: #161e2d;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent: #0ea5e9;
  --accent-glow: rgba(14, 165, 233, 0.4);
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;
  --border-color: rgba(255, 255, 255, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(15, 21, 32, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 70% 80% at 15% 55%,
      rgba(242, 106, 59, 0.16) 0%,
      rgba(242, 106, 59, 0.06) 35%,
      transparent 70%),
    radial-gradient(ellipse 60% 70% at 85% 20%,
      rgba(236, 132, 91, 0.08) 0%,
      transparent 65%),
    linear-gradient(135deg,
      #171313 0%,
      #1d1817 45%,
      #111111 100%);

  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* Layout Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-accent:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-card);
  border-color: var(--text-secondary);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(6, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* =========================
   LOGO VP SOLUCIONES
========================= */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 250px;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--text-primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;

  width: 700px;
  height: 700px;

  left: -250px;
  top: 0;

  background: radial-gradient(circle,
      rgba(242, 106, 59, 0.13) 0%,
      rgba(242, 106, 59, 0.05) 35%,
      transparent 70%);

  border-radius: 50%;
  filter: blur(30px);

  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  right: -250px;
  bottom: -250px;

  background: radial-gradient(circle,
      rgba(242, 106, 59, 0.08) 0%,
      transparent 70%);

  border-radius: 50%;
  filter: blur(40px);

  pointer-events: none;
  z-index: 0;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: center;
}

/* Cards (Glassmorphism/Modern) */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: var(--accent);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card-list {
  margin-top: 1.5rem;
}

.card-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-list li::before {
  content: "→";
  color: var(--accent);
}

/* Diferenciadores (Porque elegirnos) */
.why-us {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Portfolio / Trabajos Realizados */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.6;
  /* Placeholder appearance */
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
  opacity: 0.8;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(6, 9, 14, 0.95) 0%, rgba(6, 9, 14, 0) 100%);
}

/* Logos Marcas */
/* =========================
   SECCIÓN MARCAS
========================= */

.brands-section {
  background: #f5f7fa !important;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 60px 0;
}

.brands-section h3 {
  color: #111827;
}


/* =========================
   CARRUSEL
========================= */

.brands-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;

  /* Desvanecido de los extremos */
  mask-image: linear-gradient(to right,
      transparent,
      black 8%,
      black 92%,
      transparent);

  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 8%,
      black 92%,
      transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;

  gap: 5rem;

  animation: brands-scroll 30s linear infinite;
}


/* Cada logo */

.brand-item {
  flex: 0 0 auto;

  width: 150px;
  height: 70px;

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

  opacity: 0.8;

  transition: all 0.3s ease;
}


/* Imagen */

.brand-item img {
  max-width: 140px;
  max-height: 55px;

  width: auto;
  height: auto;

  object-fit: contain;

  transition: all 0.3s ease;
}


/* Hover */

.brand-item:hover {
  opacity: 1;
  transform: scale(1.08);
}


/* =========================
   ANIMACIÓN INFINITA
========================= */

@keyframes brands-scroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 2.5rem));
  }

}


/* Pausar al pasar el mouse */

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


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

@media (max-width: 768px) {

  .brands-section {
    padding: 45px 0;
  }

  .brands-track {
    gap: 3rem;
    animation-duration: 25s;
  }

  .brand-item {
    width: 120px;
    height: 60px;
  }

  .brand-item img {
    max-width: 110px;
    max-height: 45px;
  }

}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--bg-card);
  padding: 4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-hover);
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  z-index: 100;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #040609;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-secondary);
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Utils */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Hide default nav */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .floating-wa {
    bottom: 90px;
    /* Above mobile bar */
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .hero {
    padding-top: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.cobertura {
  background: #05080d;
  padding: 90px 20px;
  color: white;
}

.cobertura-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.cobertura h2 {
  font-size: 46px;
  margin-bottom: 18px;
  font-weight: 700;
}

.cobertura-subtitulo {
  color: #8fa4bc;
  font-size: 18px;
  margin-bottom: 40px;
}

.mapa-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #273242;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

#mapaBuenosAires {
  width: 100%;
  height: 100%;
}

.mapa-info {
  position: absolute;
  z-index: 999;
  left: 25px;
  bottom: 25px;

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

  background: rgba(10, 15, 23, .92);
  backdrop-filter: blur(10px);

  border: 1px solid #293444;
  border-radius: 12px;

  padding: 15px 20px;

  text-align: left;
}

.mapa-info .pin {
  font-size: 28px;
}

.mapa-info strong {
  display: block;
  font-size: 16px;
}

.mapa-info small {
  display: block;
  color: #8fa4bc;
  margin-top: 4px;
}

/* Adaptación para celulares */
@media (max-width: 768px) {

  .cobertura {
    padding: 60px 15px;
  }

  .cobertura h2 {
    font-size: 32px;
  }

  .cobertura-subtitulo {
    font-size: 16px;
  }

  .mapa-container {
    height: 400px;
  }

  .mapa-info {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

}

.instagram-section {
  padding: 90px 20px;
  background: #05080d;
  text-align: center;
}

.instagram-header {
  max-width: 750px;
  margin: 0 auto 40px;
}

.instagram-header span {
  color: #1683e8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.instagram-header h2 {
  color: #ffffff;
  font-size: 42px;
  margin: 10px 0 15px;
}

.instagram-header p {
  color: #8fa4bc;
  font-size: 17px;
  margin: 0;
}

.instagram-feed {
  max-width: 1100px;
  margin: 0 auto;
}

.instagram-button-container {
  margin-top: 35px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 13px 22px;

  background: #1683e8;
  color: #ffffff;

  border-radius: 10px;
  text-decoration: none;

  font-weight: 600;
  transition: all .3s ease;
}

.instagram-button:hover {
  transform: translateY(-3px);
  background: #0d6fc7;
}

@media (max-width: 768px) {

  .logo img {
    width: 180px;
    max-height: 50px;
  }

}

/* =========================================================
   CASA INTERACTIVA - VP SOLUCIONES
   ========================================================= */

.interactive-home-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(242, 106, 59, .08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
  color: #353434;
}

.interactive-home-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: .75rem;
  color: #f26a3b;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.interactive-home-heading h2 {
  color: #353434;
  margin-bottom: .8rem;
}

.interactive-home-heading p {
  color: #6d6d6d;
  max-width: 680px;
  margin: 0 auto;
}

.interactive-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.5rem;
  align-items: center;
}

.house-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #eef2f5;
  border: 1px solid #e2e5e8;
  box-shadow: 0 22px 60px rgba(53, 52, 52, .12);
}

.house-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.house-hotspot {
  position: absolute;
  z-index: 5;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f26a3b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(242, 106, 59, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.house-hotspot:hover,
.house-hotspot.active {
  transform: scale(1.12);
  box-shadow: 0 7px 26px rgba(242, 106, 59, .5);
}

.hotspot-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.hotspot-icon i {
  font-size: 1.28rem;
  line-height: 1;
}

.hotspot-pulse {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(242, 106, 59, .45);
  border-radius: 50%;
  animation: vp-hotspot-pulse 2.2s infinite;
}

.hotspot-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 9px);
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(53, 52, 52, .92);
  color: #fff;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.house-hotspot:hover .hotspot-label,
.house-hotspot.active .hotspot-label {
  opacity: 1;
  transform: translate(-50%, 2px);
}

@keyframes vp-hotspot-pulse {

  0%,
  100% {
    transform: scale(.75);
    opacity: .75;
  }

  50% {
    transform: scale(1.12);
    opacity: .15;
  }
}

/* Posiciones sobre la ilustración 1536 x 1024 */
.hotspot-camera-front {
  left: 13.5%;
  top: 21%;
}

.hotspot-video {
  left: 37.2%;
  top: 50.5%;
}

.hotspot-wifi {
  left: 53%;
  top: 25%;
}

.hotspot-alarm {
  left: 70%;
  top: 35%;
}

.hotspot-solar {
  left: 91%;
  top: 16%;
}

.house-info {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #e4e6e8;
  box-shadow: 0 18px 45px rgba(53, 52, 52, .08);
}

.house-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: rgba(242, 106, 59, .10);
  color: #f26a3b;
  font-size: 1.4rem;
}

.house-info-icon i {
  line-height: 1;
}

.house-info-kicker {
  color: #f26a3b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.house-info h3 {
  margin: .45rem 0 .75rem;
  color: #353434;
}

.house-info p {
  color: #6d6d6d;
  font-size: .98rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.house-contact-btn {
  background: #f26a3b;
  box-shadow: 0 7px 22px rgba(242, 106, 59, .22);
}

.house-contact-btn:hover {
  background: #e45729;
}

/* Sección clara también para el selector de contacto */
.interactive-home-section+.section {
  background: #ffffff;
}

@media (max-width: 992px) {
  .interactive-home {
    grid-template-columns: 1fr;
  }

  .house-info {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .interactive-home-section {
    padding: 4.5rem 0;
  }

  .interactive-home-heading {
    margin-bottom: 2rem;
  }

  .house-stage {
    border-radius: 1rem;
  }

  .house-hotspot {
    width: 38px;
    height: 38px;
  }

  .hotspot-label {
    display: none;
  }

  .hotspot-camera-front {
    left: 13%;
    top: 21%;
  }

  .hotspot-video {
    left: 37%;
    top: 50%;
  }

  .hotspot-wifi {
    left: 53%;
    top: 25%;
  }

  .hotspot-alarm {
    left: 70%;
    top: 35%;
  }

  .hotspot-solar {
    left: 90%;
    top: 16%;
  }

  .house-info {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}


/* =========================================================
   VP SOLUCIONES · LIGHT THEME
   ========================================================= */

:root {
  --bg-main: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fffaf7;
  --text-primary: #353434;
  --text-secondary: #6d6d6d;
  --accent: #f26a3b;
  --accent-glow: rgba(242, 106, 59, 0.22);
  --border-color: #e6e7e9;
  --glass-bg: rgba(255, 255, 255, .86);
  --glass-border: rgba(53, 52, 52, .08);
}

html,
body {
  background: #ffffff;
  color: #353434;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 106, 59, .055), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(236, 132, 91, .045), transparent 30%),
    #ffffff;
}

.header {
  background-color: rgba(255, 255, 255, .92);
  border-bottom: 1px solid #e8e9eb;
  box-shadow: 0 3px 18px rgba(53, 52, 52, .05);
}

.nav-link {
  color: #6d6d6d;
}

.nav-link:hover {
  color: #353434;
}

.hamburger {
  color: #353434;
}

.hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(242, 106, 59, .10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.hero::before {
  background: radial-gradient(circle,
      rgba(242, 106, 59, .10) 0%,
      rgba(242, 106, 59, .035) 38%,
      transparent 70%);
}

.hero::after {
  background: radial-gradient(circle,
      rgba(236, 132, 91, .07) 0%,
      transparent 70%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #353434;
}

p {
  color: #6d6d6d;
}

.btn-accent {
  background-color: #f26a3b;
  box-shadow: 0 5px 20px rgba(242, 106, 59, .20);
}

.btn-accent:hover {
  background-color: #e45729;
}

.btn-outline {
  color: #353434;
  border-color: #d9dcdf;
  background: #ffffff;
}

.btn-outline:hover {
  background: #f7f7f7;
  border-color: #bfc3c7;
}

.card {
  background: #ffffff;
  border-color: #e5e7e9;
  box-shadow: 0 10px 30px rgba(53, 52, 52, .055);
}

.card:hover {
  background: #fffaf7;
  border-color: rgba(242, 106, 59, .45);
  box-shadow: 0 16px 38px rgba(53, 52, 52, .09);
}

.card-icon {
  background: rgba(242, 106, 59, .10);
  color: #f26a3b;
}

.card-list li {
  color: #6d6d6d;
}

.card-list li::before {
  color: #f26a3b;
}

.why-us {
  background: #f7f8fa;
  border-top-color: #e8eaed;
  border-bottom-color: #e8eaed;
}

.portfolio-item {
  background: #ffffff;
  border-color: #e5e7e9;
  box-shadow: 0 10px 30px rgba(53, 52, 52, .06);
}

.portfolio-overlay {
  background: linear-gradient(to top,
      rgba(20, 20, 20, .82) 0%,
      rgba(20, 20, 20, .18) 75%,
      rgba(20, 20, 20, 0) 100%);
}

.portfolio-filters .filter-btn {
  background: #ffffff;
  color: #6d6d6d;
  border-color: #dfe2e5;
}

.filter-btn.active,
.filter-btn:hover {
  background: #f26a3b;
  color: #ffffff;
  border-color: #f26a3b;
}

.form-control {
  background: #ffffff;
  color: #353434;
  border-color: #dfe2e5;
}

.form-control::placeholder {
  color: #9a9a9a;
}

.contact-container {
  background: #ffffff;
  border-color: #e3e5e8;
  box-shadow: 0 14px 40px rgba(53, 52, 52, .07);
}

.instagram-section {
  background: #f7f8fa;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
}

.instagram-header span {
  color: #f26a3b;
}

.instagram-header h2 {
  color: #353434;
}

.instagram-header p {
  color: #6d6d6d;
}

.instagram-button {
  background: #f26a3b;
}

.instagram-button:hover {
  background: #e45729;
}

.cobertura {
  background: #ffffff;
  color: #353434;
}

.cobertura h2 {
  color: #353434;
}

.cobertura-subtitulo {
  color: #6d6d6d;
}

.mapa-container {
  border-color: #e2e5e8;
  box-shadow: 0 15px 45px rgba(53, 52, 52, .10);
}

.mapa-info {
  background: rgba(255, 255, 255, .94);
  border-color: #e2e5e8;
  box-shadow: 0 8px 24px rgba(53, 52, 52, .10);
}

.mapa-info strong {
  color: #353434;
}

.mapa-info small {
  color: #6d6d6d;
}

.mobile-bottom-bar {
  background: rgba(255, 255, 255, .96);
  border-top-color: #e3e5e8;
}

.footer {
  background: #353434;
  border-top-color: #444;
}

.footer p,
.footer-nav a {
  color: #c9c9c9;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top-color: #505050;
  color: #bdbdbd;
}

@media (max-width: 768px) {
  .nav-links {
    background: #ffffff;
    border-bottom-color: #e5e7e9;
    box-shadow: 0 12px 25px rgba(53, 52, 52, .08);
  }
}


/* =========================================================
   VP SOLUCIONES · BLUE BRAND PALETTE
   ========================================================= */

:root {
  --accent: #1683e8;
  --accent-glow: rgba(22, 131, 232, 0.22);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 131, 232, .055), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(14, 165, 233, .045), transparent 30%),
    #ffffff;
}

.hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(22, 131, 232, .10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.hero::before {
  background: radial-gradient(circle,
      rgba(22, 131, 232, .10) 0%,
      rgba(22, 131, 232, .035) 38%,
      transparent 70%);
}

.hero::after {
  background: radial-gradient(circle,
      rgba(14, 165, 233, .07) 0%,
      transparent 70%);
}

.btn-accent {
  background-color: #1683e8;
  box-shadow: 0 5px 20px rgba(22, 131, 232, .20);
}

.btn-accent:hover {
  background-color: #0d6fc7;
}

.card:hover {
  border-color: rgba(22, 131, 232, .45);
}

.card-icon {
  background: rgba(22, 131, 232, .10);
  color: #1683e8;
}

.card-list li::before {
  color: #1683e8;
}

.filter-btn.active,
.filter-btn:hover {
  background: #1683e8;
  border-color: #1683e8;
}

.form-control:focus {
  border-color: #1683e8;
  box-shadow: 0 0 0 2px rgba(22, 131, 232, .18);
}

.interactive-home-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(22, 131, 232, .07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.section-kicker {
  color: #1683e8;
}

.hotspot-pulse {
  border-color: rgba(22, 131, 232, .45);
}

.house-hotspot {
  background: #1683e8;
  box-shadow: 0 5px 18px rgba(22, 131, 232, .35);
}

.house-hotspot:hover,
.house-hotspot.active {
  box-shadow: 0 7px 26px rgba(22, 131, 232, .5);
}

.house-info-icon {
  background: rgba(22, 131, 232, .10);
  color: #1683e8;
}

.house-info-kicker {
  color: #1683e8;
}

.house-contact-btn {
  background: #1683e8;
  box-shadow: 0 7px 22px rgba(22, 131, 232, .22);
}

.house-contact-btn:hover {
  background: #0d6fc7;
}

.instagram-header span {
  color: #1683e8;
}

.instagram-button {
  background: #1683e8;
}

.instagram-button:hover {
  background: #0d6fc7;
}

/* Imagen principal a la derecha */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 510px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow:
    22px 22px 0 rgba(30, 123, 227, 0.14),
    0 22px 45px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Logo: se recorta el margen transparente del PNG para que se lea bien. */
.header .logo,
.footer .logo {
  display: block;
  width: 270px;
  height: 54px;
  overflow: hidden;
}

.header .logo img,
.footer .logo img {
  display: block;
  width: 360px;
  max-width: none;
  max-height: none;
  height: auto;
  transform: translate(-43px, -151px);
}

/* En el encabezado claro, el logo queda completamente negro. */
.header .logo img {
  filter: brightness(0);
}

/* En el pie oscuro se mantiene la versión original para conservar contraste. */
.footer .logo img {
  filter: none;
}

@media (max-width: 992px) {
  .header .logo {
    width: 235px;
    height: 47px;
  }

  .header .logo img {
    width: 313px;
    transform: translate(-38px, -131px);
  }
}

@media (max-width: 768px) {
  .header .logo {
    width: 215px;
    height: 43px;
  }

  .header .logo img {
    width: 287px;
    transform: translate(-34px, -120px);
  }
}

@media (max-width: 420px) {
  .header .logo {
    width: 190px;
    height: 38px;
  }

  .header .logo img {
    width: 253px;
    transform: translate(-30px, -106px);
  }
}
