* {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  }
  
html { 
    font-size: 62.5%;
  }
  
body {
    box-sizing: border-box;
    font-family: 'Montserrat';
  }

.header {
    background: #1a1634;
}

.logo {
    width: 25rem;
    margin: 4rem;
}

.triger {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45rem;
}

.background img {
    max-width: 100%;
}

.title {
    border-radius: 1rem;
    padding: 3.4rem 0;
    width: 72rem;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    color: #ff6a00;
    font-size: 5rem;
}

.data-plans {
    padding: 12rem 0 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 4.2rem;
    color: #1a1634;
}

.cards {
    margin-top: 8rem;
    display: flex;
    flex-direction: row;
    gap: 10rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    width: 20rem;
    border: 0.1rem solid #ff6a00;
    border-radius: 3rem;
}

.plan-title {
    color: #ff6a00;
    font-size: 5rem;
}

.days-amount {
    font-size: 2rem;
    margin: 2.5rem 0;
    font-family: 'Montserrat Light';
}

.price {
    font-size: 2.4rem;
    font-family: 'Montserrat Light';
}

.card button {
    border: none;
    font-family: 'Montserrat';
    background: #ff6a00;
    color: #ffffff;
    font-size: 1.6rem;
    padding: 1.2rem 1.6rem;
    border-radius: 0.8rem;
    margin-top: 3.5rem;
    cursor: pointer;
}

.card button:hover {
    background-color: #e55f00;
}

.benefits {
    background: #f1f1f1;
    padding: 10rem 0 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-list {
    margin-top: 8rem;
    display: flex;
    flex-direction: row;
    gap: 11rem;
}
.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit img {
    margin-bottom: 8rem;
    width: 18rem;
}

.description {
    font-size: 2.2rem;
    font-family: 'Montserrat Light';
    text-align: center;
    line-height: 3rem;
}

footer {
    height: 5rem;
    background: #1a1634;
}

@media (max-width: 800px) {
    .logo {
        width: 15rem;
        margin: 2rem;
    }

    .background {
        height: 35rem;
    }

    .background img {
        max-width: 100rem;
    }

    .title {
        border-radius: 0.6rem;
        padding: 3rem 0;
        width: 36rem;
    }
    
    h1 {
        font-size: 3rem;
    }

    .data-plans {
        padding: 8rem 0 8rem;
        flex-direction: column;
    }
    
    h2 {
        font-size: 2.6rem;
    }
    
    .cards {
        margin-top: 4.8rem;
        display: flex;
        flex-direction: column;
        gap: 4.2rem;
    }
    
    .card {
        padding: 2rem 0;
        width: 20rem;
        border-radius: 3rem;
    }
    
    .plan-title {
        font-size: 4.6rem;
    }
    
    .card button {
        font-size: 1.6rem;
        padding: 1.2rem 1.6rem;
        border-radius: 0.8rem;
        margin-top: 3.5rem;
    }

    .benefits {
        padding: 8rem 0 10rem;
    }
    
    .benefits-list {
        margin-top: 8rem;
        flex-direction: column;
        gap: 8rem;
    }
    
    .benefit img {
        margin-bottom: 4.6rem;
        width: 16rem;
    }
    
    .description {
        font-size: 2rem;
    }
    
}