/* Calendário do Ano - Planejamento Temporal */
/* Tema: Branco, Azul e Vermelho - Design limpo e funcional */
/* Cores: Branco (#FFFFFF), Azul (#0066CC), Vermelho (#CC0000) */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 30%, #FFFFFF 70%, #F0F4F8 100%);
    background-attachment: fixed;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(204, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 3px solid #0066CC;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #CC0000 50%, transparent 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    color: #0066CC;
}

.logo h1 {
    font-size: 1.8rem;
    color: #0066CC;
    margin: 0;
}

.tagline {
    font-size: 0.7rem;
    color: #CC0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background: #0066CC;
    color: #FFFFFF;
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #CC0000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a:focus::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: 2px solid #0066CC;
    padding: 0.5rem;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0066CC;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding-top: 100px; /* Account for fixed header */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    color: #0066CC;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #CC0000;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 102, 204, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #0066CC;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(45deg, #0066CC, #CC0000);
    border-color: #0066CC;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-button.primary:hover,
.cta-button.primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
    outline: 2px solid #CC0000;
    outline-offset: 2px;
}

.cta-button.secondary {
    border-color: #CC0000;
    color: #CC0000;
    background: rgba(204, 0, 0, 0.1);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background: #CC0000;
    color: #FFFFFF;
    transform: translateY(-2px);
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.calendar-preview {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #0066CC;
}

.month-name {
    text-align: center;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 2px;
}

.weekdays span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #CC0000;
    padding: 0.2rem;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.days span {
    text-align: center;
    padding: 0.3rem;
    font-size: 0.8rem;
    color: #333333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.days span:not(.empty):hover {
    background: #0066CC;
    color: #FFFFFF;
    cursor: pointer;
}

.days span.holiday {
    background: #CC0000;
    color: #FFFFFF;
    font-weight: 600;
}

.days span.empty {
    background: transparent;
}

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

/* Quick Nav */
.quick-nav {
    padding: 3rem 0;
    background: #F8F9FA;
}

.quick-nav h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066CC;
    margin-bottom: 2rem;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    color: #0066CC;
    transition: all 0.3s ease;
    border: 2px solid #0066CC;
    text-align: center;
}

.nav-btn:hover,
.nav-btn:focus {
    background: #0066CC;
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    outline: 2px solid #CC0000;
    outline-offset: 2px;
}

.nav-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.nav-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Calendar Section */
.calendar-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.calendar-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #0066CC;
    margin-bottom: 3rem;
}

.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #FFFFFF;
    border: 2px solid #0066CC;
    border-radius: 25px;
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover,
.control-btn:focus {
    background: #0066CC;
    color: #FFFFFF;
    transform: translateY(-2px);
    outline: 2px solid #CC0000;
    outline-offset: 2px;
}

.current-year {
    font-size: 2rem;
    color: #CC0000;
    font-weight: 700;
}

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

/* Holidays Section */
.holidays-section {
    padding: 5rem 0;
    background: #F8F9FA;
}

.holidays-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #CC0000;
    margin-bottom: 3rem;
}

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

.holiday-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #0066CC;
    display: flex;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.holiday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(204, 0, 0, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.holiday-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 102, 204, 0.12),
                0 8px 24px rgba(204, 0, 0, 0.08);
    border-color: #CC0000;
}

.holiday-card:hover::before {
    opacity: 1;
}

.holiday-card.movable {
    border-color: #CC0000;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.06), rgba(0, 102, 204, 0.04));
}

.holiday-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: #0066CC;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
}

.holiday-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.holiday-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.holiday-info {
    flex: 1;
}

.holiday-info h3 {
    color: #0066CC;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.holiday-info p {
    color: #333333;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.holiday-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.holiday-type.national {
    background: #4CAF50;
    color: #FFFFFF;
}

.holiday-type.religious {
    background: #9C27B0;
    color: #FFFFFF;
}

.holiday-type.state {
    background: #FF9800;
    color: #FFFFFF;
}

