@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8fafc;
  color: #19202a;
  line-height: 1.6;
  font-size: 1.06rem;
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(120deg, #091e3a 65%, #fd7200 120%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  width: 100vw;
  max-width: 100vw;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  opacity: 0.17;
  filter: blur(0.7px) saturate(1.18);
  animation: hero-fadein 1.6s cubic-bezier(.46,1.37,.45,.88);
}
@keyframes hero-fadein {
  from { opacity: 0; }
  to { opacity: 0.17; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 28px 36px 28px;
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
  animation: hero-slide 1.4s cubic-bezier(.45,1.17,.49,.94);
}
@keyframes hero-slide {
  0% { opacity:0; transform:translateY(30px); }
  100% { opacity:1; transform:translateY(0); }
}
img.logo, .logo img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 18px auto;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.12;
  text-shadow: 0 2px 12px rgba(9,30,58,0.12);
  transition: color 0.2s;
}
.hero-title .highlight {
  color: #fd7200;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: highlight-pop 2s cubic-bezier(.54,1.54,.28,1.11) infinite alternate;
}
@keyframes highlight-pop {
  0% { background:rgba(255,255,255,0.04); }
  50% { background:rgba(253,114,0,0.10); }
  100% { background:rgba(255,255,255,0.04); }
}
.hero-subtitle {
  font-size: 1.13rem;
  margin-bottom: 30px;
  color: #dbeafe;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-main, .cta-sec {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(90deg, #fd7200 75%, #fdaa49 100%);
  color: #fff;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 28px 0 rgba(253, 114, 0, 0.22), 0 0px 0px 0 rgba(253,114,0,0);
  transition: background 0.18s, transform 0.18s, box-shadow 0.23s;
  margin-top: 22px;
  cursor: pointer;
  letter-spacing: .5px;
  position: relative;
  outline: none;
}
.cta-main.cta-animated {
  animation: cta-glow 1.7s infinite alternate cubic-bezier(.44,1.36,.41,.79);
}
@keyframes cta-glow {
  0% { box-shadow: 0 4px 28px 0 rgba(253,114,0,0.22),0 0 0 0 #fff0; }
  55% { box-shadow: 0 8px 46px 0 rgba(253,114,0,0.34),0 0 0 12px rgba(253,114,0,0.08); }
  100% { box-shadow: 0 4px 28px 0 rgba(253,114,0,0.22),0 0 0 0 #fff0; }
}
.cta-main:hover, .cta-sec:hover {
  background: linear-gradient(90deg, #ff940a 90%, #fd7200 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 40px 0 rgba(253,114,0,0.29);
}
.cta-main:active {
  transform: scale(0.97);
}

/* BENEFICIOS */
.beneficios {
  background: #fff;
  padding: 54px 0 34px 0;
}
.beneficios h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #19202a;
  margin-bottom: 38px;
  text-align: center;
}
.beneficios-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 950px;
  margin: 0 auto;
}
.beneficio-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 32px 22px 28px 22px;
  box-shadow: 0 2px 16px 0 rgba(9, 30, 58, 0.07);
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  will-change: transform;
}
.beneficio-card:hover {
  box-shadow: 0 8px 34px 0 rgba(9,30,58,0.13);
  transform: translateY(-4px) scale(1.045);
}
.beneficio-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #eaf2fb);
  transition: transform 0.13s;
}
.beneficio-card:hover img {
  transform: scale(1.12) rotate(-7deg);
}
.beneficio-card h3 {
  color: #091e3a;
  font-size: 1.15rem;
  margin: 16px 0 9px 0;
  font-weight: 600;
}
.beneficio-card p {
  color: #465061;
  font-size: 0.98rem;
}

