/* =========================================
   TECNOLOGIASIE — PREMIUM MODERN UI
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{

  --bg:#0b1120;
  --bg2:#111827;

  --card:rgba(17,24,39,.75);

  --primary:#3b82f6;
  --primary2:#60a5fa;

  --text:#f8fafc;
  --textSoft:#cbd5e1;
  --muted:#94a3b8;

  --border:rgba(255,255,255,.08);

  --shadow:
  0 10px 30px rgba(0,0,0,.25);

  --shadowHover:
  0 25px 50px rgba(0,0,0,.45);

  --radius:24px;

  --transition:.35s cubic-bezier(.4,0,.2,1);
}

/* ========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Inter',sans-serif;

  background:
  linear-gradient(
    to bottom,
    #050816 0%,
    #0b1120 45%,
    #0f172a 100%
  );

  color:var(--text);

  overflow-x:hidden;

  line-height:1.7;
}

/* =========================================
   GLOBAL
========================================= */

.container{
  width:min(1200px,92%);
  margin:auto;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

section{
  position:relative;
  z-index:2;
}

/* Padding para columnas de features */
.pdlf{
  padding:20px !important;
}

.row .pdlf{
  margin-bottom:30px;
}

/* =========================================
   HEADER
========================================= */

header{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  z-index:9999;

  background:rgb(255, 255, 255);

  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(15,23,42,.06);
}

/* =========================================
   TOPBAR
========================================= */

.topbar{

  max-width:1200px;

  width: 100%;

  margin:auto;

  height:74px;

  padding:0 28px;

  display:flex;

  align-items:center;

  justify-content:space-between;
}

/* =========================================
   BRAND
========================================= */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.brand-text h1{

  font-size:18px;

  font-weight:700;

  line-height:1;

  letter-spacing:-0.3px;

  color:#0f172a;
}

.brand-text p{

  color:rgba(15,23,42,.50);

  font-size:10px;

  margin-top:4px;

  letter-spacing:.8px;

  text-transform:uppercase;
}

/* =========================================
   NAVBAR PREMIUM
========================================= */
nav{

  display:flex;
  align-items:center;
  gap:6px;
}

/* LINKS */
nav a,
.nav-link{

  display:flex;
  align-items:center;
  justify-content:center;

  height:42px;

  padding:0 18px;

  border-radius:10px;

  color:#1e293b;

  font-size:14px;
  font-weight:600;

  transition:.25s ease;

  background:transparent;

  border:none;
}

/* HOVER */

nav a:hover,
.nav-link:hover{

  color:#111827;

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

/* ACTIVE */

nav a.active{

  background:linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:#fff;

  box-shadow:
  0 8px 20px rgba(37,99,235,.35);
}

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

.admin-link{

  background:#2563eb !important;

  color:#fff !important;

  padding:0 22px;

  border-radius:10px;

  box-shadow:
  0 10px 24px rgba(37,99,235,.20);
}

.admin-link:hover{

  background:rgba(59,130,246,.24);

  transform:translateY(-2px);

  box-shadow:
  0 10px 24px rgba(59,130,246,.25);
}

/* =========================================
   DROPDOWN
========================================= */

.nav-dropdown{

  position:relative;

  display:flex;
  align-items:center;
}

/* MENU */

.dropdown-content{

  position:absolute;

  top:calc(100% + 8px);

  left:0;

  min-width:270px;

  padding:10px;

  border-radius:12px;

  background:#111827;

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
  0 20px 40px rgba(0,0,0,.35);

  opacity:0;
  visibility:hidden;

  transform:translateY(10px);

  transition:all .25s ease;

  z-index:9999;
}

/* NO SE CIERRA */

.nav-dropdown:hover .dropdown-content,
.dropdown-content:hover{

  opacity:1;
  visibility:visible;

  transform:translateY(0);
}

/* LINKS DEL DROPDOWN */

.dropdown-content a{

  width:100%;

  display:flex;
  align-items:center;

  justify-content:flex-start;

  padding:14px 16px;

  border-radius:14px;

  color:var(--textSoft);

  background:transparent;

  transition:all .25s ease;
}

/* HOVER DROPDOWN */

.dropdown-content a:hover{

  background:rgba(255,255,255,.08);

  color:#fff;

  transform:translateX(4px);
}

/* =========================================
   BUTTON
========================================= */

.btn-cotizar,
.btn-ver-mas{

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:52px;

  padding:0 26px;

  border-radius:14px;

  background:#2563eb;

  color:#fff;

  font-size:14px;
  font-weight:700;

  transition:.3s ease;

  border:none;
}

.btn-cotizar:hover,
.btn-ver-mas:hover{

  transform:translateY(-2px);

  background:#3b82f6;
}
/* =========================================
   HERO
========================================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px 60px;
  overflow:hidden;
}

.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:translate(-50%,-50%);
    z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(2,6,23,.80),
    rgba(15,23,42,.60),
    rgba(37,99,235,.25)
  );

  z-index:1;
}

.hero-content{

  position:relative;

  z-index:2;

  max-width:950px;

  margin:auto;
}

.hero-badge{

  display:inline-flex;

  padding:10px 18px;

  border-radius:999px;

  background:
  rgba(59,130,246,.12);

  border:
  1px solid rgba(59,130,246,.20);

  color:#93c5fd;

  font-size:13px;
  font-weight:700;

  margin-bottom:24px;
}

.hero h2{

  font-size:64px;
  
  max-width:900px;
  
  margin:auto auto 24px;

  line-height: 1.1;

  letter-spacing: -3px;
}

.hero h2 span{

  color:#60a5fa;

  -webkit-text-fill-color:unset;

  background:none;
}

.hero p{

  max-width:680px;

  margin:auto;

  color:var(--textSoft);

  font-size:18px;

  margin-bottom:36px;
}

.hero-btns{

  display:flex;

  justify-content:center;

  gap:16px;

  flex-wrap:wrap;
}

/* =========================================
   SECTION TITLES
========================================= */

.witr_section_title{

  text-align:center;

  margin-bottom:60px;
}

.witr_section_title h2,
.witr_section_title h3{

  font-size:42px;

  margin-bottom:18px;

  letter-spacing:-2px;
}

.witr_section_title p{

  color:var(--textSoft);

  max-width:750px;

  text-align:center;

  margin:auto;
}

/* =========================================
   BADGE
========================================= */

.badge{

  display:inline-flex;

  padding:10px 18px;

  border-radius:999px;

  margin-bottom:24px;

  background:
  rgba(59,130,246,.10);

  border:
  1px solid rgba(59,130,246,.18);

  color:#93c5fd;

  font-size:13px;
  font-weight:700;
}

/* =========================================
   SERVICES
========================================= */
/* =========================================
   SERVICES CARDS — REDISEÑO
========================================= */
.about-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8eaf0;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    margin-bottom: 40px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.serv-card {
  position: relative;
  background: rgba(15, 27, 58, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 20px;
  overflow: hidden;
  transition: .4s cubic-bezier(.4,0,.2,1);
  box-shadow:
    0 4px 24px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* línea de acento azul arriba */
.serv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}

/* brillo esquina superior derecha en hover */
.serv-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.serv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,.45);
  box-shadow:
    0 20px 50px rgba(0,0,0,.5),
    0 0 0 1px rgba(59,130,246,.2),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.serv-card:hover::before { opacity: 1; }
.serv-card:hover::after  { opacity: 1; }

/* imagen con overlay degradado abajo */
.serv-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.serv-card:hover img {
  transform: scale(1.04);
}

/* degradado sobre la imagen */
.serv-card .img-wrap {
  position: relative;
  overflow: hidden;
}

.serv-card .img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(15,27,58,1), transparent);
  pointer-events: none;
}

