/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary: #4a5568;
    --primary-dark: #2d3748;
    --accent: #E85820;
    --accent-light: #f06a35;
    --green: #27AE60;
    --light-bg: #F4F7FB;
    --text: #333333;
    --text-muted: #666;
    --white: #ffffff;
    --border: #e0e7ef;
    --shadow: 0 4px 24px rgba(74,85,104,0.10);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

/* ===== TOP BAR ===== */
.topbar {
    background: var(--accent);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 6px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--white); }
.topbar i { margin-right: 4px; }

/* ===== NAVBAR ===== */
.main-navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand-area {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.brand-text .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.brand-text .brand-tagline {
    font-size: 0.72rem;
    color: var(--accent);
    font-style: italic;
    display: block;
    margin-top: 2px;
}

.main-navbar .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text) !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1.1rem 0.9rem !important;
    transition: color 0.2s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--accent) !important; }

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 210px;
}

.main-navbar .dropdown-item {
    font-size: 0.85rem;
    padding: 8px 20px;
    color: var(--text);
    transition: background 0.15s, color 0.15s;
}

.main-navbar .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.btn-doador {
    background: var(--accent);
    color: white !important;
    border-radius: 25px;
    padding: 0.45rem 1.2rem !important;
    font-size: 0.8rem !important;
    margin-left: 8px;
    transition: background 0.2s, transform 0.1s;
}

.btn-doador:hover {
    background: var(--accent-light) !important;
    color: white !important;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(120deg, #1a5c2a 0%, #2e8c45 55%, #3daa5c 100%);
    color: white;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 span { color: var(--accent); }

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-img-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-img-wrap img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 380px;
    object-fit: cover;
    width: 100%;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
}

.stat-number .plus { color: var(--accent); }

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }

.section-header { margin-bottom: 50px; }

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.section-divider.left { margin: 0 0 16px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }

.about-img-wrap { position: relative; }

.about-img-wrap img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(232,88,32,0.4);
}

.about-img-badge .badge-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
}

.about-img-badge .badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-list { list-style: none; padding: 0; margin: 0 0 24px; }

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.about-list li i {
    color: var(--green);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ===== DONATION CTA ===== */
.donation-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #c0401a 100%);
    color: white;
    padding: 70px 0;
}

.donation-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.donation-cta p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 0; }

.donation-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 12px 20px;
    margin-top: 16px;
}

.donation-amount .currency {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.8;
}

.donation-amount .value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
}

.donation-amount .period {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== CARDS ===== */
.card-feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.card-feature:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.card-feature .icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: background 0.2s;
}

.card-feature:hover .icon-wrap { background: var(--primary); color: white; }

.card-feature h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #4a5568;
}

.card-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== RESULTS / APPROVALS ===== */
.result-card {
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: border-color 0.2s;
}

.result-card:hover { border-left-color: var(--accent); }

.result-card .student-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #c0614a;
    margin-bottom: 4px;
}

.result-card .university {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.result-card .badge-univ {
    background: var(--light-bg);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    float: right;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 2px;
}

.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ===== PARTNERS ===== */
.partners-section { background: var(--light-bg); }

.partner-logo {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 90px;
    transition: box-shadow 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.partner-logo:hover { box-shadow: var(--shadow); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 60px 0 50px;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header .breadcrumb { background: none; padding: 0; margin: 0; }

.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== PROCESS STEPS ===== */
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: var(--border);
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: #2e8c45;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: #1a5c2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,140,69,0.35);
}

.btn-accent-custom {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-accent-custom:hover {
    background: var(--accent-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,88,32,0.35);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    padding: 10px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary);
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(120deg, #1a5c2a 0%, #2e8c45 55%, #3daa5c 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-brand { margin-bottom: 0; }

.footer-logo-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-top: -12px;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.85rem;
    margin-right: 8px;
    transition: background 0.2s;
}

.footer-social a:hover { background: var(--accent); }

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-bottom {
    background: var(--accent);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    border-top: 4px solid var(--primary);
}

.info-card.accent-top { border-top-color: var(--accent); }
.info-card.green-top { border-top-color: var(--green); }

.info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 12px;
}

/* ===== ALERT / NOTICE BOXES ===== */
.notice-box {
    background: rgba(74,85,104,0.08);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.notice-box.warning {
    background: rgba(232,88,32,0.08);
    border-left-color: var(--accent);
}

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 30px; }

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item { position: relative; margin-bottom: 32px; }

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.timeline-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== TABLE STYLES ===== */
.table-vencer thead th {
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
}

.table-vencer tbody tr:hover { background: var(--light-bg); }

/* ===== PROCESS SELETIVO ===== */
.seletivo-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
}

.seletivo-highlight h3 { font-weight: 800; margin-bottom: 12px; }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: block;
    width: 64px;
    height: 64px;
    animation: zap-pulse 2s infinite;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(37,211,102,0.5));
    transition: transform 0.2s;
}

.whatsapp-float:hover img {
    transform: scale(1.12);
    filter: drop-shadow(0 6px 18px rgba(37,211,102,0.7));
}

@keyframes zap-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
    }
}

/* ===== DEPOIMENTOS COMPLETOS ===== */
.depoimento-bloco { padding: 10px 0; }

.depoimento-frase {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    color: #4a5568;
    line-height: 1.55;
    border: none;
    padding: 0;
    margin: 0 0 20px;
    quotes: none;
}

.depoimento-autor { border-left: 4px solid var(--accent); padding-left: 18px; }

.depoimento-nome {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.depoimento-detalhes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.depoimento-detalhes li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.depoimento-detalhes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.depoimento-foto-wrap { text-align: center; }

.depoimento-foto {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(74,85,104,0.18);
    object-fit: cover;
}

.depoimento-frase--md {
    font-size: 0.83rem;
    font-weight: 500;
    line-height: 1.65;
}

.depoimento-divisor {
    border: none;
    border-top: 2px solid var(--border);
    margin: 20px 0 50px;
}

.depoimento-leia-mais {
    display: inline-block;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.depoimento-leia-mais:hover { color: #4a5568; }

.depoimento-card-h {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.depoimento-card-texto { flex: 1; }

.depoimento-card-foto { flex-shrink: 0; }

.depoimento-card-foto img {
    width: 110px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(74,85,104,0.18);
}

/* ===== NOVIDADES ===== */
.novidades-section { background: #fff6f2; }

.novidade-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.novidade-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.novidade-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.novidade-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.novidade-card:hover .novidade-img-wrap img { transform: scale(1.05); }

.novidade-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.novidade-body h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.35;
}

.novidade-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 14px;
}

.novidade-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.novidade-link:hover { color: var(--primary); }

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 991px) {
    .hero { min-height: 400px; padding: 60px 0; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 14px; }
    .stat-item:last-child { border-bottom: none; }
    .about-img-badge { right: 0; bottom: -10px; }
    section { padding: 60px 0; }

    .main-navbar .container { position: relative; }
    .main-navbar .navbar-toggler {
        position: absolute;
        top: 10px;
        right: 12px;
    }
}

@media (max-width: 767px) {
    .hero-img-wrap { display: none; }
    .topbar .topbar-right { display: none; }
    .main-navbar .btn-doador { display: none; }
    section { padding: 50px 0; }
}
