
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    font-size: 14px; 
    background: #f5f5f5;
    color: #333;
}

header {
    position: relative;
    background: #f5f5f5;
    color: #f5f5f5;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
    font-family: 'Montserrat';
    z-index: 1;
}

header img {
    position: absolute;
    left: 50px; 
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px; 
    border-radius: 50%;

}

nav {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 8px 15px;
    background: #2c3e50;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center; 
    gap: 15px;
    margin: 0 410px;
    padding: 0;
}

nav ul li {
    background: #000;
    border: 2px solid #c1ddfa;
    border-radius: 8px;
    padding: 3px 12px;
    box-shadow: 0 3px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

nav ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 8px rgba(0,0,0,0.2);
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

nav .search-form {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    margin-left: -280px; 
}

nav .search-form input[type="text"] {
    padding: 4px 8px;
    border-radius: 4px;
    border: none;
    width: 150px;
    font-size: 0.9rem;
}

nav .search-form button {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
    font-size: 0.9rem;
}
main {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 13px;
    font-family: 'Georgia', serif;
}

.main-title {
    font-size: 2.1em;
    font-weight: bold;
    color: #5e8ef7;
    margin-bottom: 0px;
}

.subtitle {
    font-size: 1.7em;
    font-weight: 600;
    color: #5e8ef7;
    margin: 15px 0 8px;
}

.titulo-destaque {
    font-size: 1.3em; 
    font-weight: bold;
    color: #000000;
}
.minimalista {
    font-weight: bold;   
    font-size: 1.2rem;      
    color: #333;        
    margin-bottom: 15px;    
}

main p, main li {
    font-size: 1.2em;
    line-height: 1.4;
    color: #333;
    margin-top: 0px;
    margin-bottom: 5px;
}

main li {
    margin-bottom: 0px;
    font-size: 1.1em;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.card {
    flex: 1 1 calc(26% - 30px);
    min-width: 200px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 2px solid #2c3e50;  
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card img {
    width: 55%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fd0000;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.95rem;
    text-align: center;
}

.card.saiba-mais {
    background: #cee0ee;
    border: 2px solid #2c3e50;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    height: 230px;
    flex: 1 1 calc(23% - 20px);
    padding: 12px;
}

.card.saiba-mais:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.card.saiba-mais h3 {
    color: #fd0000;
    font-size: 1.2rem;
}

.card.saiba-mais p {
    font-weight: bold;
}

.card.saiba-mais .btn-community {
    width: 100%;
    padding: 6px;
    margin-top: 10px;
}

.btn-community {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-community:hover {
    background: #000;
}

aside {
    margin-top: 20px;
    padding: 12px;
    border-radius: 10px;
}

aside ul li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 8px;
}

aside ul li a {
    text-decoration: none;
    color: #5e8ef7;
    font-weight: 600;
}

aside ul li a:hover {
    color: #ff0000;
}

footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 16px;
}

footer a {
    color: #e74c3c;
    text-decoration: none;
}

.link-contato:hover {
    background: #d35400;
}

.social-links a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
    font-size: 16px;
}

.social-links a:hover {
    color: #ff0000;
}

.social-links i {
    margin-right: 6px;
}

.location {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
}

.map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}