.serv-content {
  padding: 24px 28px 28px;
}

.serv-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.serv-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: #60a5fa;
  font-size: 13px;
  font-weight: 600;
  transition: .3s ease;
}

.btn-ver-mas:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  transform: translateX(4px);
}
/* =========================================
   FEATURES
========================================= */

.em-service2{

  background:#ffffff;

  border:2px solid rgba(59,130,246,.15);

  border-radius:28px;

  padding:35px 32px;

  height:100%;

  transition:var(--transition);

  box-shadow:
  0 15px 40px rgba(15,23,42,.12);

  display:flex;

  flex-direction:column;

  justify-content:flex-start;

  align-items:flex-start;

  text-align:left;

  min-height:auto;
}

.em-service2:hover{

  transform:
  translateY(-12px) scale(1.02);

  box-shadow:
  0 30px 60px rgba(59,130,246,.15);

  border-color:rgba(59,130,246,.3);

  background:linear-gradient(135deg,
  #ffffff 0%,
  rgba(59,130,246,.02) 100%);
}

.em-service-icon img{

  width:56px;

  margin-bottom:16px;

  transition:var(--transition);

  filter:drop-shadow(0 8px 16px rgba(59,130,246,.15));
}

.em-service2:hover .em-service-icon img{

  transform:scale(1.1) translateY(-2px);
}

.em-service-title h3{

  color:#2563eb;

  font-size:24px;

  font-weight:800;

  margin-bottom:16px;

  letter-spacing:-0.3px;

  margin-top:0;
}

.em-service-desc p{
  
  color:#475569;
  
  font-size:14px;

  line-height:1.7;

  font-weight:500;

  text-align:justify;

  margin:0;
}

