/* ===========================
   PORTYS SMARTCARD
   =========================== */

:root{
    --azul:#193D78;
    --verde:#25D366;
    --naranja:#FF6B00;
    --blanco:#FFFFFF;
    --oscuro:#111111;
}

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

body{
    font-family:'Montserrat',sans-serif;
    background:#000;
    color:#fff;
}

.hero{
    position:relative;
    width:100%;
    min-height:100vh;

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

    background-image:url("assets/img/fondo.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.45),
        rgba(0,0,0,.65),
        rgba(0,0,0,.82)
    );
}

.container{

    position:relative;
    z-index:2;

    width:90%;
    max-width:1200px;

    text-align:center;

}

.logo{

    width:340px;
    max-width:80%;
    margin-bottom:40px;
    filter:drop-shadow(0 10px 25px rgba(0,0,0,.45));

}

h1{

    font-size:60px;

    font-weight:800;

    margin-bottom:20px;

}

.descripcion{

    width:80%;

    margin:auto;

    font-size:28px;

    line-height:1.5;

    margin-bottom:70px;

}
/* ===========================
   TARJETAS
=========================== */

.cards{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    width:215px;
    height:215px;

    border-radius:30px;

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

    color:white;
    text-decoration:none;

    backdrop-filter:blur(8px);

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

    transition:.35s;
}

.card:hover{

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

    box-shadow:
    0 25px 45px rgba(0,0,0,.45);

}

.card i{

    font-size:70px;

    margin-bottom:18px;

}

.card h2{

    font-size:18px;

    font-weight:700;

    margin-bottom:5px;

}

.card span{

    font-size:14px;

    opacity:.9;

}

.catalogo{

    background:#1E3F7A;

}

.whatsapp{

    background:#29C357;

}

.llamar{

    background:#FF6A00;

}
@keyframes aparecer{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.container{

animation:aparecer .9s ease;

}