/* State Holidays Section */
.state-holidays-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.state-holidays-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #0066CC;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.state-selector {
    text-align: center;
    margin-bottom: 3rem;
}

.state-selector select {
    padding: 1rem 2rem;
    border: 2px solid #0066CC;
    border-radius: 25px;
    background: #FFFFFF;
    color: #0066CC;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-selector select:focus {
    outline: none;
    border-color: #CC0000;
    box-shadow: 0 0 8px rgba(204, 0, 0, 0.5);
}

.state-holidays-list {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 2rem;
    min-height: 200px;
}

.select-prompt {
    text-align: center;
    color: #666666;
    font-style: italic;
    margin: 0;
}

/* Moon Section */
.moon-section {
    padding: 5rem 0;
    background: #F8F9FA;
}

.moon-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #0066CC;
    margin-bottom: 1rem;
}

.moon-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.phase-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #0066CC;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #CC0000;
}

.phase-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.phase-card h3 {
    color: #0066CC;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.phase-card p {
    color: #333333;
    line-height: 1.5;
}

.moon-calendar h3 {
    text-align: center;
    color: #CC0000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.moon-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Dates Section */
.dates-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.dates-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #CC0000;
    margin-bottom: 3rem;
}

.dates-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: #FFFFFF;
    border: 2px solid #0066CC;
    border-radius: 25px;
    color: #0066CC;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn:focus,
.category-btn.active {
    background: #0066CC;
    color: #FFFFFF;
    transform: translateY(-2px);
    outline: 2px solid #CC0000;
    outline-offset: 2px;
}

.dates-list {
    display: grid;
    gap: 1.5rem;
}

.date-item {
    display: flex;
    gap: 1.5rem;
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #0066CC;
    transition: all 0.3s ease;
}

.date-item:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: #CC0000;
}

.date-badge {
    background: #CC0000;
    color: #FFFFFF;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-content {
    flex: 1;
}

.date-content h4 {
    color: #0066CC;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.date-content p {
    color: #333333;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.date-category {
    background: #FFD700;
    color: #0066CC;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, #0066CC, #CC0000);
    color: #FFFFFF;
    text-align: center;
}

.download-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.download-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.download-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: block;
}

.download-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.download-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-btn {
    background: #FFD700;
    color: #0066CC;
    border: 2px solid #FFD700;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.download-btn:hover,
.download-btn:focus {
    background: #FFFFFF;
    color: #0066CC;
    transform: translateY(-2px);
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #F8F9FA;
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #0066CC;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: #CC0000;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.8rem;
}

.about-text h4 {
    color: #333333;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #333333;
}

.about-text ul {
    margin: 1rem 0 2rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.8rem;
    color: #333333;
}

.about-text li strong {
    color: #0066CC;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(0, 102, 204, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(0, 102, 204, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #0066CC;
}

.feature-list h4 {
    color: #0066CC;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333333;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Authority Links */
.authority-links {
    padding: 3rem 0;
    background: rgba(0, 102, 204, 0.1);
    text-align: center;
}

.authority-links h3 {
    color: #0066CC;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.authority-link {
    color: #CC0000;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 2px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #FFFFFF;
}

.authority-link:hover,
.authority-link:focus {
    background: #FFD700;
    border-color: #0066CC;
    color: #0066CC;
    transform: translateY(-2px);
    outline: 2px solid #CC0000;
    outline-offset: 2px;
}

/* Footer */
.main-footer {
    background: linear-gradient(45deg, #0066CC, #CC0000);
    border-top: 2px solid #FFD700;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: #FFD700;
}

.footer-logo h3 {
    color: #FFD700;
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo p {
    color: #FFFFFF;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #FFD700;
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.footer-authority a {
    display: block;
    color: #FFD700;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-authority a:hover,
.footer-authority a:focus {
    color: #FFFFFF;
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #F8F9FA;
    border: 2px solid #0066CC;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0066CC, #CC0000);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #CC0000, #0066CC);
}
