:root {
        --minga-green: #31941F;     
        --minga-gold: #D4AF37;      
        --text-dark: #1a1a1a;       
        --bg-hover: #f8f9fa;        
        --border-light: #e0e0e0;  
    }

.patip-wrapper {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; 
    background-color: #fff;
    padding-bottom: 80px;
}

.main-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}
.main-header::after {
    content: '';
    display: block;
    width: 80px; /* Línea más ancha */
    height: 4px; /* Línea más gruesa */
    background: var(--minga-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}
.main-header h2 {
    color: var(--text-dark);
    font-weight: 800; /* Letra más gruesa */
    text-transform: uppercase;
    font-size: 28px; /* Título más grande */
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.main-header span {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.component-block {
    margin-bottom: 60px; 
}

.comp-header {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-light); 
    padding-bottom: 15px;
}

.comp-label {
    display: block;
    font-size: 14px;       
    font-weight: 900;      
    color: var(--minga-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.comp-title {
    font-size: 24px;       
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* LISTA DE ENLACES */
.official-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.official-item {
    border-bottom: 1px solid var(--border-light);
}
.official-item:last-child { border-bottom: none; }

.official-link {
    display: flex;
    align-items: center;
    padding: 22px 10px;   
    text-decoration: none;
    color: #444;
    transition: all 0.2s ease;
    border-radius: 4px;   
}

.official-link:hover {
    background-color: var(--bg-hover);
    color: var(--minga-green);
    text-decoration: none;
    padding-left: 20px;    
}


.icon-wrapper {
    width: 50px;           
    font-size: 22px;      
    color: #888;
    text-align: center;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.official-link:hover .icon-wrapper {
    color: var(--minga-green);
}

.text-wrapper {
    font-size: 16px;      
    font-weight: 600;      
}

/* VISOR PDF */
.pdf-box {
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 60px;
    border-radius: 4px;    
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}
.pdf-top {
    background: #f4f4f4;
    color: #333;
    padding: 15px 25px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdf-top span {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
.btn-down {
    background: var(--minga-green); 
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-down:hover {
    background: #246e43;
    color: #fff;
}
@media (max-width: 768px) {
    .patip-wrapper { padding-bottom: 40px; }
    
    .main-header h2 {
        font-size: 20px; 
    }
    
    .comp-title {
        font-size: 18px; 
    }
    
    .official-link {
        padding: 15px 10px;
    }
    .text-wrapper {
        font-size: 14px;
        line-height: 1.3;
    }
    .icon-wrapper {
        width: 40px;
        font-size: 18px;
        margin-right: 10px;
    }

    .pdf-box object {
        height: 500px;
    }
}