/* HERO BASE */
.hero-publico {
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 60%, #f5f9fc 100%);
  overflow: hidden;
}

/* BADGE */
.badge-telemetric {
  display: inline-block;
  background: rgba(0, 91, 129, 0.1);
  color: #005b81;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* TITLE */
.hero-publico h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #005b81;
  margin-bottom: 20px;
}

/* TEXT */
.hero-publico p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 30px;
  max-width: 500px;
}

/* CTA */
.btn-telemetric {
  display: inline-block;
  background: #ed7615;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(237, 118, 21, 0.25);
}

.btn-telemetric:hover {
  transform: translateY(-3px);
  background: #d96510;
}

/* IMAGE */
.hero-img {
  max-width: 90%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .hero-publico {
    padding: 80px 0;
    text-align: center;
  }

  .hero-publico h1 {
    font-size: 36px;
  }

  .hero-publico p {
    margin: 0 auto 25px auto;
  }

  .hero-img {
    margin-top: 10px;
    max-width: 100%;
  }

}

@media (max-width: 576px) {

  .hero-publico h1 {
    font-size: 30px;
  }

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

}

/* Problematica */

.section-problemas {
  padding: 100px 0;
  background: #f8fafc;
}

.badge-section {
  display: inline-block;
  
  color: #ed7615;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-problemas h2 {
  font-size: 42px;
  font-weight: 800;
  color: #005b81;
  margin-bottom: 15px;
}

.section-problemas p {
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto;
}

.card-problema {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s ease;
  border-top: 3px solid transparent;
}

.card-problema:hover {
  transform: translateY(-8px);
  border-top: 3px solid #ed7615;
}

.card-problema h4 {
  color: #005b81;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-problema p {
  color: #6b7280;
  margin: 0;
}

@media (max-width: 991px) {
  .section-problemas h2 {
    font-size: 32px;
  }
}

/* Solución integral */
.section-solucion {
  padding: 100px 0;
  background: #ffffff;
}

.badge-solucion {
  display: inline-block;
  
  color: #005b81;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-solucion h2 {
  font-size: 44px;
  font-weight: 800;
  color: #005b81;
  margin-bottom: 15px;
}

.section-solucion p {
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto;
}

.solucion-item {
  background: #f8fafc;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: 0.3s ease;
  border-left: 4px solid transparent;
}

.solucion-item:hover {
  border-left: 4px solid #ed7615;
  transform: translateX(5px);
}

.solucion-item h4 {
  color: #005b81;
  font-weight: 700;
  margin-bottom: 5px;
}

.solucion-item p {
  margin: 0;
  color: #6b7280;
}

.solucion-img {
  max-width: 90%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

@media (max-width: 991px) {
  .section-solucion h2 {
    font-size: 32px;
  }

  .solucion-img {
    margin-top: 30px;
  }
}

/* Beneficios */ 

.section-beneficios-dinamica {
  padding: 110px 0;
  background: linear-gradient(135deg, #ffffff 60%, #f8fafc 100%);
}

.badge-beneficios-alt {
  display: inline-block;
  
  color: #005b81;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-beneficios-dinamica h2 {
  font-size: 44px;
  font-weight: 800;
  color: #005b81;
  margin-bottom: 20px;
}

.section-beneficios-dinamica p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.6;
}

.highlight-box {
  margin-top: 25px;
  padding: 20px;
  border-left: 4px solid #ed7615;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.beneficio-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-left: 3px solid transparent;
}

.stack-item:hover {
  transform: translateX(6px);
  border-left: 3px solid #ed7615;
}

.stack-item span {
  font-size: 26px;
}

.stack-item h4 {
  margin: 0;
  color: #005b81;
  font-weight: 700;
}

.stack-item p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 991px) {

  .section-beneficios-dinamica h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-beneficios-dinamica p {
    text-align: center;
  }

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

}

/* Centro de control */
.section-monitoring {
  padding: 110px 0;
  background: #ffffff;
}

.badge-monitoring {
  display: inline-block;
  /*background: rgba(237, 118, 21, 0.1);*/
  color: #ed7615;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-monitoring h2 {
  font-size: 44px;
  font-weight: 800;
  color: #005b81;
  margin-bottom: 20px;
}

.section-monitoring p {
  color: #4b5563;
  font-size: 17px;
  margin-bottom: 20px;
}

.monitoring-list {
  list-style: none;
  padding: 0;
}

.monitoring-list li {
  margin-bottom: 12px;
  color: #374151;
  font-weight: 500;
}

/* DASHBOARD WRAPPER */
.dashboard-wrapper {
  position: relative;
  text-align: center;
}

