/* DESKTOP.CSS - Apenas para desktop */
:root {
    --laranja: #f47920;
    --prata: #d5d8d2;
    --azul-escuro: #250c77;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--laranja);
    padding-top: 180px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--prata);
    height: 180px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.logo-area {
    position: absolute;
    top: 20px;
    left: 180px;
}

.logo {
    height: auto;
    width: 300px;
}

/* Ícones sociais */
.social-icons {
    position: absolute;
    top: 30px;
    left: 1100px;
    display: flex;
    gap: 22px;
}

.social-icon {
    width: 30px;
    height: 30px;
}

/* Ícone WhatsApp maior */
.social-icons a:first-child img {
    width: 36px;
    height: 36px;

}

/* Menu de navegação - ALINHADO À DIREITA */
.main-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
}

.main-nav ul {
    display: flex;
    justify-content: flex-end; /* Alinha os itens à direita */
    list-style: none;
    gap: 15px;
    padding-right: 215px; /* Espaçamento da borda direita */
    margin: 0;
}
.main-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: #c0c0c0;
}

/* CONTEÚDO PRINCIPAL */
main {
    padding: 20px;
}

.section {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section h2 {
    color: var(--azul-escuro);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.section p {
    font-size: 16px;
    color: #555;
    text-align: justify;
}

/* Grid de valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.valor-card {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.valor-card h3 {
    color: var(--azul-escuro);
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.valor-card p {
    font-size: 15px;
    color: #666;
    text-align: center;
}

/* FOOTER */
footer {
    background-color: #222;
    color: white;
    padding: 30px 15px;
    margin-top: 40px;
    text-align: center;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.footer-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.social-link-item span {
    font-size: 12px;
    color: #ccc;
}

.social-links a {
    text-decoration: none;
    color: inherit;
}

.contact-text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 30px;
}

.copyright {
    font-size: 12px;
    color: #777;
    margin-top: 30px;
}

.credits {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}
