/* ============================================
   sobre.css — Página Sobre Nós
   Importa estilos base + estilos próprios
   ============================================ */
@import url('base.css');


.container p{
    text-align: justify;
    
}

.container .valores-grid p{
    font-size: 14px;
    text-align: justify;
    line-height: 1.7;
    text-align: justify;
    word-spacing: -1px;
    hyphens: ;
    word-break: break-word;
    
}

.menu a {
  color: #00b4ff;
  text-decoration: none;
  margin: 0px 15px;
  font-size: 15px;
  transition: 0.3s;
  font-family: var(--font-family);
  font-weight: 500;
}

/* ─── APRESENTAÇÃO ─── */
.sobre-section {
    background: #e8e9e9;
    padding: 70px 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: -250px;
}

.sobre-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.sobre-texto h2 {
    font-size: 28px;
    color: #1E3A8A;
    margin-bottom: 16px;
    font-weight: 700;
}

.sobre-texto p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
}

.sobre-texto a {
    display: inline-block;
    margin-top: 10px;
    background: #00b4ff;
    color: white;
    padding: 11px 22px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.sobre-texto a:hover { background: #0095d4; }

/* ─── ENFOQUE (grid de 4 cards) ─── */
.enfoque-section {
    background: white;
    padding: 70px 0;
}

.enfoque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ─── MVV ─── */
.mvv-section {
    background: white;
    padding: 70px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.mvv-card {
    background: #e8e9e9;
    padding: 30px 26px;
    border-radius: 10px;
    border-top: 4px solid #00b4ff;
    transition: 0.3s;
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mvv-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #00b4ff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ─── VALORES ─── */
.valores-section {
    background: #e8e9e9;
    padding: 70px 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.valor-card {
    background: white;
    padding: 22px 18px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-left: 4px solid #00b4ff;
    transition: 0.3s;
}

.valor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.valor-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.valor-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 1024px) {
    .sobre-grid { grid-template-columns: 1fr; }
    .enfoque-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: 1fr; }
    .valores-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 26px; }
    .valores-grid { grid-template-columns: 1fr; }
    .enfoque-grid { grid-template-columns: 1fr; }
}

/* ── 1280px ── */
@media (max-width: 1280px) {
    .sobre-texto h2 { font-size: 25px; }
    .enfoque-grid { grid-template-columns: repeat(4, 1fr); }
    .valores-grid { grid-template-columns: repeat(4, 1fr); }
}
 
/* ── 1024px ── */
@media (max-width: 1024px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
    .enfoque-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: 1fr 1fr; }
    .valores-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-texto h2 { font-size: 24px; }
}
 
/* ── 768px ── */
@media (max-width: 768px) {
    .sobre-section { padding: 50px 0; }
    .sobre-grid { gap: 24px; }
    .sobre-texto h2 { font-size: 22px; }
    .enfoque-section { padding: 50px 0; }
    .enfoque-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .mvv-section { padding: 50px 0; }
    .mvv-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .valores-section { padding: 50px 0; }
    .valores-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
}
 
/* ── 600px ── */
@media (max-width: 600px) {
    .enfoque-grid { grid-template-columns: 1fr; }
    .valores-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-texto h2 { font-size: 20px; }
}
 
/* ── 480px ── */
@media (max-width: 480px) {
    .sobre-section { padding: 40px 0; }
    .sobre-texto h2 { font-size: 18px; }
    .sobre-texto p { font-size: 13px; }
    .mvv-card { padding: 20px 16px; }
    .valores-grid { grid-template-columns: 1fr; }
    .valor-card { padding: 18px 15px; }
    .enfoque-section { padding: 36px 0; }
    .mvv-section { padding: 36px 0; }
    .valores-section { padding: 36px 0; }
}
 
/* ── 360px ── */
@media (max-width: 360px) {
    .sobre-texto h2 { font-size: 16px; }
    .mvv-card h3 { font-size: 13px; }
}