:root {
    /* Colors */
    --primary-color: #046eb4;
    --primary-dark: #024f85;
    --accent-color: #00d2ff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --footer-bg: #0f172a;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(4, 110, 180, 0.95) 0%, rgba(2, 79, 133, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);

    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Floating Header Styles */
#main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

#main-header.scrolled {
    top: 10px;
    width: 95%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 2rem;
    transition: height 0.3s ease;
}

#main-header.scrolled .header-content {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(4, 110, 180, 0.2));
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.search-btn, .mobile-menu-btn {
    border: none;
    background: white;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-btn:hover, .mobile-menu-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 110, 180, 0.25);
}

.portal-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(4, 110, 180, 0.2);
}

.portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 110, 180, 0.35);
}

.portal-btn i {
    font-size: 0.9rem;
}

.portal-btn-text {
    display: none;
}

@media (min-width: 768px) {
    .portal-btn-text {
        display: inline;
    }
}

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
        gap: 0.5rem;
        background-color: rgba(241, 245, 249, 0.5);
        padding: 0.4rem;
        border-radius: 50px;
    }

    .desktop-nav a {
        font-weight: 500;
        color: var(--text-main);
        padding: 0.6rem 1.2rem;
        border-radius: 50px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .desktop-nav a::after {
        display: none;
    }

    .desktop-nav a:hover {
        background-color: rgba(255, 255, 255, 0.8);
        color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .desktop-nav a.active {
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 4px 12px rgba(4, 110, 180, 0.3);
    }
    .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section - Redesigned */
.hero-section {
    position: relative;
    width: calc(100% - 40px); /* Margem lateral */
    max-width: 1400px;
    height: 60vh; /* Altura reduzida */
    min-height: 500px;
    margin: 110px auto 4rem auto; /* Espaço para o header flutuante */
    border-radius: 40px; /* Bordas arredondadas modernas */
    background: linear-gradient(120deg, #0b2e4e 0%, #046eb4 100%); /* Fundo azul profundo */
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(4, 110, 180, 0.15);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reutiliza a imagem como textura sutil */
    background-image: url('../assets/hero_bg.png'); 
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Apenas textura */
    mix-blend-mode: overlay;
    z-index: 1;
}

/* Círculos decorativos de luz */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 0;
    width: 100%;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    max-width: 700px;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4ddbff; /* Ciano claro */
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #4ddbff;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ddbff;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white; /* Texto branco puro para contraste */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85); /* Branco com transparência */
    margin-bottom: 3rem;
    max-width: 550px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: white; /* Botão branco */
    color: var(--primary-color);
    border: none;
    border-radius: 50px; /* Pílula completa */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsividade Específica do Hero */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        padding: 0 2rem;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-carousel-wrapper {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        border-radius: 20px;
        margin-top: 100px;
        height: auto;
        padding: 4rem 0;
        width: calc(100% - 30px);
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
}

/* Hero Carousel Styles */
.hero-carousel-wrapper {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-carousel {
    position: relative;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(20px);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
}

.slide-tag {
    background-color: var(--accent-color);
    color: #0f172a;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-slide h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-slide p {
    color: rgba(255, 255, 255, 0.9) !important; /* Force override hero p style */
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
    max-width: 100%;
}

.slide-btn {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.slide-btn:hover {
    gap: 12px;
    text-decoration: underline;
}

.slide-image {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.slide-image i {
    font-size: 10rem;
    color: white;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background-color: white;
    width: 25px;
    border-radius: 10px;
}


/* Services Section - Redesigned */
.services-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

/* Elemento decorativo de fundo da seção */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 110, 180, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Garante que não tenha sublinhado */
}

/* Decoração sutil no fundo do card */
.service-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(4, 110, 180, 0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(4, 110, 180, 0.12); /* Sombra azulada - Glow */
    border-color: rgba(4, 110, 180, 0.1);
}

.service-card:hover::after {
    transform: scale(1.5);
}

.icon-box {
    width: 50px;
    height: 50px;
    /* Gradiente vibrante */
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(4, 110, 180, 0.2);
    position: relative;
    z-index: 2;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(4, 110, 180, 0.3);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.arrow-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    align-self: flex-end; /* Posiciona no final */
    opacity: 1; /* Sempre visível agora, mas muda no hover */
    transform: none;
    font-size: 0.8rem;
}

.service-card:hover .arrow-link {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Hidden Services (Ver Mais/Menos) */
.hidden-service {
    display: none;
}

.hidden-service.show {
    display: flex;
    animation: fadeInUp 0.5s ease forwards;
}

/* Toggle Services Button */
.toggle-services-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.toggle-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(4, 110, 180, 0.25);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.toggle-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(4, 110, 180, 0.35);
}

.toggle-services-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.toggle-services-btn.expanded i {
    transform: rotate(180deg);
}

/* Highlights Section - Redesigned */
.highlights-section {
    padding: 2rem 0 8rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.highlight-card {
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Specific Card Styles with Rich Gradients */
.highlight-card.calendar {
    /* Deep Slate to Blue */
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.highlight-card.news {
    /* Primary Blue Gradient */
    background: linear-gradient(135deg, var(--primary-color) 0%, #035fa3 100%);
}

.highlight-card.support {
    /* Cyan to Blue Gradient */
    background: linear-gradient(135deg, #00d2ff 0%, #046eb4 100%);
}

.highlight-card::before {
    /* Shine effect top left */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

/* Large Decorative Icon Background */
.highlight-card::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
    pointer-events: none;
    transition: all 0.5s ease;
}

.highlight-card.calendar::after { content: "\f073"; } /* fa-calendar-days */
.highlight-card.news::after { content: "\f1ea"; } /* fa-newspaper */
.highlight-card.support::after { content: "\f4c0"; } /* fa-hand-holding-dollar */

.highlight-card:hover::after {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

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

.highlight-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 300;
}

.highlight-card .link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  text-decoration: none;
}

.highlight-card .link-text i {
    transition: transform 0.3s ease;
}

.highlight-card .link-text:hover {
    background-color: rgba(255, 255, 255, 0.3);
    padding-right: 2rem; /* Expande um pouco no hover */
}

.highlight-card .link-text:hover i {
    transform: translateX(4px);
}


/* About/Commitment Section Redesigned */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Decoration Background */
.about-bg-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(4, 110, 180, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.mission-text {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.commitment-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(4, 110, 180, 0.1);
    transition: all 0.4s ease;
}

.commitment-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(4, 110, 180, 0.3);
}

.commitment-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer Redesigned */
.main-footer {
    background-color: #0b1120; /* Darker navy */
    color: #e2e8f0;
    padding: 6rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

/* Efeito de brilho no topo */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.brand .logo {
    margin-bottom: 1.5rem;
}

.brand .logo i {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, white, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.brand .logo-text .logo-title {
    color: white;
    font-size: 1.5rem;
}

.brand .logo-text .logo-subtitle {
    color: #94a3b8;
}

.brand p {
    color: #94a3b8;
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-col ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: auto; 
    margin-right: 0;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white; /* Garante cor branca no ícone */
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* Elemento decorativo de fundo */
.main-footer::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(4, 110, 180, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Ajustes Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .brand .logo {
        justify-content: center;
    }

    .brand p {
        margin: 1rem auto;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        transform: translateX(0) scale(1.05);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Requerimentos Section */
.requerimentos-section {
    padding: 2rem 0 6rem 0;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.requerimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.req-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #e11d48; /* PDF Red */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.req-item:hover {
    transform: translateY(-4px);
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.req-item:hover::before {
    opacity: 1;
}

.req-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(225, 29, 72, 0.1);
    color: #e11d48;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.req-item:hover .req-icon {
    background-color: #e11d48;
    color: white;
}

.req-title {
    font-weight: 500;
    color: #334155;
    font-size: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.req-item:hover .req-title {
    color: #0f172a;
}

.req-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.req-item:hover .req-action {
    opacity: 1;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(2px); /* Efeito de 'click' visual */
}

/* Ajuste Responsivo para Requerimentos */
@media (max-width: 480px) {
    .requerimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .req-item {
        padding: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
