:root {
  --blue: #061b3a;
  --yellow: #ffc400;
  --green: #25d366;
  --soft: #f5f7fb;
  --text: #10213f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--soft);
  color: var(--text);
}

.landing {
  min-height: 100vh;
  background-image:
    linear-gradient(
      90deg,
      rgba(255,255,255,.78) 0%,
      rgba(255,255,255,.45) 0%,
      rgba(255,255,255,.12) 0%,
      rgba(255,255,255,0) 0%
    ),
    url("../img/hero/hero-telesentinel.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.header {
  height: 110px;
  max-width: 1500px;
  margin: auto;
  padding: 25px 60px 0;   /* antes era 0 60px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 165px;
  width: auto;
  display: block;
  filter:
      brightness(1.25)
      contrast(1.15);
  filter: drop-shadow(0 4px 12px rgba(255,255,255,.30));    
}

.header-actions {
  display: flex;
  gap: 14px;
}

.header-actions a {
  text-decoration: none;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 999px;
  color: white;
}

.whatsapp { background: var(--green); }
.phone { background: var(--blue); }

.hero {
    max-width:1500px;
    margin:auto;
    padding:0 60px 40px;
    display:grid;
    grid-template-columns:58% 42%;
    align-items:start;
    min-height:calc(100vh - 210px);
}
.hero-content{
    padding-top:480px;
}
.hero-content_1{
    padding-top:10px;
}

.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900;
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 4.8vw, 78px);
  line-height: .96;
  letter-spacing: -3px;
  color: #ffffff;
}

.hero p {
  max-width: 600px;
  font-size: 22px;
  line-height: 1.45;
  margin: 28px 0;
  color: #263957;
}

.benefits {
  display: grid;
  gap: 14px;
  font-size: 19px;
  font-weight: 900;
  color: var(--blue);
}

.benefits div::before {
  content: "✓";
  color: var(--yellow);
  margin-right: 10px;
}

/* FORMULARIO OSCURO PREMIUM */
.lead-form {
  background: rgba(3, 18, 43, .90);
  color: white;
  border-radius: 30px;
  padding: 44px;
  max-width: 500px;
  margin-left: auto;
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
}

.lead-form h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 36px;
  line-height: 1.1;
}

.lead-form h2 span {
  color: var(--yellow);
}

.lead-form p {
  margin: 0 0 24px;
  font-size: 17px;
  color: rgba(255,255,255,.88);
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 17px;
  margin-bottom: 16px;
  background: white;
  color: var(--blue);
}

.lead-form input::placeholder {
  color: #8a94a6;
}

.legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: white;
  margin: 6px 0 12px;
  line-height: 1.35;
}
.header-left{
    display:flex;
    flex-direction:column;
    align-items:center;     /* Centra logo y botón */
    width:100%;
    max-width:700px;        /* Ancho del bloque izquierdo */
    margin-top:100px;   /* <-- agrega esta línea */
}


.legal input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.lead-form button {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 19px;
  font-weight: 900;
  color: var(--blue);
  cursor: pointer;
  transition: .25s;
}

.lead-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(255,196,0,.45);
}

.whatsapp-cta {
  margin-top: 14px;
  width: 100%;
  height: 58px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar {
  max-width: 1450px;
  height: 92px;
  margin: 0 auto;
  padding: 0 60px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: center;
}

.trust-bar div {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(6,27,58,.08);
  border-radius: 18px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
}

.trust-bar strong {
  display: block;
  font-size: 24px;
  color: var(--blue);
}

.trust-bar span {
  font-size: 14px;
  color: #51617a;
}



@media (max-width:1200px){

    .logo img{
        height:135px;
    }

}



/* MOBILE */
/* MOBILE */
@media (max-width: 900px) {

  .landing {
    min-height: 100vh;
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 10, 30, .15) 0%,
        rgba(0, 10, 30, .35) 38%,
        rgba(0, 10, 30, .85) 100%
      ),
      url("../img/hero/hero-telesentinel.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .header {
    height: auto;
    padding: 28px 22px 0;
    display: block;
  }

  .header-left{
      display:flex;
      flex-direction:column;
      align-items:center;
      width:100%;
      max-width:700px;
      gap:18px;
  }

  .logo{
      display:flex;
      justify-content:center;
      width:100%;
  }

  .logo img{
      height:95px;           /* Antes 120px */
      width:auto;
      display:block;

      filter:
          brightness(1.25)
          contrast(1.15)
          drop-shadow(0 4px 12px rgba(255,255,255,.30));
  }

  .eyebrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--yellow);
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
    padding: 12px 20px;
    border-radius: 999px;
    margin: 0;
    margin-top:8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 260px 22px 28px;
    min-height: auto;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    color: #ffffff;
    font-size: 46px;
    line-height: .95;
    letter-spacing: -2px;
    text-shadow: 0 4px 18px rgba(0,0,0,.75);
    margin: 0 0 24px;
  }

  .lead-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .lead-form h2 {
    font-size: 30px;
  }

  .trust-bar {
    height: auto;
    padding: 18px 22px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-bar div {
    padding: 16px;
    background: rgba(255,255,255,.86);
  }

  .trust-bar strong {
    font-size: 20px;
  }
}