/* =========================================
   UBICACION
========================================= */

.ubicacion-card{

  display:grid;

  grid-template-columns:
  1fr 1.1fr;

  gap:30px;

  background:var(--card);

  border:
  1px solid var(--border);

  border-radius:28px;

  padding:30px;

  backdrop-filter:blur(18px);

  box-shadow:var(--shadow);
}

.ubicacion-info{

  display:flex;
  flex-direction:column;
  gap:26px;
}

.ubicacion-item{

  display:flex;
  gap:16px;
}

.ubicacion-icon{

  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:
  rgba(59,130,246,.12);

  font-size:22px;

  flex-shrink:0;
}

.ubicacion-item strong{

  display:block;

  margin-bottom:4px;

  font-size:16px;
}

.ubicacion-item p{

  color:var(--textSoft);

  font-size:14px;
}

.ubicacion-mapa{

  overflow:hidden;

  border-radius:22px;

  min-height:350px;
}

/* =========================================
   CLIENTES
========================================= */

.solutech_testimonial_bg_area{
  padding-top:40px;
}

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


.witrfm_area{

    background:#0f172a;

    color:#fff;

    margin-top:120px;
}

.footer-middle{

    padding:90px 0 60px;
}

.footer-middle .container{

    width:min(1200px,92%);

    margin:auto;
}

.footer-middle .row{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:50px;
}

.footer-box h2{

    font-size:22px;

    margin-bottom:26px;

    position:relative;
}

.footer-box h2::after{

    content:'';

    width:55px;
    height:3px;

    background:#2563eb;

    position:absolute;

    left:0;
    bottom:-10px;

    border-radius:20px;
}

.footer-box p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    font-size:15px;
}

.social-icons{

    display:flex;

    gap:14px;

    margin-top:24px;
}

.social-icons a{

    width:46px;
    height:46px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;
}

.social-icons a:hover{

    background:#2563eb;

    transform:translateY(-4px);
}

.footer-links{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-links a{

    color:rgba(255,255,255,.72);

    transition:.3s;
}

.footer-links a:hover{

    color:#60a5fa;

    padding-left:6px;
}

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.footer-item{

    display:flex;

    gap:14px;

    align-items:flex-start;
}

.footer-item i{

    color:#60a5fa;

    margin-top:4px;
}

.footer-item span{

    color:rgba(255,255,255,.72);

    line-height:1.7;

    font-size:15px;
}

.footer-hours{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.hour-row{

    display:flex;

    justify-content:space-between;

    border-bottom:
    1px solid rgba(255,255,255,.08);

    padding-bottom:10px;

    color:rgba(255,255,255,.72);

    font-size:15px;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.08);

    padding:24px 20px;

    text-align:center;
}

.copy-right-text p{

    color:rgba(255,255,255,.6);

    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .footer-middle .row{

        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-middle .row{

        grid-template-columns:1fr;
    }

    .footer-box{

        text-align:center;
    }

    .footer-box h2::after{

        left:50%;

        transform:translateX(-50%);
    }

    .social-icons{

        justify-content:center;
    }

    .footer-item{

        justify-content:center;
    }

    .hour-row{

        flex-direction:column;

        gap:6px;
        

        text-align:center;
    }
}

@media(max-width:900px){

  .serv-card{

    grid-template-columns:1fr;

    padding:34px 28px;
  }

  .serv-card ul{

    grid-template-columns:1fr;
  }

  .serv-price{

    width:100%;
  }

  .serv-card h4{

    font-size:28px;
  }
}

/* =====================================
   CLIENTES FULL WHITE SECTION
===================================== */

/* SECCION TITULO */
.solutech_testimonial_bg_area{
    background: transparent !important;
    width:100vw !important;
    margin:80px 0 0 0 !important;
    padding:40px 0 40px !important;
    position:relative;
    left:50%;
    right:50%;
    margin-left:-50vw !important;
    margin-right:-50vw !important;
}

/* SECCION LOGOS */
.witr_brand_area{

    background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.02),
      rgba(255,255,255,.03)
    ) !important;
    width:100vw !important;
    margin:0 !important;
    padding:0 0 10px !important;

    position:relative;
    left:50%;
    right:50%;
    margin-left:-50vw !important;
    margin-right:-50vw !important;
}

/* CONTAINER */
.witr_brand_area .container-fluid,
.solutech_testimonial_bg_area .container-fluid{
    width:100% !important;
    max-width:100% !important;

    padding-left:0 !important;
    padding-right:0 !important;

    margin:0 !important;
}

/* ROWS */
.witr_brand_area .row,
.solutech_testimonial_bg_area .row{
    margin:0 !important;
    justify-content:center;
}

