/*==================================================
 SYLTRANS PERÚ SAC
 Página en Mantenimiento
 Versión 2.0
==================================================*/

/*==========================
RESET
==========================*/

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

html{
    scroll-behavior:smooth;
}

body{

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

    color:#ffffff;

    background:#041326;

    overflow-x:hidden;

}

/*==========================
BACKGROUND
==========================*/

.background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-100;

}

.background-image{

    position:absolute;

    inset:0;

    background:url("img/background.jpg");

    background-size:cover;

    background-position:center center;

    transform:scale(1.05);

}

/*==========================
OVERLAY
==========================*/

.background-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(4,18,38,.35),

    rgba(4,18,38,.60),

    rgba(4,18,38,.90)

    );

}

/*==========================
LUZ
==========================*/

.background-light{

    position:absolute;

    width:900px;

    height:900px;

    left:50%;

    top:-420px;

    transform:translateX(-50%);

    background:

    radial-gradient(circle,

    rgba(0,153,255,.45),

    transparent 70%);

    filter:blur(70px);

}

/*==========================
PARTÍCULAS
==========================*/

.background-particles{

    position:absolute;

    inset:0;

    background:url("img/particles.png");

    background-size:cover;

    opacity:.28;

    mix-blend-mode:screen;

}

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

.contenedor{

    width:100%;

    max-width:1400px;

    margin:auto;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 40px;

    position:relative;

}

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

.hero{

    width:100%;

    max-width:980px;

    text-align:center;

    padding:60px;

    border-radius:28px;

    background:rgba(6,25,52,.30);

    backdrop-filter:blur(12px);

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

    box-shadow:

    0 20px 70px rgba(0,0,0,.45);

}

/*==========================
LOGO
==========================*/

.logo{

    position:relative;

    display:inline-block;

}

.logo::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:

    radial-gradient(circle,

    rgba(0,170,255,.45),

    transparent 70%);

    filter:blur(35px);

    z-index:-1;

}

.logo img{

    width:240px;

    margin-bottom:35px;

}

/*==========================
TÍTULO
==========================*/

.titulo h1{

    font-size:78px;

    font-weight:800;

    line-height:1.05;

    letter-spacing:-2px;

}

.titulo span{

    display:block;

    margin-top:8px;

    background:linear-gradient(#84E0FF,#1EA6FF);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==========================
DESCRIPCIÓN
==========================*/

.descripcion{

    margin:35px auto;

    max-width:760px;

    font-size:22px;

    line-height:40px;

    color:#E5EEF9;

}

/*==========================
ESTADO
==========================*/

.estado{

    display:inline-block;

    margin-top:15px;

    margin-bottom:40px;

    padding:18px 40px;

    border-radius:50px;

    background:#ffffff;

    color:#0C4484;

    font-size:20px;

    font-weight:700;

    box-shadow:

    0 10px 30px rgba(0,0,0,.35);

}

/*==========================
MENSAJE
==========================*/

.mensaje{

    max-width:760px;

    margin:auto;

    color:#DCE7F7;

    font-size:21px;

    line-height:38px;

}

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

.cards{

    display:flex;

    gap:30px;

    margin-top:70px;

}

.card{

    flex:1;

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

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

    border-radius:18px;

    padding:35px 25px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

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

}

.emoji{

    font-size:48px;

    margin-bottom:18px;

}

.card h3{

    font-size:24px;

    margin-bottom:15px;

}

.card p{

    font-size:16px;

    color:#D6E6F7;

    line-height:30px;

}

/*==========================
CAMIÓN
==========================*/

.truck{

    position:absolute;

    left:-70px;

    bottom:10px;

    width:520px;

    height:320px;

    background:url("img/truck.png");

    background-size:contain;

    background-repeat:no-repeat;

    background-position:left bottom;

    pointer-events:none;

}

/*==========================
BARCO
==========================*/

.ship{

    position:absolute;

    right:-120px;

    bottom:0;

    width:760px;

    height:420px;

    background:url("img/ship.png");

    background-repeat:no-repeat;

    background-size:contain;

    background-position:right bottom;

    pointer-events:none;

}

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

footer{

    text-align:center;

    padding:30px;

    color:#BFD5F1;

    font-size:14px;

    letter-spacing:1px;

}

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

@media(max-width:1200px){

.truck{

display:none;

}

.ship{

display:none;

}

}

@media(max-width:900px){

.hero{

padding:40px 30px;

}

.titulo h1{

font-size:56px;

}

.cards{

flex-direction:column;

}

}

@media(max-width:600px){

.logo img{

width:170px;

}

.titulo h1{

font-size:40px;

}

.descripcion{

font-size:18px;

line-height:32px;

}

.mensaje{

font-size:18px;

line-height:32px;

}

.estado{

font-size:17px;

padding:15px 28px;

}

}