:root {
    --primary: #135bec;
    --primary-hover: #0f49bd;
    --bg-light: #f6f6f8;
    --bg-white: #ffffff;
    --bg-dark: #101622;
    --text-main: #0f172a;
    /* slate-900 */
    --text-muted: #475569;
    /* slate-600 */
    --text-light: #f1f5f9;
    /* slate-100 */
    --border-color: #e2e8f0;
    /* slate-200 */

    --font-display: 'Lexend', sans-serif;
    --transition: all 0.3s ease;
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.container-sm {
    max-width: 896px;
}

.container-md {
    max-width: 1024px;
}

.center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(19, 91, 236, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background-color: var(--text-main);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-dark:hover {
    background-color: #1e293b;
}

.btn-white {
    background-color: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: #f8fafc;
}

.btn-outline {
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.material-symbols-outlined {
    font-size: 1.5rem;
    line-height: 1;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo,
.logo-white {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .icon {
    color: var(--primary);
    font-size: 1.875rem;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav .btn {
    margin-top: 1rem;
}

@media (min-width: 768px) {

    .desktop-nav,
    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}

main {
    flex-grow: 1;
}

/* Hero Section */
.hero-section {
    padding: 2rem 1rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-card {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background-image: linear-gradient(rgba(16, 22, 34, 0.4), rgba(16, 22, 34, 0.7)), url('./assets/imagens/unr.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #4ade80;
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.highlight {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #93c5fd, white);
}

.hero-content p {
    font-size: 1.125rem;
    color: #e2e8f0;
    font-weight: 300;
    line-height: 1.625;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: auto;
    }

    .hero-buttons .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    margin-left: -0.5rem;
}

.avatars img:first-child {
    margin-left: 0;
}

/* Stats Section */
.stats-section {
    padding: 2.5rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services */
.services-section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.625;
}

.link-forward {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.link-forward:hover {
    gap: 0.75rem;
}

.desktop-only {
    display: none;
}

.mobile-only-link {
    display: inline-flex;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .section-title-wrapper {
        max-width: 42rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .desktop-only {
        display: inline-flex;
    }

    .mobile-only-link {
        display: none;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: rgba(19, 91, 236, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(19, 91, 236, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-text {
    color: var(--text-muted);
    line-height: 1.625;
}

/* About Section */
.about-section {
    background-color: #f8fafc;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid-lg {
        gap: 5rem;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.overlay-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.overlay-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.625;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
}

.check-icon {
    color: #22c55e;
}

.feature-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-detailed-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: center;
    /* alinha verticalmente o ícone/título com o bloco de texto */
}

@media (max-width: 639px) {
    .feature-detailed-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.feature-detailed-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-detailed-desc {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-section .section-header {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    color: #facc15;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars span {
    font-variation-settings: 'FILL' 1;
}

.quote {
    color: #334155;
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
}

.faq-section .section-title {
    margin-bottom: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 700;
    color: inherit;
    text-align: left;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-q-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.text-primary {
    color: var(--primary);
}

.faq-icon {
    background-color: var(--bg-white);
    padding: 0.25rem;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.625;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 4rem;
    max-height: 300px;
    /* arbitrary height for transition */
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    padding: 5rem 0;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-white .icon {
    color: var(--primary);
    font-size: 1.875rem;
}

.logo-white .brand-name {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.625;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

.social-links a.instagram-btn:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-color: transparent;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.125rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot-sm {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #93c5fd;
}

/* FAB WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.2s;
}

.fab-whatsapp svg {
    width: 2rem;
    height: 2rem;
}

.fab-whatsapp:hover {
    background-color: #20b858;
    transform: scale(1.1);
}

/* =========================================
   Utilitários e Helpers (Remoção Inline)
   ========================================= */

/* Nudges de tipografia e links */
.noscript-warning {
    padding: 20px;
    background: #ffebee;
    color: #c62828;
    text-align: center;
    font-family: sans-serif;
    border-bottom: 2px solid #ef5350;
    z-index: 99999;
    position: relative;
}

.nav-link-inherit {
    text-decoration: none;
    color: inherit;
}

.nav-link-primary {
    color: var(--primary) !important;
}

/* Componentes Hero */
.hero-index-bg {
    background-image: linear-gradient(rgba(16, 22, 34, 0.5), rgba(16, 22, 34, 0.75)), url('./assets/imagens/med-hero.jpg');
}

.hero-sobre-bg {
    min-height: 400px;
    background-image: linear-gradient(rgba(16, 22, 34, 0.6), rgba(16, 22, 34, 0.8)), url('./assets/imagens/unr.jpg');
}

.hero-content-center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layouts e Espaçamentos */
.pt-4rem {
    padding-top: 4rem;
}

.pb-2rem {
    padding-bottom: 2rem;
}

.pb-4rem {
    padding-bottom: 4rem;
}

.py-4rem {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.mb-3rem {
    margin-bottom: 3rem;
}

.mb-4rem {
    margin-bottom: 4rem;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-1-5rem {
    margin-bottom: 1.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-width-800 {
    max-width: 800px;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

/* Tipografia Específica */
.font-size-3rem {
    font-size: 3rem;
}

.font-size-1-125rem {
    font-size: 1.125rem;
}

.font-size-1-25rem {
    font-size: 1.25rem;
}

.line-height-1-2 {
    line-height: 1.2;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-600 {
    font-weight: 600;
}

.text-main {
    color: var(--text-main, #333);
}

/* Backgrounds Opcionais */
.bg-alt {
    background-color: var(--color-background-alt, #f8fafc);
}

.bg-white {
    background-color: var(--bg-white, #fff);
}

/* Grids e Elementos */
.grid-gap-1rem {
    gap: 1rem;
}

.grid-gap-2rem {
    gap: 2rem;
}

.grid-auto-fit-300 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.col-full {
    grid-column: 1 / -1;
}

.card-callout {
    padding: 2rem;
    background: var(--bg-white, #fff);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.methodology-callout {
    background-color: var(--color-background-alt, #f8fafc);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 0 1rem 1rem 0;
    align-self: center;
}

/* Utilitários refatorados das sessões anteriores */
.noscript-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ffeeba;
    font-size: 0.9rem;
}

.nav-link-inherit {
    text-decoration: none;
    color: inherit;
}

.nav-link-primary {
    color: var(--primary) !important;
}

.hero-index-bg {
    min-height: 600px;
    background-image: linear-gradient(rgba(16, 22, 34, 0.6), rgba(16, 22, 34, 0.8)), url('./assets/imagens/med-hero.jpg');
}

.hero-sobre-bg {
    min-height: 400px;
    background-image: linear-gradient(rgba(16, 22, 34, 0.6), rgba(16, 22, 34, 0.8)), url('./assets/imagens/unr.jpg');
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-alt {
    background-color: var(--color-background-alt, #f8fafc);
}

.pt-4rem {
    padding-top: 4rem;
}

.pb-2rem {
    padding-bottom: 2rem;
}

.py-4rem {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-3rem {
    margin-bottom: 3rem;
}

.mb-1rem {
    margin-bottom: 1rem;
}

.mb-1-5rem {
    margin-bottom: 1.5rem;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.mb-4rem {
    margin-bottom: 4rem;
}

.max-width-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-main {
    color: var(--text-main);
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-size-1-25rem {
    font-size: 1.25rem;
}

.font-size-1-125rem {
    font-size: 1.125rem;
}

.grid-auto-fit-300 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-gap-2rem {
    gap: 2rem;
}

.card-callout {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Utilitários complementares */
.pt-3rem {
    padding-top: 3rem;
}

.h-450px {
    height: 450px;
}

.flex-col-gap-1rem {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list-single {
    grid-template-columns: 1fr;
}

.text-muted {
    color: var(--text-muted);
}

.line-height-1-6 {
    line-height: 1.6;
}

.line-height-1-7 {
    line-height: 1.7;
}

.text-light {
    color: var(--text-light, #ccc);
}

.font-color-white {
    color: white;
}

.text-success {
    color: #4ade80;
}

.check-icon-danger {
    color: #ef4444;
}

.font-weight-500 {
    font-weight: 500;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Tabela Específica "Sobre a UNR" */
.table-sobre {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white, #fff);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.table-sobre thead {
    background: var(--primary);
    color: white;
    text-align: left;
}

.table-sobre th,
.table-sobre td {
    padding: 1rem 1.5rem;
}

.table-sobre tr {
    border-bottom: 1px solid var(--border-color);
}

.table-sobre tbody {
    color: var(--text-muted);
}

.table-row-alt {
    background: rgba(0, 0, 0, 0.02);
}

/* Card Gradiente Dark */
.card-gradient-dark {
    min-height: fit-content;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    text-align: left;
    align-items: flex-start;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}