.witr_brand_area .col-lg-12,
.solutech_testimonial_bg_area .col-lg-12{
    text-align: justify;
    text-align-last: center;
}
/* AREA COMPLETA */
.imagess_area,
.wittr_car_top_left,
.brand_bg,
.brand_imagess_active,
.witr_car_overlay{
    width:100% !important;
    max-width:100% !important;

    background:transparent !important;

    margin:0 !important;
    padding:0px 0 !important;

    border:none !important;
    box-shadow:none !important;
}

/* TITULO */
.solutech_testimonial_bg_area h3{
    color:#ffffff !important;
    font-size:48px;
    font-weight:800;
    letter-spacing:-1px;
}

/* LOGOS */

/* CONTENEDOR CARRUSEL */
/* AREA BLANCA */
.brand_imagess_active{

    width:100%;

    overflow:hidden;

    background:#fff !important;

    padding:30px 0;
}

/* PISTA */
.brand-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:scrollBrands 35s linear infinite;
}

/* ITEMS */
.slide_items{

    flex:none;

    margin:0 40px;
}

/* LOGOS */
.slide_items img{

    height:60px;

    width:auto;

    object-fit:contain;

    display:block;

    transition:.3s ease;
}

/* HOVER */
.slide_items img:hover{

    transform:scale(1.08);
}

/* ANIMACION */
@keyframes scrollBrands{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section{

  background:#ffffff;

  padding:60px 0 100px;

  position:relative;

  z-index:2;

  border-top-left-radius:50px;

  border-top-right-radius:50px;

  border-bottom-left-radius:50px;

  border-bottom-right-radius:50px;

  margin-top:-40px;

  margin-bottom:80px;
}

/* TITULOS */

.about-section h2{

  color:#0f172a;
}

/* TEXTO */

.about-section p{

  color:#475569 !important;
}

/* BADGE */

.about-section .badge{

  background:rgba(37,99,235,.10);

  color:#2563eb;
}

/* =========================================
   TEXTOS SECCION BLANCA
========================================= */

.about-section h2,
.about-section h3,
.about-section h4{

  color:#0f172a !important;
}

.about-section p{

  color:#475569 !important;

  
}

.features-section{

  background:#ffffff;

  padding-top:60px;

  padding-bottom:100px;

  border-bottom-left-radius:50px;

  border-bottom-right-radius:50px;

  margin-top:0;
}

.features-section .container{
  width:100% !important;
  max-width:1400px;
  padding:0 40px;
  text-align:justify;
   justify-content:center;
}

.features-section .row{
  display:flex;
  gap:30px;
  text-align:justify;
  justify-content:center;
  align-items:stretch;
}

.features-section .col-lg-4{
  flex:0 0 calc(33.333% - 20px);
  max-width:calc(33.333% - 20px);
  padding:0 !important;
  min-width:280px;
}

/* =========================================
   FOOTER TECNOLOGIASIE
========================================= */

.witrfm_area{

    background:#0f172a;

    color:#fff;

    margin-top:120px;
}

.footer-middle{

    padding:90px 0 60px;
}

.footer-middle .container{

    width:min(1200px,92%);

    margin:auto;
}

.footer-middle .row{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:50px;
}

.footer-box h2{

    font-size:22px;

    margin-bottom:26px;

    position:relative;
}

.footer-box h2::after{

    content:'';

    width:55px;
    height:3px;

    background:#2563eb;

    position:absolute;

    left:0;
    bottom:-10px;

    border-radius:20px;
}

.footer-box p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    font-size:15px;
}

.social-icons{

    display:flex;

    gap:14px;

    margin-top:24px;
}

.social-icons a{

    width:46px;
    height:46px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;
}

.social-icons a:hover{

    background:#2563eb;

    transform:translateY(-4px);
}

.footer-links{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-links a{

    color:rgba(255,255,255,.72);

    transition:.3s;
}

.footer-links a:hover{

    color:#60a5fa;

    padding-left:6px;
}

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.footer-item{

    display:flex;

    gap:14px;

    align-items:flex-start;
}

.footer-item i{

    color:#60a5fa;

    margin-top:4px;
}

.footer-item span{

    color:rgba(255,255,255,.72);

    line-height:1.7;

    font-size:15px;
}

.footer-hours{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.hour-row{

    display:flex;

    justify-content:space-between;

    border-bottom:
    1px solid rgba(255,255,255,.08);

    padding-bottom:10px;

    color:rgba(255,255,255,.72);

    font-size:15px;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.08);

    padding:24px 20px;

    text-align:center;
}

.copy-right-text p{

    color:rgba(255,255,255,.6);

    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .footer-middle{
        padding: 70px 0 40px;
    }

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

    .footer-box h2::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons{
        justify-content: center;
    }

    .footer-item{
        justify-content: center;
        text-align: left;
    }

    .hour-row{
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

}