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

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #000000;
    overflow-x: hidden;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #000;
    color: #fff;
    padding: 100px 20px 120px;
    text-align: center;
    position: relative;
}

.gradient-text{
    background: #6cdee6;
    background: linear-gradient(90deg, rgba(108, 222, 230, 1) 20%, rgb(11, 31, 122) 68%, rgba(0, 212, 255, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.5em;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
}
 .subtitle{
    font-size: 1.5em;
    margin-bottom: 50px;
    color: #999;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
 }

.hero-button{
    cursor: pointer;
    display: inline-block;
    background: linear-gradient(90deg, rgb(133, 245, 253) , rgb(93, 122, 250) );
    color: #000;
    padding: 20px 60px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.hero-button:hover{
    transform: scale(1.1);
    box-shadow: 0 0 40px rgb(68, 89, 211);
}

.benefits h2{
    grid-column: 1 / -1;
}

.benefits{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    background-color: #000;
    padding: 120px 20px;
    position: relative;
}

.section-title{
    text-align: center;
    font-size: 3em;
    margin-bottom: 80px;
    background: linear-gradient(100deg, rgb(8, 19, 85), rgb(25, 44, 131) , rgb(189, 28, 28) );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.benefit-card{
    background: linear-gradient(145deg, rgb(37, 37, 37) , rgb(27, 27, 27) );
    border: 1px solid #222;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    color: white;
}

.benefit-card::before{
    content: ''; /*sempre quando usar o before e o after colocar o content: '';(o conteudo mesmo que for deixar vazio)*/
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(100deg, rgb(8, 19, 85), rgb(25, 44, 131) , rgb(189, 28, 28) );
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: 0.9s ease;
}

.benefit-card:hover::before{
    opacity: 1;
}

.benefit-card:hover{
    transform: translateY(-5px);
    background: #111;
    cursor: pointer;
}

.benefit-number{
    font-size: 5em;
    font-weight: 900;
    background: linear-gradient(90deg, rgb(23, 187, 199) , rgb(93, 122, 250) );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.benefit-card:hover .benefit-number{
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: rgb(245, 70, 70);
}

.benefit-card:hover h3 {
    color: rgb(233, 125, 125);
    line-height: 1.8;
    font-size: 1.1em;

}

.benefit-card:hover p{
    color: #76a4b6;
}

.features{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: #111;
    padding: 120px 20px;
    text-align: center;
    border-radius: 10px;
}

.features h2{
    width: 100%;
    margin-bottom: 50px;
}

.pill{
   color: white; 
   background-color: #000;
   border: 2px solid #222;
   border-radius: 50px;
   font-weight: 600;
   padding: 15px 30px;
   transition: 0.5s;
   cursor: pointer;
}

.pill:hover{
    border-color: #414dc2;
    background: linear-gradient(100deg, rgb(71, 89, 194), rgb(82, 106, 211) , rgb(252, 68, 68) );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.cta-section{
    background: #111;
    border: 2px solid #222;
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 120px auto;
    background-color: #07081a;
}

.cta-section h2{
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(100deg, rgb(8, 19, 85), rgb(25, 44, 131) , rgb(189, 28, 28) );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p{
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #45696b;
}

footer{
    background-color: #242424;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid#444242;
}