.dashboard-img {
  width: 80%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* KPI FLOATING */
.kpi {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 120px;
}

.kpi h4 {
  margin: 0;
  color: #005b81;
  font-weight: 800;
}

.kpi p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

/* POSITIONS */
.kpi-top {
  top: 10%;
  left: -10px;
}

.kpi-right {
  top: 40%;
  right: -10px;
}

.kpi-bottom {
  bottom: 10%;
  left: 20%;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .section-monitoring h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-monitoring p {
    text-align: center;
  }

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

  .kpi {
    display: none; /* limpia mobile */
  }

}

/* Seguridad operativa */

.section-security {
  padding: 110px 0;
  background: linear-gradient(135deg, #f8fafc 60%, #ffffff 100%);
}

.badge-security {
  display: inline-block;
  
  color: #ed7615;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-security h2 {
  font-size: 44px;
  font-weight: 800;
  color: #005b81;
  margin-bottom: 15px;
}

.section-security p {
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto;
}

/* TIMELINE */
.security-timeline {
  margin-top: 60px;
  position: relative;
  padding-left: 40px;
}

.security-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #005b81;
  opacity: 0.2;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.dot {
  width: 14px;
  height: 14px;
  background: #ed7615;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 5px;
  box-shadow: 0 0 0 6px rgba(237, 118, 21, 0.15);
}

.content h4 {
  color: #005b81;
  font-weight: 700;
  margin-bottom: 6px;
}

.content p {
  color: #6b7280;
  margin: 0;
}

/* HOVER EFFECT */
.timeline-item:hover .dot {
  transform: scale(1.2);
  transition: 0.3s ease;
}

.timeline-item:hover h4 {
  color: #ed7615;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .section-security h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-security p {
    text-align: center;
  }

  .security-timeline {
    padding-left: 25px;
  }

}

/* Resultados realies */
.section-casos {
  padding: 110px 0;
  background: #ffffff;
}

/* SEPARADOR ENTRE SECCIONES */
.section-divider {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(0, 91, 129, 0.2);
}

.section-divider::before {
  left: 0;
}

.section-divider::after {
  right: 0;
}

.section-divider span {
  display: inline-block;
  padding: 10px 20px;
  background: #f8fafc;
  color: #005b81;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 30px;
  font-size: 12px;
}

/* BADGE */
.badge-casos {
  display: inline-block;
  /*background: rgba(237, 118, 21, 0.1);*/
  color: #ed7615;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* TITLE */
.section-casos h2 {
  font-size: 44px;
  font-weight: 800;
  color: #005b81;
  margin-bottom: 15px;
}

.section-casos p {
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto;
}

/* WRAPPER */
.cases-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

/* PANEL STYLE */
.case-panel {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 35px;
  border-radius: 18px;
  background: #f8fafc;
  transition: 0.3s ease;
  border-left: 4px solid transparent;
}

.case-panel:hover {
  transform: translateY(-5px);
  border-left: 4px solid #ed7615;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.case-panel.alt {
  background: #ffffff;
}

/* NUMBER */
.case-number {
  font-size: 28px;
  font-weight: 800;
  color: #ed7615;
  min-width: 60px;
}

/* CONTENT */
.case-content h3 {
  color: #005b81;
  font-weight: 700;
  margin-bottom: 10px;
}

.case-content p {
  margin: 0 0 20px 0;
  color: #6b7280;
}

/* METRICS */
.case-metrics {
  display: flex;
  gap: 40px;
}

.case-metrics h4 {
  margin: 0;
  color: #005b81;
  font-weight: 800;
}

.case-metrics span {
  font-size: 12px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .section-casos h2 {
    font-size: 32px;
    text-align: center;
  }

  .case-panel {
    flex-direction: column;
  }

  .case-metrics {
    flex-direction: column;
    gap: 10px;
  }

}

/* Aplicaciones */
.section-usecases {
  padding: 110px 0;
  background: linear-gradient(135deg, #f8fafc 60%, #ffffff 100%);
}

.badge-usecases {
  display: inline-block;
  background: rgba(0, 91, 129, 0.1);
  color: #005b81;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-usecases h2 {
  font-size: 44px;
  font-weight: 800;
  color: #005b81;
}

.section-usecases p {
  color: #4b5563;
}

/* MENU */
.usecase-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usecase-tab {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.usecase-tab:hover {
  border-color: #ed7615;
  transform: translateX(5px);
}

.usecase-tab.active {
  background: #005b81;
  color: #fff;
  border-color: #005b81;
}

/* CONTENT */
.usecase-content {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.usecase-content.active {
  display: block;
}

.usecase-content h3 {
  color: #005b81;
  font-weight: 800;
}

.usecase-content ul {
  margin-top: 15px;
}

.usecase-content li {
  margin-bottom: 10px;
  color: #374151;
}

/* Diagnostico */
.section-final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #005b81 0%, #003b52 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* BADGE */
.badge-final {
  display: inline-block;
  background: rgba(237, 118, 21, 0.15);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* TEXT */
.section-final-cta h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.section-final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}

/* HIGHLIGHT */
.cta-highlight {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid #ed7615;
  border-radius: 14px;
}

.cta-highlight h4 {
  margin-bottom: 10px;
}

.cta-highlight ul {
  padding-left: 18px;
}

.cta-highlight li {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

/* FORM */
.cta-form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  color: #111827;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.cta-form-box h3 {
  color: #005b81;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-form-box input,
.cta-form-box select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
}

.cta-form-box input:focus,
.cta-form-box select:focus {
  border-color: #ed7615;
}

/* BUTTON */
.cta-form-box button {
  width: 100%;
  padding: 14px;
  background: #ed7615;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cta-form-box button:hover {
  background: #d96510;
  transform: translateY(-2px);
}

.form-note {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .section-final-cta h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-final-cta p {
    text-align: center;
  }

}

/* Cuenta cocos */

.section-cuenta-cocos{
    padding:100px 0;
    background:#f8fafc;
}

.badge-counter{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    
    color:#ed7615;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-cuenta-cocos h2{
    color:#005b81;
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:20px;
}

.section-cuenta-cocos p{
    color:#6b7280;
    line-height:1.8;
}

.contador-img img{
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.counter-benefits{
    margin-top:35px;
}

.benefit-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.benefit-item span{
    font-size:2rem;
}

.benefit-item h5{
    color:#005b81;
    font-weight:700;
    margin-bottom:5px;
}

.benefit-item p{
    margin:0;
}

@media(max-width:991px){

    .section-cuenta-cocos{
        text-align:center;
    }

    .benefit-item{
        flex-direction:column;
        align-items:center;
    }

    .section-cuenta-cocos h2{
        font-size:2rem;
    }

}