/* Reset do documento */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Var de cores */
:root {
    --background: /*#efefef #f1f1f1*/ /*#232427*/ #e6e7e9;
    --link01: #fe9b35;
    --link02: #e91e63;
    --link03: #97dc47;
    --backgroundCard: #11274d /*#2a2b2f*/;
    --borderCard: #1e1f23;
}

/* Body */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /*min-height: 100vh;*/
    background-color: var(--background);
    font-family: 'Gilroy', Sans-serif;
    /* overflow: hidden; */

}

/* Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 50px 0;
}

.container .card {
    position: relative;
    min-width: 200px;
    height: 280px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
        inset -5px -5px 15px rgba(255, 255, 255, 0.1),
        5px 5px 5px rgba(0, 0, 0, 0.3),
        -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 6px;
}

.container .card .box {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    right: 6px;
    background-color: var(--backgroundCard);
    border: 2px solid var(--borderCard);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .card .box:hover {
    transform: translateY(-65px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5);
}

.container .card .box .content {
    padding: 20px;
    text-align: center;
}

.container .card .box .content h2 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 6em;
    font-weight: lighter;
    color: rgba(225, 225, 225, 0.3);
}

.container .card .box .content h3 {
    font-size: 1.8em;
    color: #fe9b35;
    transition: 0.5s;
    z-index: 1;
}

.container .card .box .content p {
    font-size: 20px;
    letter-spacing: 1.5px;
    color: #f1f1f1 /* rgba(255, 255, 255, 0.5)*/;
    margin: 10px 0;
}

.container .card .box .content a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: #000;
    border-radius: 20px;
    font-weight: 400;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.container .card:nth-child(1) .box .content a {
    background-color: var(--link01);
}

.container .card:nth-child(2) .box .content a {
    background-color: var(--link02);
}

.container .card:nth-child(3) .box .content a {
    background-color: var(--link03);
}

.text {

    margin-top: 50px;


}

/* Opicional */

.container .card .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px 0 0 15px;
    pointer-events: none;
}