


.page-content {
    padding-top: 0;
}


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


.documents-hero {
    background: linear-gradient(135deg, #2c1810 0%, #3e2723 30%, #5d4037 70%, #8d6e63 100%);
    color: #f5f5dc;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.documents-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(245,245,220,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.documents-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
}

.documents-hero .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.documents-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.documents-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.documents-hero .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}


.documents-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f8f6f3 100%);
    position: relative;
}

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


.document-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(139, 69, 19, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #ff8c00 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.document-card:hover::before {
    transform: scaleX(1);
}

.document-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.1);
}

.document-card:hover .document-content h3 {
    color: #8b4513;
    transition: color 0.3s ease;
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #ff8c00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.25);
    transition: all 0.3s ease;
}

.document-card:hover .document-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.35);
}

.document-card:hover .document-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.document-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.document-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.document-content p {
    color: #5d4e37;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.document-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.document-card:hover .document-meta .document-date,
.document-card:hover .document-meta .document-type {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

.document-date {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0f0f0 100%);
    color: #5d4e37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(139, 69, 19, 0.1);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.05);
}

.document-type {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #2d5a2d;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(45, 90, 45, 0.2);
    box-shadow: 0 2px 8px rgba(45, 90, 45, 0.1);
}

.document-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #ff8c00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a0522d 0%, #ff8c00 50%, #ffa500 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.35);
}

.btn-primary i {
    transition: all 0.3s ease;
}

.btn-primary:hover i {
    transform: scale(1.1);
    animation: eyePulse 0.6s ease-in-out;
}

@keyframes eyePulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    color: #8b4513;
    border: 2px solid #8b4513;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.25);
    border-color: #8b4513;
}


.info-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    padding: 6rem 0;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #ff8c00 100%);
}

.info-content h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #2c1810;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    position: relative;
}

.info-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #ff8c00 100%);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.info-item {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    border: 2px solid rgba(139, 69, 19, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #ff8c00 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-item:hover::before {
    transform: scaleX(1);
}

.info-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.1);
}

.info-item i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
    color: #d2691e;
}

.info-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.info-item p {
    color: #5d4e37;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}


@media (max-width: 768px) {
    .documents-hero {
        padding: 6rem 0 4rem;
        min-height: 70vh;
    }
    
    .documents-hero h1 {
        font-size: 2.8rem;
    }
    
    .documents-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .documents-hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .documents-section {
        padding: 4rem 0;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .document-card {
        padding: 2rem;
    }
    
    .document-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .info-section {
        padding: 4rem 0;
    }
    
    .info-content h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-item {
        padding: 2.5rem 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .documents-hero {
        padding: 5rem 0 3rem;
        min-height: 60vh;
    }
    
    .documents-hero h1 {
        font-size: 2.2rem;
    }
    
    .documents-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .documents-hero .cta-buttons {
        margin-bottom: 2rem;
    }
    
    .documents-section {
        padding: 3rem 0;
    }
    
    .document-card {
        padding: 1.5rem;
    }
    
    .document-content h3 {
        font-size: 1.2rem;
    }
    
    .document-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .info-item {
        padding: 2rem 1rem;
    }
    
    .info-item i {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.document-card:nth-child(1) { transition-delay: 0.1s; }
.document-card:nth-child(2) { transition-delay: 0.2s; }
.document-card:nth-child(3) { transition-delay: 0.3s; }
.document-card:nth-child(4) { transition-delay: 0.4s; }
.document-card:nth-child(5) { transition-delay: 0.5s; }
.document-card:nth-child(6) { transition-delay: 0.6s; }
.document-card:nth-child(7) { transition-delay: 0.7s; }
.document-card:nth-child(8) { transition-delay: 0.8s; }
.document-card:nth-child(9) { transition-delay: 0.9s; }


.info-item:nth-child(1) { transition-delay: 0.2s; }
.info-item:nth-child(2) { transition-delay: 0.4s; }
.info-item:nth-child(3) { transition-delay: 0.6s; }

 