/* ============================= */
/* RESET E BASE                 */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
}

/* ============================= */
/* HERO SECTION - COR SÓLIDA     */
/* ============================= */
.hero {
    background-color: #0056b3; /* azul sólido */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff; /* texto branco */
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #003366; /* botão mais escuro */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.hero .btn:hover {
    background-color: #001f4d; /* escurece ao passar o mouse */
}

/* ============================= */
/* NAVIGATION                   */
/* ============================= */
nav {
    background: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #0056b3;
    font-weight: bold;
}

nav a:hover {
    color: #003366;
}

/* ============================= */
/* BLOCO ÁREAS DESTAQUE          */
/* ============================= */
.areas-destaque {
    padding: 60px 20px;
    background-color: #e9f0f8;
    text-align: center;
}

.areas-destaque .titulo-destaque {
    font-size: 1.8rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid-areas-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}

.item-area {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.item-area:hover {
    transform: translateY(-5px);
}

.item-area img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
}

.item-area h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0056b3;
}

.item-area p {
    font-size: 0.95rem;
}

/* ============================= */
/* CARDS POR QUE ESCOLHER        */
/* ============================= */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 10px;
    color: #0056b3;
}

.card p {
    font-size: 0.95rem;
}

/* ============================= */
/* ÁREAS DE ATUAÇÃO             */
/* ============================= */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.area {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.area img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.area h3 {
    margin-bottom: 8px;
    color: #0056b3;
}

.area p {
    font-size: 0.9rem;
}

/* ============================= */
/* SOBRE HOME                   */
/* ============================= */
.sobre-home {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sobre-home img.foto-sobre {
    max-width: 250px;
    width: 100%;
    border-radius: 10px;
}

.sobre-home div {
    max-width: 700px;
}

.sobre-home h2 {
    margin-bottom: 15px;
    color: #0056b3;
}

.sobre-home p {
    margin-bottom: 15px;
}

.sobre-home .btn {
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
}

/* ============================= */
/* BOTÃO VER TODAS ÁREAS         */
/* ============================= */
.btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn:hover {
    background: #003366;
}

/* ============================= */
/* FOOTER                        */
/* ============================= */
footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

/* ============================= */
/* RESPONSIVO                     */
/* ============================= */
@media(max-width:768px){
    .sobre-home {
        flex-direction: column;
    }
    .sobre-home img.foto-sobre {
        max-width: 100%;
    }
}
