* {
  box-sizing: border-box;
}

:root {
  --dark: #07101f;
  --dark-2: #0d1728;
  --card: rgba(255,255,255,.08);
  --white: #ffffff;
  --muted: #c8d2e3;
  --blue: #2486e8;
  --green: #9acb22;
  --orange: #f68b16;
  --red: #e6402e;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  z-index: 20;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 6px 6px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(7,16,31,.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.brand img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff !important;
  font-weight: 700;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
}

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

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 30%, rgba(36,134,232,.35), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(246,139,22,.28), transparent 25%),
    linear-gradient(90deg, rgba(7,16,31,.98), rgba(7,16,31,.76), rgba(7,16,31,.9));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: rgba(36,134,232,.12);
  color: var(--blue);
  border-color: rgba(36,134,232,.2);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .92;
  letter-spacing: -0.06em;
  margin: 22px 0;
}

h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 23px;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  font-size: 20px;
  max-width: 680px;
}

.hero-actions,
.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.btn-primary {
  color: #07101f;
  background: linear-gradient(135deg, #fff, var(--green) 45%, var(--orange));
  box-shadow: 0 16px 40px rgba(246,139,22,.26);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-blue {
  background: #1a73e8;
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.hero-stats strong {
  display: block;
  font-size: 22px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  background: #000;
}

.video-caption {
  padding: 18px;
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: 100px 0;
}

.split,
.fit-grid,
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro {
  background: #fff;
  color: var(--dark);
}

.intro p,
.gallery p,
.reviews p,
.investment p {
  color: #445064;
}

.intro-text {
  font-size: 20px;
}

.cards-section,
.gallery,
.reviews,
.investment {
  background: #f4f7fb;
  color: var(--dark);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.card {
  background: #fff;
  border: 1px solid rgba(7,16,31,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 15px 40px rgba(7,16,31,.08);
}

.card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
  margin-bottom: 28px;
}

.fit-section,
.reels,
.faq-contact {
  background:
    radial-gradient(circle at top left, rgba(36,134,232,.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(246,139,22,.18), transparent 30%),
    var(--dark-2);
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
}

.investment-card {
  text-align: center;
  background: #fff;
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(7,16,31,.1);
}

.investment-card h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.photo-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(7,16,31,.12);
}

.photo-grid .wide {
  grid-column: span 3;
  height: 500px;
}

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

.reel-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.reel-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #000;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.google {
  color: #4285f4;
  font-weight: 900;
  font-size: 28px;
}

.rating {
  color: #fbbc05;
  margin-left: 12px;
  font-weight: 900;
}

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

.review-card {
  background: #fff;
  border: 1px solid rgba(7,16,31,.08);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(7,16,31,.08);
}

.review-card span {
  color: #fbbc05;
  font-weight: 900;
}

.faq-contact-grid {
  align-items: stretch;
}

.accordion {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.accordion button {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.accordion div {
  display: none;
  padding: 0 18px 12px;
}

.accordion div.active {
  display: block;
}

.contact-card {
  background: #fff;
  color: var(--dark);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-card p {
  color: #445064;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(7,16,31,.12);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  background: #f7f9fc;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-links a {
  color: var(--blue);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: #25d366;
  color: #07101f;
  font-weight: 900;
  padding: 15px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
}

.popup {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 50;
  width: min(390px, calc(100% - 40px));
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
}

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

.popup p {
  color: #445064;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

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

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

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 80px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(7,16,31,.96);
    border: 1px solid rgba(255,255,255,.14);
  }

  body.menu-open .nav {
    display: flex;
  }

  .hero-grid,
  .split,
  .fit-grid,
  .faq-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .reel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .reel-grid::-webkit-scrollbar {
    display: none;
  }

  .reel-card {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }

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

  .photo-grid .wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .site-header {
    top: 10px;
  }

  .brand img {
    height: 34px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-stats,
  .cards,
  .review-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .reel-card {
    flex: 0 0 72%;
  }

  .photo-grid .wide {
    grid-column: span 1;
  }

  .photo-grid img,
  .photo-grid .wide {
    height: 320px;
  }

  .investment-card,
  .contact-card {
    padding: 28px;
  }

  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    text-align: center;
  }

  .popup {
    right: 14px;
    bottom: 84px;
    width: calc(100% - 28px);
  }
}


/* ===== Ajustes V2 finales ===== */

.instagram-link{
  width:42px;
  height:42px;
  min-width:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color:#fff!important;
  transition:transform .25s ease, box-shadow .25s ease;
}

.instagram-link:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(221,42,123,.35);
}

.whatsapp-float{
  color:#fff!important;
}

.footer{
  background:#050b16;
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;
}

.footer-container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:rgba(255,255,255,.65);
  font-size:14px;
}

.footer a{
  color:#fff;
  font-weight:800;
  text-decoration:none;
}

.footer a:hover{
  opacity:.82;
}

@media (max-width:980px){
  .hero-grid{
    display:flex!important;
    flex-direction:column!important;
  }

  .hero-video{
    order:1!important;
    width:100%;
  }

  .hero-copy{
    order:2!important;
    width:100%;
  }
}

@media (max-width:768px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }
}


/* ===== Ajustes V3: botones flotantes con iconos + limpieza contacto ===== */

.whatsapp-float,
.instagram-float{
  position:fixed;
  z-index:40;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff!important;
  font-size:0;
  box-shadow:0 12px 35px rgba(0,0,0,.28);
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover,
.instagram-float:hover{
  transform:translateY(-3px);
}

.whatsapp-float{
  right:20px;
  bottom:20px;
  background:#25D366;
}

.instagram-float{
  left:20px;
  bottom:20px;
  background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.whatsapp-float svg,
.instagram-float svg{
  display:block;
  color:#fff;
}

@media (max-width:640px){
  .whatsapp-float,
  .instagram-float{
    width:56px;
    height:56px;
    bottom:18px;
    padding:0!important;
    text-align:center;
  }

  .whatsapp-float{
    right:16px;
    left:auto!important;
  }

  .instagram-float{
    left:16px;
    right:auto!important;
  }
}

/* Evita que reglas anteriores de WhatsApp lo conviertan en botón ancho en mobile */
@media (max-width:640px){
  a.whatsapp-float{
    width:56px!important;
    height:56px!important;
    min-width:56px!important;
    max-width:56px!important;
    left:auto!important;
    right:16px!important;
    color:#fff!important;
    border-radius:50%!important;
  }
}


/* =========================================
   AJUSTES FINALES V3
========================================= */

/* Reduce espacio entre Inversión y Equipo */
.investment{
  padding-bottom:40px !important;
}

.gallery{
  padding-top:40px !important;
}

/* El Instagram flotante queda eliminado; Instagram solo queda en el header */
.instagram-float{
  display:none !important;
}

/* Un único WhatsApp flotante circular */
.whatsapp-float{
  position:fixed !important;
  right:20px !important;
  left:auto !important;
  bottom:20px !important;

  width:58px !important;
  height:58px !important;
  min-width:58px !important;
  max-width:58px !important;

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

  padding:0 !important;
  margin:0 !important;
  border-radius:50% !important;

  background:#25D366 !important;
  color:#ffffff !important;

  font-size:0 !important;
  line-height:1 !important;
  text-align:center !important;

  z-index:999 !important;
  box-shadow:0 12px 35px rgba(0,0,0,.28) !important;
}

.whatsapp-float svg{
  display:block !important;
  width:28px !important;
  height:28px !important;
  color:#ffffff !important;
  fill:currentColor !important;
}

@media(max-width:768px){
  .investment{
    padding-bottom:30px !important;
  }

  .gallery{
    padding-top:30px !important;
  }
}

@media(max-width:640px){
  .whatsapp-float{
    right:16px !important;
    left:auto !important;
    bottom:18px !important;

    width:56px !important;
    height:56px !important;
    min-width:56px !important;
    max-width:56px !important;

    border-radius:50% !important;
  }
}
















/* ===== BLOQUE PROCESO DE CRECIMIENTO - ESTILO PREMIUM ===== */

.que-hacemos{
  display:none !important;
}

.proceso-crecimiento{
  background:
    radial-gradient(circle at 20% 20%, rgba(36,134,232,.10), transparent 28%),
    radial-gradient(circle at 78% 55%, rgba(246,139,22,.10), transparent 30%),
    #ffffff !important;
  color:#07101f !important;
  padding:130px 0 140px !important;
  overflow:hidden !important;
}

.proceso-content{
  max-width:1060px;
  margin:0 auto;
  text-align:center;
}

.proceso-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 24px;
  border:1px solid rgba(36,134,232,.25);
  border-radius:999px;
  color:#2486e8;
  background:rgba(36,134,232,.05);
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:34px;
}

.proceso-title{
  margin:0;
  color:#07101f;
  font-size:clamp(56px, 8vw, 104px);
  line-height:.94;
  font-weight:950;
  letter-spacing:-.07em;
  text-align:center;
}

.gradient-blue{
  background:linear-gradient(90deg, #2486e8 0%, #46b0f0 55%, #9acb22 100%);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}

.gradient-main{
  background:linear-gradient(90deg, #2486e8 0%, #9acb22 45%, #f68b16 100%);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}

.proceso-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:34px 0 34px;
}

.proceso-divider span{
  width:46px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, #2486e8, #9acb22);
}

.proceso-divider i{
  display:block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#9acb22;
}

.proceso-text{
  max-width:760px;
  margin:0 auto;
  color:#4f5d78;
  font-size:24px;
  line-height:1.55;
  text-align:center;
}

.proceso-text strong{
  color:#2486e8;
  font-weight:900;
}

@media(max-width:768px){
  .proceso-crecimiento{
    padding:90px 0 100px;
  }

  .proceso-content{
    max-width:100%;
  }

  .proceso-tag{
    font-size:11px;
    padding:8px 16px;
    margin-bottom:26px;
  }

  .proceso-title{
    font-size:clamp(44px, 13vw, 64px);
    line-height:.96;
    letter-spacing:-.06em;
  }

  .proceso-text{
    font-size:18px;
    line-height:1.6;
    max-width:92%;
  }
}