.elementor-1421 .elementor-element.elementor-element-ae1a255{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1421 .elementor-element.elementor-element-967f28b{text-align:start;}.elementor-1421 .elementor-element.elementor-element-967f28b .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:600;-webkit-text-stroke-width:0px;stroke-width:0px;-webkit-text-stroke-color:#000;stroke:#000;text-shadow:-9px 0px 62px rgba(0,0,0,0.3);color:#59441B;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1421 .elementor-element.elementor-element-74ef85f{width:var( --container-widget-width, 101.518% );max-width:101.518%;--container-widget-width:101.518%;--container-widget-flex-grow:0;color:#7A7A7A;}.elementor-1421 .elementor-element.elementor-element-74ef85f.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:1024px){.elementor-1421 .elementor-element.elementor-element-74ef85f{width:var( --container-widget-width, 473.047px );max-width:473.047px;--container-widget-width:473.047px;--container-widget-flex-grow:0;}}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --brand-gold: #917B46; /* Extraído da imagem do calango */
    --brand-dark: #373A3C; /* Extraído do texto "CALANGO" */
    --bg-color: #F4F4F4;
    --card-bg: #FFFFFF;
    --text-main: #555555;
    --text-light: #888888;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    background: var(--card-bg);
    padding: 50px 70px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EAEAEA;
}

.logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 25px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

h2::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 24px;
    background-color: var(--brand-gold);
    margin-right: 12px;
    border-radius: 3px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    margin-bottom: 25px;
    padding-left: 20px;
    background-color: #FAFAFA;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    border-left: 3px solid #EAEAEA;
}

li {
    margin-bottom: 12px;
}

li:last-child {
    margin-bottom: 0;
}

li strong {
    color: var(--brand-dark);
    font-weight: 600;
}

a {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: #7a6638;
    text-decoration: underline;
}

.contact-box {
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(145, 123, 70, 0.05);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(145, 123, 70, 0.2);
}

.contact-box p {
    text-align: center;
    margin: 0;
    font-size: 16px;
    color: var(--brand-dark);
}

.contact-box a {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 10px auto;
    }
    h1 {
        font-size: 24px;
    }

}/* End custom CSS */