@font-face {
    font-family: 'Sanchez';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Sanchez-Regular.ttf') format('truetype');
    font-display: swap;
}

:root {
    --primary: #b85c1b;
    --primary-dark: #8f4212;
    --bg: #fff8ee;
    --text: #3f2a1c;
    --muted: #7a5b3d;
    --card: #fffdf8;
    --accent: #f2c96b;
}
body {
    font-family: 'Sanchez', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}
.navbar {
    background: rgba(255,248,238,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(63,42,28,0.08);
}
.navbar-brand {
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    max-height: 40px;
    width: auto;
}
footer {
    background: #4a2612;
    color: #f8ebdc;
    padding: 40px 0;
}
footer .footer-logo {
    max-height: 56px;
    width: auto;
}
.nav-link {
    color: var(--text) !important;
    font-weight: 600;
}
.hero {
    background: linear-gradient(135deg, #fff2dc 0%, #fff8ee 100%);
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #6c2f0e;
}
.hero p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 650px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.hero-highlights {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.hero-highlights > div {
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #f0dcc0;
    min-width: 120px;
}
.hero-highlights strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
}
.hero-highlights span {
    color: var(--muted);
    font-size: 0.9rem;
}
.hero-image {
    width: 100%;
    max-width: 480px;
    display: block;
    margin-left: auto;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.card-soft {
    background: var(--card);
    border: 1px solid #f0dcc0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(63,42,28,0.06);
}
.section {
    padding: 70px 0;
}
.section-alt {
    background: #ffffff;
}
.section-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #6c2f0e;
}
.section-title span {
    color: var(--primary);
}
.section-subtitle {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}
.service-card {
    padding: 24px;
    height: 100%;
}
.service-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.news-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.news-card .card-body {
    padding: 20px;
}
.news-card a {
    color: var(--text);
    text-decoration: none;
}
.news-card a:hover {
    color: var(--primary);
}
.agenda-item {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid #f7ebd9;
}
.agenda-item:last-child {
    border-bottom: 0;
}
.agenda-item i {
    color: var(--primary);
    margin-top: 3px;
}
.badge-soft {
    display: inline-block;
    background: #f8e0b9;
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 16px;
}
footer {
    background: #4a2612;
    color: #f8ebdc;
    padding: 40px 0;
}
footer a {
    color: #fff;
}

footer .footer-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(1.2) saturate(1.1);
}

footer .footer-logo-dark {
    filter: brightness(0) invert(1) sepia(0.2) saturate(2) hue-rotate(10deg);
}
