/* Reset y General */
:root {
  /* Paleta Uptech global */
  --raisin-black: #181a2aff;
  --mint: #25bf94ff;
  --antiflash-white: #edf2f4ff;
  --azure: #007bffff;
  --federal-blue: #000557ff;
  --azulps: #003562;
    --azulpsl1: #00356223; /* Azul oscuro */
        --azulpsl2: #003462b2; /* Azul claro */
  --naranjaps: #f07e0d;
  --naranjapsl1: #f07e0d23; /* Naranja oscuro */
    --naranjapsl2: #f07e0db2; 
  --verdeps: #00a186;
    --verdepsl1: #00a18623; /* Verde oscuro */
        --verdepsl2: #00a186b2; /* Verde claro */
  
  /* Espaciados */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif; /* Tipografía moderna */
    background: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #007bff; /* Azul característico */
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

#subheader {
    padding: 200px 0 250px;
    position: relative;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
}

    #subheader .subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        font-weight: 400;
        color: #ddd;
    }

    #subheader h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.crumb {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #bbb;
}

    .crumb li a {
        color: #25BF94;
        text-decoration: none;
        font-weight: 600;
    }

    .crumb li.active {
        color: #fff;
        
    }

.glass {
    background-color: rgba(255,255,255, 0.05);
    padding: 1em;
    border-radius: 0.5em;
}
.lead {
    font-size: 1.2rem;
    color: rgba(255, 240, 155, 0.85);
    max-width: 1000px;
    margin: 2em auto 2em auto;
}
.ps-bg-dark-1 {
    background: #181a2a !important;
}

.ps-bg-light-1 {
    background: #181a2a !important;
}

.ps-text-light {
    color: #fff !important;
}

.ps-subtitle-s2 {
    font-size: 1.1rem;
    color: #43cea2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ps-h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.ps-service-box {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(30,115,232,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .ps-service-box:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 8px 24px rgba(30,115,232,0.13);
    }

.ps-w-80px {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
}

.ps-mb20 {
    margin-bottom: 20px !important;
}

.ps-spacer-20 {
    height: 20px;
    width: 100%;
    display: block;
}

.ps-btn-line {
    display: inline-block;
    color: #43cea2;
    border: 2px solid #43cea2;
    padding: 0.7em 2em;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

    .ps-btn-line:hover {
        background: #43cea2;
        color: #181a2a;
    }

.ps-hr-s2 {
    border: none;
    border-top: 2px solid #43cea2;
    width: 320px;
    margin: 1rem auto;
}

/* Animaciones */
.ps-fadeInUp {
    animation: ps-fadeInUp 0.8s;
}

.ps-fadeInRight {
    animation: ps-fadeInRight 0.8s;
}

@keyframes ps-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes ps-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .ps-h2 {
        font-size: 2rem;
    }

    .ps-service-box {
        padding: 1.5rem 1rem 2rem 1rem;
    }
}

@media (max-width: 767px) {
    .ps-service-box {
        margin-bottom: 1.5rem;
    }

    .ps-w-80px {
        width: 60px;
        height: 60px;
    }
}