/* POR QUÉ BOOST */
.por-que-boost {
  background: linear-gradient(120deg, #eaf2fb 70%, #fff 100%);
  padding: 58px 0 46px 0;
}
.por-que-boost h2 {
  font-size: 1.36rem;
  font-weight: 700;
  color: #091e3a;
  margin-bottom: 34px;
  text-align: center;
}
.boost-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.boost-content img {
  width: 350px;
  max-width: 98vw;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  transition: box-shadow 0.16s;
  box-shadow: 0 2px 14px 0 rgba(9,30,58,0.09);
}
.boost-content img:hover {
  box-shadow: 0 10px 44px 0 rgba(253,114,0,0.11);
}
.boost-info {
  min-width: 260px;
  max-width: 480px;
  font-size: 1rem;
  animation: fadein 1.1s 0.2s backwards;
}
@keyframes fadein { from{opacity:0;} to{opacity:1;} }
.boost-info ul {
  margin-bottom: 18px;
  color: #19202a;
  font-size: 1.04rem;
}
.cta-sec {
  padding: 14px 28px;
  font-size: 1.01rem;
  background: #091e3a;
  margin-top: 12px;
  box-shadow: 0 3px 16px 0 rgba(9,30,58,0.11);
}
.cta-sec:hover {
  background: #fd7200;
  color: #fff;
  transform: scale(1.04);
}

/* LOGOS DE CLIENTES */
.clientes {
  background: #fff;
  padding: 34px 0 16px 0;
  text-align: center;
}
.clientes h2 {
  color: #091e3a;
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.clientes-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.logo-cliente {
  background: #eaf2fb;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(9,30,58,0.07);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TESTIMONIOS */
.testimonios {
  background: linear-gradient(100deg, #f4faff 75%, #fff 100%);
  padding: 38px 0 28px 0;
  text-align: center;
}
.testimonios h2 {
  color: #091e3a;
  font-size: 1.15rem;
  margin-bottom: 25px;
  font-weight: 700;
}
.testimonios-list {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonio-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(9,30,58,0.09);
  padding: 24px 20px 20px 20px;
  max-width: 330px;
  min-width: 220px;
  margin-bottom: 16px;
  transition: box-shadow 0.14s, transform 0.14s;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.testimonio-card::after {
  content: '\"';
  position: absolute;
  top: 10px;
  right: 18px;
  color: #fd7200;
  font-size: 2.2rem;
  opacity: 0.11;
  font-weight: bold;
}
.testimonio-card:hover {
  box-shadow: 0 10px 32px 0 rgba(253,114,0,0.10);
  transform: translateY(-2px) scale(1.03);
}
.testimonio-card p {
  color: #4b576a;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 19px;
  transition: color 0.18s;
}
.testimonio-info {
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  border-radius: 50%;
  background: #eaf2fb;
  color: #8b9dc6;
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.nombre {
  color: #091e3a;
  font-weight: 600;
}
.cargo {
  color: #727c8e;
  font-size: 0.93rem;
}

/* IFRAME AUTODIAGNÓSTICO */
.autodiagnostico {
  background: #fff;
  padding: 60px 0 64px 0;
  text-align: center;
}
.autodiagnostico h2 {
  color: #091e3a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.iframe-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 28px 0 rgba(9,30,58,0.11);
  min-height: 640px;
  animation: fadein 1.1s 0.15s backwards;
}
.iframe-container iframe {
  width: 100%;
  height: 660px;
  border: none;
  background: #f8fafc;
}

/* FOOTER */
footer {
  background: #091e3a;
  color: #fff;
  padding: 38px 0 22px 0;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 44px;
  font-size: 1rem;
}
.footer-content h4 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fd7200;
}
.footer-content a {
  color: #fd7200;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-content a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-content img {
  width: 120px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 18px 0 rgba(9,30,58,0.13);
  width: 56px;
  height: 56px;
  animation: pop-fade 1.1s cubic-bezier(.45,.12,.35,1.36) 1;
  transition: box-shadow 0.16s;
}
.whatsapp-float:hover {
  box-shadow: 0 12px 28px 0 rgba(37,211,102,0.25);
  transform: scale(1.11) translateY(-2px) rotate(-4deg);
}
.whatsapp-float img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
@keyframes pop-fade {
  0% { opacity: 0; transform: scale(0.4);}
  80% { opacity: 1; transform: scale(1.12);}
  100% { opacity: 1; transform: scale(1);}
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 98px;
  right: 27px;
  z-index: 999;
  background: #091e3a;
  color: #fff;
  border: none;
  border-radius: 40px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(9,30,58,0.12);
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
}
#scrollTopBtn:hover {
  background: #fd7200;
  transform: scale(1.10);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .boost-content {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .iframe-container {
    min-height: 540px;
  }
}

@media (max-width: 900px) {
  .testimonios-list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .clientes-logos {
    gap: 18px 16px;
  }
}
@media (max-width: 700px) {
  .hero-content {
    padding: 36px 10px 16px 10px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .beneficios {
    padding: 32px 0 16px 0;
  }
  .beneficios-list {
    gap: 16px;
    padding: 0 8px;
  }
  .por-que-boost {
    padding: 32px 0 18px 0;
  }
  .boost-content img {
    width: 99vw;
    height: 140px;
    max-width: 100vw;
  }
  .iframe-container {
    min-height: 350px;
  }
  .iframe-container iframe {
    height: 360px;
  }
}

@media (max-width: 500px) {
  .hero-bg {
    height: 105px;
    max-height: 105px;
  }
  .hero-title {
    font-size: 1.05rem;
  }
  .hero-content {
    padding-top: 18px;
  }
  .beneficio-card {
    padding: 18px 5px 13px 5px;
  }
  .testimonio-card {
    padding: 12px 8px 8px 8px;
    font-size: 0.91rem;
  }
  .footer-content {
    font-size: 0.94rem;
    gap: 10px;
  }
}

/* Scrollbar moderno */
::-webkit-scrollbar {
  width: 9px;
  background: #eaf2fb;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #b3bac7;
  border-radius: 7px;
}

/* Accesibilidad: selección */
::selection {
  background: #fd7200;
  color: #fff;
}

html {
  scroll-padding-top: 100px;
}

/* Extra UX: animaciones de fade-up */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(.57,1.49,.37,.89);
}
[data-animate].show {
  opacity: 1;
  transform: none;
}

/* Helper: transiciones suaves para todos los elementos */
*:not(.cta-main):not(.cta-sec) {
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.16s;
}

.autodiagnostico {
  background: linear-gradient(120deg, #f8fafc 80%, #eaf2fb 100%);
  padding: 72px 0 76px 0;
  text-align: center;
}
.iframe-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 7px 38px 0 rgba(9,30,58,0.14);
  padding: 0 0 20px 0;
  max-width: 880px;
  margin: 0 auto;
}
.iframe-mockup-bar {
  height: 32px;
  background: #f4f6fa;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  gap: 7px;
}
.iframe-mockup-bar span {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-right: 5px;
}
.iframe-mockup-bar .r { background: #fe6060; }
.iframe-mockup-bar .y { background: #ffcb3b; }
.iframe-mockup-bar .g { background: #5ec75d; }

.iframe-mockup iframe {
  width: 100%;
  height: 660px;
  border: none;
  border-radius: 0 0 22px 22px;
  background: #f8fafc;
}
@media (max-width: 900px) {
  .iframe-mockup { max-width: 99vw; }
  .iframe-mockup iframe { height: 420px; }
}

.form-lead {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 26px 0 rgba(9,30,58,0.10);
  max-width: 430px;
  margin: 32px auto 0 auto;
  padding: 34px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadein 1s;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-lead label {
  font-size: 1.05rem;
  color: #19202a;
  font-weight: 600;
}
.form-lead input {
  border: 1.5px solid #cdd3e2;
  border-radius: 7px;
  font-size: 1.08rem;
  padding: 10px 11px;
  outline: none;
  transition: border 0.15s;
}
.form-lead input:focus {
  border-color: #fd7200;
  background: #f8fafc;
}
.confidencialidad {
  margin-top: 10px;
  font-size: 0.96rem;
  color: #71788a;
  background: #eaf2fb;
  border-radius: 8px;
  padding: 7px 12px;
  text-align: left;
}
.form-lead-msg {
  margin-top: 16px;
  font-size: 1.07rem;
  color: #fd7200;
  text-align: center;
  min-height: 28px;
}
@media (max-width: 600px) {
  .form-lead { padding: 17px 7px 14px 7px; }
}
