/* definição de cores   */
:root {
    --primary-color: #EB3C3E;
    --secondary-color: #ec5255;
    --background-color: #f5f5f5;
    --azul: #131531;
    --text-color: #333;

}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

header {
    background-image: url('assets/header-bg.png');
    background-size: cover;
    background-position: top center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    height: 500px;
}

.logo {
    width: 80px;
    margin-bottom: 30px;
    position: fixed;
    top: 10px;
    right: 10px;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    z-index: 1000;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

header p {
    font-size: 1.8rem;
}

.price-tag-img {
    position: absolute;
    top: -15px;
    left: 10px;
    width: 14vw;
    max-width: 2000px;
    min-width: 90px;
    height: auto;
    transform: rotate(-30deg);
}




.benefits {
    padding: 100px 0;
    background-color: #ccc;
    color: var(--text-color);
}

.benefits h2 {

    font-weight: 700;
    margin-bottom: 70px;
}

.benefits h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dot-icon {
    width: 40px;
    height: 40px;
    color:  #a0a0a0;
    margin: 0 5px;
}

.footer-icon {
    width: 30px;
    height: 30px;
    color: #a0a0a0;
    margin-right: 10px;
}



.form-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('assets/form-bg.png');
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}

form {
    background-color: var(--azul);
    padding: 50px;
    border-radius: 15px;
    color: #c9c9c9;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #c9c9c9;
    padding: 15px;
}

.form-texto {
    font-size: 1.5rem;
    font-weight: 400;
    color: #c9c9c9;
}


.btn-danger {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-weight: 700;
}

.btn-danger:hover {
    background-color: var(--secondary-color);
}


.btn-danger-form {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    margin-top: 20px;
    width: 100%;
    color: #ffffff;
}

.btn-danger-form:hover {
    background-color: var(--secondary-color);
}


/* mark */
footer {
    background-color: #222;
    padding: 60px;
    color: #a0a0a0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px;
}

footer h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.iti-logo {
    width: 120px;
}

.serpro-logo {
    width: 50px;
}



.secure-ssl-logo {
    width: 110px;
}

.logos-container {
    margin-top: 40px;
    background-color: #cfcfcf;
    padding: 10px;
    gap: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
}

a {
    color: #a0a0a0;
    text-decoration: none;
}

.certificados-list{
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}   

.rights-reserved {
    text-align: center;
    padding: 20px 0;
    background-color: #111;
    color: #a0a0a0;
    font-size: 0.9rem;
}