body {
    
    background-color: #0c1014;
    color: white;
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
}

.main-title{
    
    font-size: 62px;
    text-transform: uppercase;
    text-align: center;
    margin: 46px 0;

}

.header {
    
    display: flex;
    background-color:white;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    border-bottom: orange 4px solid;
}


.header {
    display: flex;
    align-items: center;     /* centraliza verticalmente */
    justify-content: space-between; /* espaço entre logo e menu */
    padding: 10px 20px;      /* ajuste conforme quiser */
    background: linear-gradient(135deg, rgba(163, 73, 0, 1) 0%,rgba(111, 47, 0, 1) 50%,rgba(85, 34, 0, 1) 100%);
}

.header__logo img {
    display: block; /* remove espaço extra */
    max-width: 300px; /* tamanho da logo */
    height: auto;
}

.header__nav ul {
    display: flex;
    list-style-type: none;
    font-size: 18px;
    gap: 56px;
    
   
}

.header__nav a {
    color:black;
    text-decoration: none;
    padding: 14px;
    border-radius: 6px;
}

.header__nav a:hover {
    text-decoration: underline;

}

a.header__nav--active {
    background: linear-gradient(135deg, rgba(163, 73, 0, 1) 0%,rgba(111, 47, 0, 1) 50%,rgba(85, 34, 0, 1) 100%);
    color: #0c1014;
    pointer-events: none;
}

.pricing {
    display: flex;
    gap: 20px;

}

.pricing-plan {
    flex: 1;
    background-color: #1f262c;
    padding: 60px;
    border-radius: 6px;
    box-shadow: 0 5px 10px 0 orange;
    display: flex;
    flex-direction: column;

}

.class-plan__title {
    text-transform: uppercase;
    border-bottom: 2px solid orange;
    margin-top: 0;
    padding-bottom: 10px;
    letter-spacing: 2px;
}

.pricing-plan p {
    margin-top: 0;


}

.pricing-plan__price {
    font-size: 34px;
    
}

.pricing-plan__features{
    margin: 0 0 35px;
    color:#b5b5b5;
    padding-left: 16px;
    line-height: 1.8;
    flex-grow: 1;

}

.pricing-plan__features li::marker {

    color: orange;


}

.pricing-plan__cta {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg,rgba(163, 73, 0, 1) 0%,rgba(111, 47, 0, 1) 50%,rgba(85, 34, 0, 1) 100%);
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bolder;
    padding: 16px 10px;
    text-align: center ;

   
}

.pricing-plan__cta:hover {
    outline: 2px solid white;
    background-color: transparent;
    color: white;

}