
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#0f172a;
  color:white;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 50px;
  background:rgba(0,0,0,0.5);
  position:sticky;
  top:0;
}

nav ul{
  display:flex;
  gap:20px;
  list-style:none;
}

nav a{
  color:white;
  text-decoration:none;
}

.hero{
  min-height:100vh;
  background:linear-gradient(rgba(240,255,240,.55),rgba(220,255,230,.45)),
  url('https://images.unsplash.com/photo-1518770660439-4636190af475');
  background-size:cover;
  background-position:center;
}

.hero-content{
  text-align:center;
  padding-top:180px;
  max-width:900px;
  margin:auto;
}

.hero h1{
  font-size:60px;
  margin-bottom:20px;
  color:#22c55e;
}

.hero p{
  font-size:22px;
  margin-bottom:30px;
}

.btn{
  background:#22c55e;
  color:black;
  padding:15px 30px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.section{
  padding:80px 50px;
}

.dark{
  background:#111827;
}

h2{
  margin-bottom:40px;
  font-size:40px;
  color:#22c55e;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:#1e293b;
  padding:25px;
  border-radius:15px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card h3{
  margin-bottom:20px;
  color:#22c55e;
}

.card ul{
  padding-left:20px;
}

.clientes{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.clientes span{
  background:#1e293b;
  padding:15px 20px;
  border-radius:10px;
}

footer{
  text-align:center;
  padding:30px;
  background:black;
}

@media(max-width:768px){
  nav{
    flex-direction:column;
    gap:20px;
  }

  .hero h1{
    font-size:38px;
  }
}


.hero-content h1{
  text-shadow: 2px 2px 10px rgba(0,0,0,0.35);
}

.hero-content p{
  color:#0f172a;
  font-weight:bold;
  text-shadow:1px 1px 8px rgba(255,255,255,0.7);
}

.logo{
  color:#14532d;
  font-weight:bold;
  font-size:24px;
}

nav{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);
}

nav a{
  color:#0f172a;
  font-weight:bold;
}


/* ===== AJUSTE DE VISIBILIDAD Y CONTRASTE ===== */

.hero{
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.45);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h1{
  color:#064e3b !important;
  font-weight:900;
  text-shadow:
    2px 2px 8px rgba(255,255,255,0.9),
    0px 0px 20px rgba(255,255,255,0.7);
}

.hero p{
  color:#111827 !important;
  font-size:24px;
  font-weight:700;
  text-shadow:
    1px 1px 6px rgba(255,255,255,0.95);
}

nav{
  position:relative;
  z-index:5;
  background:rgba(255,255,255,0.92) !important;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.logo{
  color:#065f46 !important;
  font-size:26px;
  font-weight:900;
}

nav a{
  color:#111827 !important;
  font-weight:800;
}

nav a:hover{
  color:#16a34a !important;
}

.btn{
  background:#16a34a;
  color:white;
  box-shadow:0 8px 25px rgba(22,163,74,0.35);
}

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


/* ===== REDES SOCIALES ===== */

.social-floating{
  position:fixed;
  top:40%;
  right:15px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:999;
}

.social-floating a{
  background:#16a34a;
  color:white;
  text-decoration:none;
  padding:12px 16px;
  border-radius:12px;
  font-weight:bold;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:0.3s;
}

.social-floating a:hover{
  transform:translateX(-5px);
  background:#15803d;
}

/* ===== CTA PREMIUM ===== */

.cta-premium{
  position:relative;
  padding:120px 40px;
  background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276');
  background-size:cover;
  background-position:center;
  text-align:center;
}

.cta-overlay{
  max-width:1000px;
  margin:auto;
}

.cta-premium h2{
  color:white;
  font-size:48px;
  margin-bottom:20px;
}

.cta-premium p{
  color:#e5e7eb;
  font-size:22px;
  line-height:1.7;
  margin-bottom:50px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-bottom:50px;
}

.stats div{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  padding:30px;
  border-radius:20px;
}

.stats strong{
  display:block;
  font-size:42px;
  color:#22c55e;
}

.stats span{
  color:white;
  font-size:18px;
}

footer{
  background:#020617;
}

@media(max-width:768px){

  .social-floating{
    bottom:15px;
    top:auto;
    right:10px;
  }

  .social-floating a{
    padding:10px 12px;
    font-size:13px;
  }

  .cta-premium h2{
    font-size:34px;
  }

  .cta-premium p{
    font-size:18px;
  }
}


/* ===== VIDEO HERO ===== */

.hero{
  position:relative;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      rgba(255,255,255,0.65),
      rgba(240,255,245,0.55)
    );
}

.hero-content{
  position:relative;
  z-index:5;
  animation:fadeUp 1.5s ease;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.secondary-btn{
  background:#0f172a;
  color:white;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== CARDS ANIMATION ===== */

.card{
  transition:all 0.4s ease;
}

.card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 20px 40px rgba(34,197,94,0.25);
}

/* ===== CLIENT LOGOS ===== */

.logos-section{
  padding:100px 40px;
  background:#0f172a;
  text-align:center;
}

.logos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
  margin-top:50px;
}

.logo-card{
  background:white;
  color:#0f172a;
  padding:35px;
  border-radius:18px;
  font-weight:900;
  transition:0.3s;
}

.logo-card:hover{
  background:#22c55e;
  color:white;
  transform:translateY(-8px);
}

/* ===== PREMIUM FOOTER ===== */

footer{
  background:
    linear-gradient(
      135deg,
      #020617,
      #052e16
    );
  padding:50px;
  border-top:2px solid #22c55e;
  color:white;
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float{
  position:fixed;
  bottom:25px;
  left:25px;
  background:#22c55e;
  color:white;
  padding:16px 24px;
  border-radius:60px;
  text-decoration:none;
  font-weight:bold;
  z-index:999;
  box-shadow:0 12px 30px rgba(34,197,94,0.35);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}

/* ===== PREMIUM GALLERY STYLE ===== */

#proyectos .card{
  background:
    linear-gradient(
      145deg,
      #1e293b,
      #0f172a
    );
  border:1px solid rgba(34,197,94,0.25);
}

#proyectos .card::before{
  content:"";
  display:block;
  height:180px;
  border-radius:12px;
  margin-bottom:20px;
  background-size:cover;
  background-position:center;
}

#proyectos .card:nth-child(1)::before{
  background-image:url('https://images.unsplash.com/photo-1497436072909-60f360e1d4b1');
}

