:root {
    --green: #228d3b;
    --dark-green: #19692a;
    --light-green: #e6f4ea;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-radius: 5px;
    --transition-duration: 0.3s;
    --font-family: Arial, sans-serif;
    --white: #ffffff;
    --black: #000000;
    --border-light: #e0e0e0;
    --destaque-color: #0bb1af;
    --surface: var(--light-gray, #f8f9fa);
    --radius-lg: 16px;
    --shadow-sm: 0 6px 16px rgba(0, 0, 0, .08);
}

html,
section {
    font-family: "Poppins", sans-serif !important;
}

.titulo h2 {
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 600;
    text-align: start;
}

.titulo p {
    font-size: 18px;
}




/* Header */
header {
    background-color: var(--light-gray);
    padding-bottom: 20px;
    text-align: center;
    font-family: var(--font-family);
    border-bottom: 2px solid var(--border-light);
}

/* Header section */
.header {
    padding-top: 20px;
}

.header button {
    background-color: var(--green);
    color: var(--white);
    border: none;
    border-radius: 35px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    font-weight: bold;
    transition: background-color var(--transition-duration), color var(--transition-duration);
}

.cta button {
    background-color: var(--white);
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 35px;
    padding: 5px 20px;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    font-weight: bold;
    transition: background-color var(--transition-duration), color var(--transition-duration);
}

.botao_header{
    display: flex;
    justify-content: end;
}

@media (max-width: 768px) {
    .botao_header{
        justify-content: center;
        margin-top: 15px;
    }
}

.cta button:hover {
    background-color: var(--green);
    color: var(--white);
    border: 1px solid var(--white);
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    padding: 4px;
}

.cta p {
    margin-right: 15px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
    color: var(--white);
}


/** Footer */

.footer {
    background: var(--dark-gray);
    color: var(--light-gray);
    font-family: "Poppins", sans-serif;
}

.footer h5 {
    font-size: 18px;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-link:hover {
    color: var(--destaque-color);
}

.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--destaque-color);
    color: #fff;
    font-size: 18px;
    transition: transform .2s ease, background .2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--green);
}

@media (max-width: 1200px) {
        #destaque_azul {
        line-height: 60px;
    }
}


