/* ======================================================
   VARIABLES GLOBALES
====================================================== */
:root {
  --petroleo: #004b5f;
  --cian: #00bcd4;
  --cian-vibrante: #40e0d0;
  --cian-light: #e0f7fa;
  --dark-footer: #0a2533;
  --text-gray: #4a4a4a;
  --white: #ffffff;
}

/* ======================================================
   RESET / CONFIGURACIÓN BASE
====================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ======================================================
   NAVBAR
====================================================== */
.header {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:20;
  padding:25px 0;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:96%;
  margin:0 auto;
}

.logo { height:100px; }

.menu {
  display:flex;
  gap:40px;
  list-style:none;
}

.menu a {
  color:var(--white);
  text-decoration:none;
  font-weight:500;
}

.btn-nav {
  background:var(--cian-vibrante);
  color:#fff;
  padding:12px 30px;
  border-radius:50px;
}

/* ======================================================
   HERO
====================================================== */
.hero {
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
}

.hero-video {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-text {
  position:relative;
  z-index:2;
  max-width:800px;
}

.hero h1 {
  font-size:55px;
  margin-bottom:20px;
}

.hero p {
  font-size:20px;
  margin-bottom:30px;
}

.btn-primary {
  background:var(--cian-vibrante);
  color:#fff;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
}

/* ======================================================
   TITULOS
====================================================== */

.title-line{
  font-size:32px;
  font-weight:700;
  color:var(--petroleo);
  text-align:center;
  margin-bottom:20px;
  text-transform:uppercase;
}

.title-line::after{
  content:"";
  display:block;
  width:60px;
  height:4px;
  background:var(--cian-vibrante);
  margin:12px auto 0;
  border-radius:2px;
}

.intro-text{
  font-size:18px;
  color:var(--text-gray);
  max-width:800px;
  margin:0 auto 40px;
  text-align:center;
  line-height:1.7;
}

/* ======================================================
   SERVICIOS (CORREGIDO Y COMPACTO)
====================================================== */

/* ======================================================
   SERVICIOS (DISEÑO PROFESIONAL CENTRADO)
====================================================== */

.nuestros-servicios{
  padding:80px 5%;
}

/* CONTENEDOR */

.services-circle{
  position:relative;
  width:700px;
  height:420px;
  margin:60px auto;
}

/* SERVICIOS */

.service{
  position:absolute;
  width:200px;
  text-align:center;
}

/* TEXTO */

.service p{
  margin-top:15px;
  font-size:18px;
  line-height:1.5;
  color:var(--text-gray);
}

/* CIRCULO */

.service-icon{
  width:120px;
  height:120px;
  border-radius:50%;
  background:var(--petroleo);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  transition:0.3s;
}

/* HOVER PROFESIONAL */

.service-icon:hover{
  transform:scale(1.08);
  background:var(--cian);
}

/* ICONO */

.service-icon i{
  font-size:40px;
  color:white;
}

/* POSICIONES */

.service-top-left{
  top:0;
  left:0;
}

.service-top-right{
  top:0;
  right:0;
}

.service-bottom-left{
  bottom:0;
  left:0;
}

.service-bottom-right{
  bottom:0;
  right:0;
}

/* CENTRO */

.center-service{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  text-align:center;
}

/* ICONO CENTRAL */

.center-service i{
  font-size:110px;
  color:var(--cian);
}

/* TEXTO CENTRAL */

.center-service h3{
  margin-top:10px;
  font-size:22px;
  color:var(--text-gray);
}

/* ======================================================
   SECCIÓN BENEFICIOS
====================================================== */

/* ======================================================
   BENEFICIOS (VERSIÓN PRO)
====================================================== */

.beneficios-section{
  display:flex;
  min-height:520px;
  font-family: 'Helvetica Neue', sans-serif;
}

/* IZQUIERDA */
.beneficios-left{
  flex:1;
  background:#f5f7fa;
  padding:80px 10%;
  display:flex;
  align-items:center;
}

/* LISTA */
.beneficios-list{
  list-style:none;
  width:100%;
}

.beneficios-list li{
  position:relative;
  padding-left:55px;
  margin-bottom:22px;
  font-size:18px;
  line-height:1.6;
  color:var(--text-gray);
}

/* ICONO CHECK PROFESIONAL */
.beneficios-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:2px;

  width:25px;
  height:25px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--petroleo);
  color:#fff;
  border-radius:50%;
  font-size:16px;
  font-weight:bold;
}

/* DERECHA */
.beneficios-right{
  flex:1;
  background:var(--petroleo);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 10%;
  color:#fff;
}

/* CONTENIDO */
.right-content{
  max-width:450px;
}

/* TITULO */
.right-content h2{
  font-size:42px;
  letter-spacing:2px;
  margin-bottom:25px;
}

/* SUBTITULO */
.right-content h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:20px;
  line-height:1.5;
}

/* TEXTO */
.right-content p{
  font-size:17px;
  line-height:1.7;
  opacity:0.9;
}
/* ======================================================
   CRECIMIENTO
====================================================== */

.crecimiento{
  padding:60px 5%;
  text-align:center;
}

.features-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:20px;
}

/* ======================================================
   EQUIPO / PYMES
====================================================== */

.equipo-pymes{
  display:flex;
  padding:60px 5%;
}

.equipo-left{
  flex:1;
  padding-right:40px;
}

.pymes-right{
  flex:1;
}

.pymes-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:20px;
}

.pyme-icon{
  width:100px;
  height:100px;
  border:1px solid #ddd;
  border-radius:50%;
  margin:0 auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:var(--petroleo);
}

/* ======================================================
   CLIENTES
====================================================== */

.logos-section{
  padding:60px 5%;
  text-align:center;
}

.logos-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.logo-box{
  background:#f0f4f7;
  padding:20px 40px;
  border-radius:8px;
  font-weight:600;
  color:var(--petroleo);
}

/* ======================================================
   FORMULARIO
====================================================== */

.contacto-form{
  background:#fff;
  padding:60px 15%;
  text-align:center;
}

.wix-style-form{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:40px;
}

.form-row{
  display:flex;
  gap:15px;
}

.wix-style-form input,
.wix-style-form textarea{
  padding:15px;
  border:none;
  background:var(--cian-light);
  border-radius:5px;
  width:100%;
}

.wix-style-form button{
  background:var(--cian);
  color:#fff;
  border:none;
  padding:15px 60px;
  border-radius:30px;
}

/* ======================================================
   FOOTER
====================================================== */

.footer-dark{
  background:var(--dark-footer);
  color:#fff;
  padding:40px 10%;
}

.footer-main{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

.f-col h4{
  margin-bottom:15px;
  color:var(--cian-vibrante);
}

.f-col ul{
  list-style:none;
  padding:0;
}

.f-col ul li{
  margin-bottom:10px;
}

/* LISTA CON PUNTOS PERSONALIZADOS */
.custom-list {
  list-style: none; /* Quita los puntos por defecto */
  padding-left: 35px; /* Espacio para el icono */
}

.custom-list li {
  position: relative;
  padding-left: 40px; /* espacio para la imagen */
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0; /* izquierda dentro del padding */
  top: 50%; /* centro vertical */
  transform: translateY(-50%);
  width: 45px;
  height: 70px;
  background-image: url('../img/logo jlc.jpg'); /* ruta correcta desde el CSS */
  background-size: contain;
  background-repeat: no-repeat;
}