#proyectos .card:nth-child(2)::before{
  background-image:url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3');
}

#proyectos .card:nth-child(3)::before{
  background-image:url('https://images.unsplash.com/photo-1509391366360-2e959784a276');
}

@media(max-width:768px){

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .whatsapp-float{
    left:15px;
    bottom:15px;
  }
}

.cta-slider{
  position:relative;
  height:600px;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1.2s ease;
}

.slide.active{
  opacity:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:white;
  text-align:center;
}.cotiza-form{

  max-width:900px;
  margin:auto;

  background:white;

  padding:50px;

  border-radius:24px;

}

/* ===== CONTENEDOR GENERAL ===== */

.cotizacion{

  background:#;

  padding:80px 20px;

  min-height:100vh;

}

/* ===== TITULO ===== */

.cotizacion h1{

  text-align:center;

  color:white;

  font-size:48px;

  margin-bottom:50px;

  font-weight:800;

}

/* ===== FORMULARIO ===== */

.cotiza-form{

  max-width:900px;

  margin:auto;

  background:#7ED957;

  padding:60px;

  border-radius:30px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.25);

}

/* ===== GRUPOS ===== */

.input-group{

  margin-bottom:30px;

}

/* ===== LABELS ===== */

.input-group label{

  display:block;

  margin-bottom:10px;

  font-size:18px;

  font-weight:700;

  color:#0f172a;

}

/* ===== INPUTS ===== */

.input-group input,
.input-group textarea{

  width:100%;

  padding:18px 20px;

  border-radius:14px;

  border:1px solid #cbd5e1;

  font-size:16px;

  transition:0.3s ease;

  background:#f8fafc;

}

/* ===== FOCUS ===== */

.input-group input:focus,
.input-group textarea:focus{

  outline:none;

  border-color:#22c55e;

  box-shadow:
    0 0 0 5px rgba(34,197,94,0.15);

  background:white;

}

/* ===== TEXTAREA ===== */

.input-group textarea{

  min-height:220px;

  resize:vertical;

}

/* ===== BOTON ===== */

.cotiza-form button{

  width:100%;

  background:#16a34a;

  color:white;

  border:none;

  padding:20px;

  font-size:20px;

  font-weight:800;

  border-radius:14px;

  cursor:pointer;

  transition:0.3s ease;

  box-shadow:
    0 10px 30px rgba(34,197,94,0.25);

}

/* ===== HOVER ===== */

.cotiza-form button:hover{

  background:#15803d;

  transform:translateY(-3px);

}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  .cotizacion h1{

    font-size:34px;

  }

  .cotiza-form{

    padding:35px;

  }

}
/* ========================= */
/* WEBMAIL PREMIUM */
/* ========================= */

.webmail-login{

  position:relative;

  width:100%;

  min-height:100vh;

  display:flex;

  justify-content:center;

  align-items:center;

  overflow:hidden;

  background:
  url('../img/webmail-bg.jpg')
  center/cover no-repeat;

}

/* OVERLAY */

.webmail-overlay{

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(0,0,0,0.75),
    rgba(0,60,40,0.75)
  );

  backdrop-filter:blur(4px);

}

/* CONTENEDOR */

.login-container{

  position:relative;

  z-index:2;

  width:420px;

  background:
  rgba(255,255,255,0.08);

  border:
  1px solid rgba(255,255,255,0.15);

  backdrop-filter:blur(18px);

  border-radius:28px;

  padding:50px;

  text-align:center;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.35);

}

/* LOGO */

.logo-mail{

  width:140px;

  margin-bottom:20px;

}

/* TITULO */

.login-container h1{

  color:white;

  font-size:38px;

  margin-bottom:10px;

  font-weight:800;

}

/* TEXTO */

.login-container p{

  color:#d1fae5;

  margin-bottom:35px;

  font-size:16px;

}

/* INPUTS */

.input-box{

  margin-bottom:25px;

}

.input-box input{

  width:100%;

  padding:18px 20px;

  border:none;

  border-radius:14px;

  background:
  rgba(255,255,255,0.12);

  color:white;

  font-size:16px;

  outline:none;

  transition:0.3s;

}

/* PLACEHOLDER */

.input-box input::placeholder{

  color:#d1d5db;

}

/* FOCUS */

.input-box input:focus{

  background:
  rgba(255,255,255,0.18);

  box-shadow:
  0 0 0 4px rgba(34,197,94,0.25);

}

/* BOTON */

.login-container button{

  width:100%;

  padding:18px;

  border:none;

  border-radius:14px;

  background:#16a34a;

  color:white;

  font-size:18px;

  font-weight:700;

  cursor:pointer;

  transition:0.3s;

  box-shadow:
  0 10px 30px rgba(34,197,94,0.35);

}

/* HOVER */

.login-container button:hover{

  background:#15803d;

  transform:translateY(-3px);

}

/* FOOTER */

.mail-footer{

  margin-top:30px;

  color:#d1fae5;

  font-size:14px;

}

/* RESPONSIVE */

@media(max-width:500px){

  .login-container{

    width:90%;

    padding:35px;

  }

}
