:root {
    --primary-color: #0A74DA;
    --secondary-color: #003B71;
    --accent-color: #FDB813;
    --text-color: #343a40;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-color); background-color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* BANNER DE AVISO - CRUCIAL PARA GOOGLE ADS */
.official-warning-banner { background-color: #fff3cd; color: #664d03; text-align: center; padding: 12px 20px; font-size: 14px; border-bottom: 1px solid #ffecb5; }
.official-warning-banner a { color: #664d03; font-weight: bold; text-decoration: underline; }

header { background-color: white; padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo a { text-decoration: none; color: var(--primary-color); font-size: 24px; font-weight: 700; }
nav a { color: var(--text-color); text-decoration: none; margin-left: 25px; font-weight: 500; }

.hero { 
    background: linear-gradient(rgba(0, 59, 113, 0.7), rgba(10, 116, 218, 0.7)), url('../images/hero-background.jpg'); 
    background-size: cover;
    background-position: center;
    color: white; 
    padding: 100px 20px; 
    text-align: center; 
}
.verified-badge-top { background: rgba(255,255,255,0.2); display: inline-block; padding: 5px 15px; border-radius: 20px; font-size: 13px; margin-bottom: 20px; }
.hero h1 { font-size: 42px; margin-bottom: 20px; }
.hero p { font-size: 18px; max-width: 700px; margin: 0 auto 30px; opacity: 0.9; }

.cta-button { background: var(--accent-color); color: var(--secondary-color); padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; }

section { padding: 80px 0; }
h2 { text-align: center; margin-bottom: 50px; font-size: 32px; color: var(--secondary-color); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; border-radius: var(--border-radius); box-shadow: var(--box-shadow); overflow: hidden; border: 1px solid #eee; }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 25px; }
.service-link { color: var(--primary-color); text-decoration: none; font-weight: 700; display: block; margin-top: 15px; }

/* FAQ ACORDEÃO */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-question { background: var(--light-gray); border: none; width: 100%; text-align: left; padding: 20px; font-size: 18px; font-weight: 700; cursor: pointer; margin-bottom: 10px; border-radius: 8px; display: flex; justify-content: space-between; }
.faq-question::after { content: '+'; }
.faq-question.active::after { content: '-'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: white; padding: 0 20px; }
.faq-answer p { padding: 15px 0; }

/* NEWS SECTION */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.news-item { background: #fdfdfd; padding: 20px; border-left: 4px solid var(--primary-color); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.news-date { font-size: 12px; color: #999; display: block; margin-bottom: 5px; }

footer { background: #111; color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 20px; color: var(--primary-color); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #ccc; text-decoration: none; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #666; }

.cookie-banner { position: fixed; bottom: -100px; left: 0; width: 100%; background: #222; color: white; padding: 15px; transition: 0.5s; z-index: 9999; }
.cookie-banner.show { bottom: 0; }
.cookie-content { display: flex; justify-content: center; align-items: center; gap: 20px; }
.cookie-btn { background: var(--accent-color); border: none; padding: 8px 20px; border-radius: 5px; cursor: pointer; font-weight: 700; }
