:root {
    --blue:       #1a6fc4;
    --blue-light: #3a9bd5;
    --blue-dark:  #0d3d6b;
    --sky:        #e8f4fd;
    --ink:        #1a2433;
    --slate:      #4a5c70;
    --mist:       #f4f8fc;
    --white:      #ffffff;
    --radius:     16px;
    --shadow:     0 8px 32px rgba(13,61,107,.10);
    --shadow-md:  0 16px 48px rgba(13,61,107,.14);
}


/* =====================================================
    ABOUT INFO SECTION (Missão + Visão)
===================================================== */
.about-info-section {
    background: var(--white);
    padding: 96px 24px;
}

.about-info-container {
    display: flex;
    gap: 48px;
    max-width: 1250px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-info-card {
    flex: 1;
    min-width: 300px;
}

.about-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.about-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icon svg {
    width: 26px;
    height: 26px;
    color: var(--blue);
    stroke-width: 2;
}

.about-info-header h3 {
    font-size: 1.9rem;
    color: var(--ink);
    letter-spacing: -.3px;
}

/* Divider line below header */
.about-info-card .divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 3px;
    margin-bottom: 24px;
}

.about-info-description {
    font-size: 1.08rem;
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 16px;
    text-align: left;
}

/* =====================================================
    HIGHLIGHTS / VALORES
===================================================== */
.highlights-section {
    background: var(--mist);
    padding: 96px 24px;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(26,111,196,.06);
    transition: transform .3s, box-shadow .3s;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sky), rgba(58,155,213,.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--blue);
    stroke-width: 2;
}

.highlight-card h3 {
    font-size: 1.45rem;
    color: var(--ink);
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .highlights-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .highlights-container { grid-template-columns: 1fr; }
}

/* =====================================================
    HORIZONTAL INFO (História)
===================================================== */
.horizontal-info-section {
    background: var(--white);
    padding: 96px 24px;
}

.horizontal-container {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1150px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.horizontal-left {
    flex: 1;
    min-width: 300px;
}

.horizontal-left h3 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -.3px;
}

.horizontal-left p {
    font-size: 1.06rem;
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 16px;
    text-align: left;
}

.horizontal-left ul {
    margin: 8px 0 0 24px;
    color: var(--slate);
    font-size: 1.05rem;
    line-height: 1.75;
}

.horizontal-left li {
    margin-bottom: 10px;
}

.horizontal-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.about-photo {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: block;
}

/* Placeholder when no image */
.photo-placeholder {
    width: 100%;
    max-width: 420px;
    height: 340px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--sky) 0%, rgba(58,155,213,.18) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(26,111,196,.2);
}

.photo-placeholder svg {
    width: 56px;
    height: 56px;
    color: var(--blue-light);
    stroke-width: 1.5;
}

.photo-placeholder span {
    font-size: .9rem;
    color: var(--blue-light);
    font-weight: 500;
}

@media (max-width: 820px) {
    .horizontal-container { flex-direction: column; }
    .horizontal-left, .horizontal-right { width: 100%; }
}
